Skip to content

Commit 6f1d274

Browse files
Merge pull request #31 from Danielpeter-99/main
fix: update import to new path
2 parents b918ffd + 17524e5 commit 6f1d274

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docker-compose.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@ version: "3.8"
22

33
services:
44
api:
5-
image: evoapicloud/evo-ai:latest
5+
# image: evoapicloud/evo-ai:latest Use this image to pull from the repo
6+
image: evoai-api:latest # Use this image for local builds
67
depends_on:
78
- postgres
89
- redis
910
ports:
1011
- "8000:8000"
12+
env_file:
13+
- .env
1114
environment:
1215
POSTGRES_CONNECTION_STRING: postgresql://postgres:${POSTGRES_PASSWORD:-postgres}@postgres:5432/evo_ai
1316
REDIS_HOST: redis

src/utils/mcp_discovery.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131

3232
async def _discover_async(config_json: Dict[str, Any]) -> List[Dict[str, Any]]:
3333
"""Return a list[dict] with the tool metadata advertised by the MCP server."""
34-
35-
from src.services.mcp_service import MCPService
34+
from src.services.adk.mcp_service import MCPService
3635

3736
service = MCPService()
3837
tools, exit_stack = await service._connect_to_mcp_server(config_json)

0 commit comments

Comments
 (0)