diff --git a/autogpt_platform/backend/backend/api/features/chat/routes.py b/autogpt_platform/backend/backend/api/features/chat/routes.py index 1bb7ff43d0..0f0568a349 100644 --- a/autogpt_platform/backend/backend/api/features/chat/routes.py +++ b/autogpt_platform/backend/backend/api/features/chat/routes.py @@ -371,7 +371,6 @@ async def stream_chat_post( }, ) - # Enqueue the task to RabbitMQ for processing by the CoPilot executor await enqueue_copilot_task( task_id=task_id, session_id=session_id, diff --git a/autogpt_platform/backend/backend/copilot/__init__.py b/autogpt_platform/backend/backend/copilot/__init__.py index 65a2efefe1..8b13789179 100644 --- a/autogpt_platform/backend/backend/copilot/__init__.py +++ b/autogpt_platform/backend/backend/copilot/__init__.py @@ -1,8 +1 @@ -"""CoPilot module - AI assistant for AutoGPT platform. -This module contains the core CoPilot functionality including: -- AI generation service (LLM calls) -- Tool execution -- Session management -- Stream registry for SSE reconnection -""" diff --git a/autogpt_platform/backend/backend/copilot/executor/__init__.py b/autogpt_platform/backend/backend/copilot/executor/__init__.py index 373a13f0a7..e69de29bb2 100644 --- a/autogpt_platform/backend/backend/copilot/executor/__init__.py +++ b/autogpt_platform/backend/backend/copilot/executor/__init__.py @@ -1,5 +0,0 @@ -"""CoPilot Executor - Dedicated service for AI generation and tool execution. - -This module contains the executor service that processes CoPilot tasks -from RabbitMQ, following the graph executor pattern. -"""