Compare commits

...

2 Commits

Author SHA1 Message Date
4df0f39834 first commit 2026-06-20 14:35:58 -03:00
67ca651561 first commit 2026-06-20 14:22:37 -03:00
7 changed files with 48 additions and 12 deletions

16
.idea/agent_platform_oci.iml generated Normal file
View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="TemplatesService">
<option name="TEMPLATE_FOLDERS">
<list>
<option value="$MODULE_DIR$/templates" />
</list>
</option>
</component>
</module>

7
.idea/codeStyles/Project.xml generated Normal file
View File

@@ -0,0 +1,7 @@
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<ScalaCodeStyleSettings>
<option name="MULTILINE_STRING_CLOSING_QUOTES_ON_NEW_LINE" value="true" />
</ScalaCodeStyleSettings>
</code_scheme>
</component>

5
.idea/codeStyles/codeStyleConfig.xml generated Normal file
View File

@@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

8
.idea/modules.xml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/agent_platform_oci.iml" filepath="$PROJECT_DIR$/.idea/agent_platform_oci.iml" />
</modules>
</component>
</project>

View File

@@ -7881,8 +7881,8 @@ Dentro de `agent_template_backend`:
```bash ```bash
source .venv/bin/activate source .venv/bin/activate
cd agent_template_backend cd templates/agent_template_backend
pip install -e ../agent_framework pip install -e ../../libs/agent_framework
pip install -r requirements.txt pip install -r requirements.txt
python -m uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload python -m uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
``` ```
@@ -7949,7 +7949,7 @@ Se os MCP Servers forem processos Python separados, suba cada um em uma porta di
Exemplo: Exemplo:
```bash ```bash
cd ../mcp_servers/financeiro_mcp_server cd mcp/servers/financeiro_mcp_server
source .venv/bin/activate source .venv/bin/activate
python -m uvicorn main:app --host 0.0.0.0 --port 8300 --reload python -m uvicorn main:app --host 0.0.0.0 --port 8300 --reload
``` ```
@@ -7998,7 +7998,7 @@ Install before the [npm](https://nodejs.org/) and:
```bash ```bash
cd agent_platform_oci cd agent_platform_oci
cd agent_frontend cd apps/agent_frontend
python -m http.server 5173 python -m http.server 5173
``` ```

View File

@@ -7787,8 +7787,8 @@ Inside `agent_template_backend`:
```bash ```bash
source .venv/bin/activate source .venv/bin/activate
cd agent_template_backend cd templates/agent_template_backend
pip install -e ../agent_framework pip install -e ../../libs/agent_framework
pip install -r requirements.txt pip install -r requirements.txt
python -m uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload python -m uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
``` ```
@@ -7855,7 +7855,7 @@ If the MCP Servers are separate Python processes, upload each one on a different
Example: Example:
```bash ```bash
cd ../mcp_servers/financeiro_mcp_server cd mcp/servers/financeiro_mcp_server
source .venv/bin/activate source .venv/bin/activate
python -m uvicorn main:app --host 0.0.0.0 --port 8300 --reload python -m uvicorn main:app --host 0.0.0.0 --port 8300 --reload
``` ```
@@ -7902,7 +7902,7 @@ curl -X POST http://localhost:8000/debug/mcp/call/consultar_titulo_financeiro \
```bash ```bash
cd agent_platform_oci cd agent_platform_oci
cd agent_frontend cd apps/agent_frontend
python -m http.server 5173 python -m http.server 5173
``` ```

View File

@@ -4,12 +4,12 @@ ROOT="$(cd "$(dirname "$0")/.." && pwd)"
python -m venv "$ROOT/.venv" python -m venv "$ROOT/.venv"
source "$ROOT/.venv/bin/activate" source "$ROOT/.venv/bin/activate"
pip install -r "$ROOT/mcp_servers/telecom_mcp_server/requirements.txt" pip install -r "$ROOT/mcp/servers/telecom_mcp_server/requirements.txt"
pip install -r "$ROOT/mcp_servers/retail_mcp_server/requirements.txt" pip install -r "$ROOT/mcp/servers/retail_mcp_server/requirements.txt"
uvicorn --app-dir "$ROOT/mcp_servers/telecom_mcp_server" main:app --host 0.0.0.0 --port 8100 & uvicorn --app-dir "$ROOT/mcp/servers/telecom_mcp_server" main:app --host 0.0.0.0 --port 8100 &
PID1=$! PID1=$!
uvicorn --app-dir "$ROOT/mcp_servers/retail_mcp_server" main:app --host 0.0.0.0 --port 8200 & uvicorn --app-dir "$ROOT/mcp/servers/retail_mcp_server" main:app --host 0.0.0.0 --port 8200 &
PID2=$! PID2=$!
echo "Telecom MCP em http://localhost:8100" echo "Telecom MCP em http://localhost:8100"