File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,15 @@ version: "3.8"
22
33services :
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
Original file line number Diff line number Diff line change 3131
3232async 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 )
You can’t perform that action at this time.
0 commit comments