address minor comments

This commit is contained in:
Reinier van der Leer
2026-02-13 18:40:44 +01:00
parent 62db72500e
commit 608db31508
3 changed files with 0 additions and 13 deletions

View File

@@ -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,

View File

@@ -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
"""

View File

@@ -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.
"""