Compare commits

..

No commits in common. "b6bd215eff4eb794f844f9e9f69a142cdb1b3fc7" and "a2942d07fe4afbe19918abfa30ad1c53ef7d2b76" have entirely different histories.

3 changed files with 1 additions and 4 deletions

View file

@ -31,7 +31,6 @@ COPY --from=builder /app/.venv /app/.venv
ENV PATH="/app/.venv/bin:$PATH"
COPY src/ /app/src/
COPY configs/ /app/configs/
COPY Makefile ./
COPY .mk/ ./.mk/
RUN chown root:root /app && chmod 700 /app

View file

@ -19,7 +19,6 @@ services:
agent_api: ${AGENT_API_PATH}
volumes:
- ./src:/app/src
- ./configs:/app/configs
- ${AGENT_API_PATH}:/agent_api/
- ./data/workspace:/workspace/
- ./data/internal:/internal_data/

View file

@ -36,8 +36,7 @@ def create_agent() -> Agent:
logger.info(f"Init composio with user_id: {composio_user_id}")
session = composio.create(user_id=composio_user_id)
tools = session.tools()
tool_names = [t.name for t in tools] if tools else []
logger.debug(f"Composio tools ({len(tool_names)}): {tool_names} for user_id: {composio_user_id}")
logger.debug(f"Composio tools: {tools} for user_id: {composio_user_id}")
workspace_dir = os.environ["WORKSPACE_DIR"]