mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
fix(copilot): remove async delegation from SDK execution path
Remove the long-running callback that was spawning background tasks for tools like create_agent and edit_agent in the SDK path. Tools now run synchronously with heartbeats, matching the behavior of the main service.py executor. Changes: - Remove _build_long_running_callback function - Set long_running_callback=None in set_execution_context - Remove unused imports (LongRunningCallback, OperationPendingResponse, etc.) - Update tool supplement comment to reflect synchronous execution - Remove accidentally committed sample.logs file This fixes the "stream timed out" issue where tools were delegated to background and session would stop prematurely.
This commit is contained in:
@@ -11,7 +11,6 @@ from typing import Any
|
||||
|
||||
from backend.util.exceptions import NotFoundError
|
||||
|
||||
from .. import stream_registry
|
||||
from ..config import ChatConfig
|
||||
from ..model import (
|
||||
ChatMessage,
|
||||
@@ -31,12 +30,7 @@ from ..response_model import (
|
||||
StreamToolInputAvailable,
|
||||
StreamToolOutputAvailable,
|
||||
)
|
||||
from ..service import (
|
||||
_build_system_prompt,
|
||||
_execute_long_running_tool_with_streaming,
|
||||
_generate_session_title,
|
||||
)
|
||||
from ..tools.models import OperationPendingResponse, OperationStartedResponse
|
||||
from ..service import _build_system_prompt, _generate_session_title
|
||||
from ..tools.sandbox import WORKSPACE_PREFIX, make_session_path
|
||||
from ..tracking import track_user_message
|
||||
from .response_adapter import SDKResponseAdapter
|
||||
@@ -44,7 +38,6 @@ from .security_hooks import create_security_hooks
|
||||
from .tool_adapter import (
|
||||
COPILOT_TOOL_NAMES,
|
||||
SDK_DISALLOWED_TOOLS,
|
||||
LongRunningCallback,
|
||||
create_copilot_mcp_server,
|
||||
set_execution_context,
|
||||
wait_for_stash,
|
||||
@@ -123,9 +116,9 @@ When you create or modify important files (code, configs, outputs), you MUST:
|
||||
are available from previous turns
|
||||
|
||||
### Long-running tools
|
||||
Long-running tools (create_agent, edit_agent, etc.) are handled
|
||||
asynchronously. You will receive an immediate response; the actual result
|
||||
is delivered to the user via a background stream.
|
||||
Long-running tools (create_agent, edit_agent, etc.) run synchronously
|
||||
with heartbeats to keep the connection alive. The frontend shows UI feedback
|
||||
during execution based on stream events.
|
||||
|
||||
### Sub-agent tasks
|
||||
- When using the Task tool, NEVER set `run_in_background` to true.
|
||||
@@ -133,121 +126,6 @@ is delivered to the user via a background stream.
|
||||
"""
|
||||
|
||||
|
||||
def _build_long_running_callback(user_id: str | None) -> LongRunningCallback:
|
||||
"""Build a callback that delegates long-running tools to the non-SDK infrastructure.
|
||||
|
||||
Long-running tools (create_agent, edit_agent, etc.) are delegated to the
|
||||
existing background infrastructure: stream_registry (Redis Streams),
|
||||
database persistence, and SSE reconnection. This means results survive
|
||||
page refreshes / pod restarts, and the frontend shows the proper loading
|
||||
widget with progress updates.
|
||||
|
||||
The returned callback matches the ``LongRunningCallback`` signature:
|
||||
``(tool_name, args, session) -> MCP response dict``.
|
||||
"""
|
||||
|
||||
async def _callback(
|
||||
tool_name: str, args: dict[str, Any], session: ChatSession
|
||||
) -> dict[str, Any]:
|
||||
operation_id = str(uuid.uuid4())
|
||||
task_id = str(uuid.uuid4())
|
||||
tool_call_id = f"sdk-{uuid.uuid4().hex[:12]}"
|
||||
session_id = session.session_id
|
||||
|
||||
# --- Build user-friendly messages (matches non-SDK service) ---
|
||||
if tool_name == "create_agent":
|
||||
desc = args.get("description", "")
|
||||
desc_preview = (desc[:100] + "...") if len(desc) > 100 else desc
|
||||
pending_msg = (
|
||||
f"Creating your agent: {desc_preview}"
|
||||
if desc_preview
|
||||
else "Creating agent... This may take a few minutes."
|
||||
)
|
||||
started_msg = (
|
||||
"Agent creation started. You can close this tab - "
|
||||
"check your library in a few minutes."
|
||||
)
|
||||
elif tool_name == "edit_agent":
|
||||
changes = args.get("changes", "")
|
||||
changes_preview = (changes[:100] + "...") if len(changes) > 100 else changes
|
||||
pending_msg = (
|
||||
f"Editing agent: {changes_preview}"
|
||||
if changes_preview
|
||||
else "Editing agent... This may take a few minutes."
|
||||
)
|
||||
started_msg = (
|
||||
"Agent edit started. You can close this tab - "
|
||||
"check your library in a few minutes."
|
||||
)
|
||||
else:
|
||||
pending_msg = f"Running {tool_name}... This may take a few minutes."
|
||||
started_msg = (
|
||||
f"{tool_name} started. You can close this tab - "
|
||||
"check back in a few minutes."
|
||||
)
|
||||
|
||||
# --- Register task in Redis for SSE reconnection ---
|
||||
await stream_registry.create_task(
|
||||
task_id=task_id,
|
||||
session_id=session_id,
|
||||
user_id=user_id,
|
||||
tool_call_id=tool_call_id,
|
||||
tool_name=tool_name,
|
||||
operation_id=operation_id,
|
||||
)
|
||||
|
||||
# --- Save OperationPendingResponse to chat history ---
|
||||
pending_message = ChatMessage(
|
||||
role="tool",
|
||||
content=OperationPendingResponse(
|
||||
message=pending_msg,
|
||||
operation_id=operation_id,
|
||||
tool_name=tool_name,
|
||||
).model_dump_json(),
|
||||
tool_call_id=tool_call_id,
|
||||
)
|
||||
session.messages.append(pending_message)
|
||||
await upsert_chat_session(session)
|
||||
|
||||
# --- Spawn background task (reuses non-SDK infrastructure) ---
|
||||
bg_task = asyncio.create_task(
|
||||
_execute_long_running_tool_with_streaming(
|
||||
tool_name=tool_name,
|
||||
parameters=args,
|
||||
tool_call_id=tool_call_id,
|
||||
operation_id=operation_id,
|
||||
task_id=task_id,
|
||||
session_id=session_id,
|
||||
user_id=user_id,
|
||||
)
|
||||
)
|
||||
_background_tasks.add(bg_task)
|
||||
bg_task.add_done_callback(_background_tasks.discard)
|
||||
await stream_registry.set_task_asyncio_task(task_id, bg_task)
|
||||
|
||||
logger.info(
|
||||
f"[SDK] Long-running tool {tool_name} delegated to background "
|
||||
f"(operation_id={operation_id}, task_id={task_id})"
|
||||
)
|
||||
|
||||
# --- Return OperationStartedResponse as MCP tool result ---
|
||||
# This flows through SDK → response adapter → frontend, triggering
|
||||
# the loading widget with SSE reconnection support.
|
||||
started_json = OperationStartedResponse(
|
||||
message=started_msg,
|
||||
operation_id=operation_id,
|
||||
tool_name=tool_name,
|
||||
task_id=task_id,
|
||||
).model_dump_json()
|
||||
|
||||
return {
|
||||
"content": [{"type": "text", "text": started_json}],
|
||||
"isError": False,
|
||||
}
|
||||
|
||||
return _callback
|
||||
|
||||
|
||||
def _resolve_sdk_model() -> str | None:
|
||||
"""Resolve the model name for the Claude Agent SDK CLI.
|
||||
|
||||
@@ -584,7 +462,7 @@ async def stream_chat_completion_sdk(
|
||||
set_execution_context(
|
||||
user_id,
|
||||
session,
|
||||
long_running_callback=_build_long_running_callback(user_id),
|
||||
long_running_callback=None,
|
||||
)
|
||||
try:
|
||||
from claude_agent_sdk import ClaudeAgentOptions, ClaudeSDKClient
|
||||
|
||||
@@ -1,553 +0,0 @@
|
||||
2026-02-21 18:16:44,298 [34mINFO[0m Initializing LaunchDarkly Client 9.15.0
|
||||
2026-02-21 18:16:44,299 [34mINFO[0m Starting event processor
|
||||
2026-02-21 18:16:44,299 [34mINFO[0m Starting StreamingUpdateProcessor connecting to uri: https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:44,299 [34mINFO[0m Waiting up to 5 seconds for LaunchDarkly client to initialize...
|
||||
2026-02-21 18:16:44,299 [34mINFO[0m Connecting to stream at https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:44,446 [34mINFO[0m StreamingUpdateProcessor initialized ok.
|
||||
2026-02-21 18:16:44,446 [34mINFO[0m Started LaunchDarkly Client: OK
|
||||
2026-02-21 18:16:44,446 [34mINFO[0m LaunchDarkly client initialized successfully
|
||||
2026-02-21 18:16:46,214 [34mINFO[0m Metrics endpoint exposed at /metrics for external-api
|
||||
2026-02-21 18:16:46,217 [34mINFO[0m Metrics endpoint exposed at /metrics for rest-api
|
||||
2026-02-21 18:16:46,300 [34mINFO[0m Metrics endpoint exposed at /metrics for websocket-server
|
||||
2026-02-21 18:16:46,387 [34mINFO[0m [DatabaseManager] started with PID 37115
|
||||
2026-02-21 18:16:46,388 [34mINFO[0m [Scheduler] started with PID 37116
|
||||
2026-02-21 18:16:46,390 [34mINFO[0m [NotificationManager] started with PID 37117
|
||||
2026-02-21 18:16:46,391 [34mINFO[0m [WebsocketServer] started with PID 37118
|
||||
2026-02-21 18:16:46,392 [34mINFO[0m [AgentServer] started with PID 37119
|
||||
2026-02-21 18:16:46,394 [34mINFO[0m [ExecutionManager] started with PID 37120
|
||||
2026-02-21 18:16:46,394 [34mINFO[0m [CoPilotExecutor] Starting...
|
||||
2026-02-21 18:16:46,394 [34mINFO[0m [CoPilotExecutor] Pod assigned executor_id: 8c5bd745-7588-4a8c-b56c-147c8e1f0a9a
|
||||
2026-02-21 18:16:46,394 [34mINFO[0m [CoPilotExecutor] Spawn max-5 workers...
|
||||
2026-02-21 18:16:46,402 [34mINFO[0m [PID-37090|THREAD-77339278|CoPilotExecutor|RabbitMQ-e9928291-7181-4610-a2d8-5aab2b6a3a27] Acquiring connection started...
|
||||
2026-02-21 18:16:46,404 [34mINFO[0m [PID-37090|THREAD-77339279|CoPilotExecutor|RabbitMQ-e9928291-7181-4610-a2d8-5aab2b6a3a27] Acquiring connection started...
|
||||
2026-02-21 18:16:46,406 [34mINFO[0m Pika version 1.3.2 connecting to ('::1', 5672, 0, 0)
|
||||
2026-02-21 18:16:46,406 [34mINFO[0m Pika version 1.3.2 connecting to ('::1', 5672, 0, 0)
|
||||
2026-02-21 18:16:46,406 [34mINFO[0m Socket connected: <socket.socket fd=29, family=30, type=1, proto=6, laddr=('::1', 56180, 0, 0), raddr=('::1', 5672, 0, 0)>
|
||||
2026-02-21 18:16:46,408 [34mINFO[0m Streaming transport linked up: (<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c52a50>, _StreamingProtocolShim: <SelectConnection PROTOCOL transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c52a50> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>).
|
||||
2026-02-21 18:16:46,408 [34mINFO[0m Socket connected: <socket.socket fd=30, family=30, type=1, proto=6, laddr=('::1', 56181, 0, 0), raddr=('::1', 5672, 0, 0)>
|
||||
2026-02-21 18:16:46,409 [34mINFO[0m Streaming transport linked up: (<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c8c410>, _StreamingProtocolShim: <SelectConnection PROTOCOL transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c8c410> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>).
|
||||
2026-02-21 18:16:46,424 [34mINFO[0m AMQPConnector - reporting success: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c52a50> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:46,424 [34mINFO[0m AMQPConnectionWorkflow - reporting success: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c52a50> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:46,424 [34mINFO[0m Connection workflow succeeded: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c52a50> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:46,424 [34mINFO[0m Created channel=1
|
||||
2026-02-21 18:16:46,424 [34mINFO[0m AMQPConnector - reporting success: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c8c410> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:46,425 [34mINFO[0m AMQPConnectionWorkflow - reporting success: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c8c410> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:46,425 [34mINFO[0m Connection workflow succeeded: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x137c8c410> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:46,425 [34mINFO[0m Created channel=1
|
||||
2026-02-21 18:16:46,435 [34mINFO[0m [PID-37090|THREAD-77339278|CoPilotExecutor|RabbitMQ-e9928291-7181-4610-a2d8-5aab2b6a3a27] Acquiring connection completed successfully.
|
||||
2026-02-21 18:16:46,438 [34mINFO[0m [CoPilotExecutor] Starting to consume cancel messages...
|
||||
2026-02-21 18:16:46,439 [34mINFO[0m [PID-37090|THREAD-77339279|CoPilotExecutor|RabbitMQ-e9928291-7181-4610-a2d8-5aab2b6a3a27] Acquiring connection completed successfully.
|
||||
2026-02-21 18:16:46,441 [34mINFO[0m [CoPilotExecutor] Starting to consume run messages...
|
||||
2026-02-21 18:16:47,912 [34mINFO[0m Initializing LaunchDarkly Client 9.15.0
|
||||
2026-02-21 18:16:47,914 [34mINFO[0m Starting event processor
|
||||
2026-02-21 18:16:47,914 [34mINFO[0m Starting StreamingUpdateProcessor connecting to uri: https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:47,915 [34mINFO[0m Waiting up to 5 seconds for LaunchDarkly client to initialize...
|
||||
2026-02-21 18:16:47,915 [34mINFO[0m Connecting to stream at https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:48,040 [34mINFO[0m StreamingUpdateProcessor initialized ok.
|
||||
2026-02-21 18:16:48,040 [34mINFO[0m Started LaunchDarkly Client: OK
|
||||
2026-02-21 18:16:48,040 [34mINFO[0m LaunchDarkly client initialized successfully
|
||||
2026-02-21 18:16:48,653 [34mINFO[0m Initializing LaunchDarkly Client 9.15.0
|
||||
2026-02-21 18:16:48,655 [34mINFO[0m Starting event processor
|
||||
2026-02-21 18:16:48,656 [34mINFO[0m Starting StreamingUpdateProcessor connecting to uri: https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:48,656 [34mINFO[0m Waiting up to 5 seconds for LaunchDarkly client to initialize...
|
||||
2026-02-21 18:16:48,656 [34mINFO[0m Connecting to stream at https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:48,748 [34mINFO[0m Initializing LaunchDarkly Client 9.15.0
|
||||
2026-02-21 18:16:48,749 [34mINFO[0m Starting event processor
|
||||
2026-02-21 18:16:48,751 [34mINFO[0m Starting StreamingUpdateProcessor connecting to uri: https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:48,751 [34mINFO[0m Waiting up to 5 seconds for LaunchDarkly client to initialize...
|
||||
2026-02-21 18:16:48,751 [34mINFO[0m Connecting to stream at https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:48,780 [34mINFO[0m StreamingUpdateProcessor initialized ok.
|
||||
2026-02-21 18:16:48,780 [34mINFO[0m Started LaunchDarkly Client: OK
|
||||
2026-02-21 18:16:48,781 [34mINFO[0m LaunchDarkly client initialized successfully
|
||||
2026-02-21 18:16:48,887 [34mINFO[0m StreamingUpdateProcessor initialized ok.
|
||||
2026-02-21 18:16:48,887 [34mINFO[0m Started LaunchDarkly Client: OK
|
||||
2026-02-21 18:16:48,887 [34mINFO[0m LaunchDarkly client initialized successfully
|
||||
2026-02-21 18:16:49,517 [34mINFO[0m [NotificationManager] Starting...
|
||||
2026-02-21 18:16:49,563 [34mINFO[0m Metrics endpoint exposed at /metrics for NotificationManager
|
||||
2026-02-21 18:16:49,567 [34mINFO[0m [PID-37117|THREAD-77339480|NotificationManager|FastAPI server-124b426c-6b9a-4877-a55e-d210080d11bb] Running FastAPI server started...
|
||||
2026-02-21 18:16:49,568 [34mINFO[0m [NotificationManager] Starting RPC server at http://localhost:8007
|
||||
2026-02-21 18:16:49,569 [34mINFO[0m [NotificationManager] [NotificationManager] ⏳ Configuring RabbitMQ...
|
||||
2026-02-21 18:16:49,570 [34mINFO[0m [PID-37117|THREAD-77339481|NotificationManager|AsyncRabbitMQ-aa31b497-52a6-4405-92f9-f514740f3b36] Acquiring async connection started...
|
||||
2026-02-21 18:16:49,587 [34mINFO[0m Started server process [37117]
|
||||
2026-02-21 18:16:49,587 [34mINFO[0m Waiting for application startup.
|
||||
2026-02-21 18:16:49,588 [34mINFO[0m Application startup complete.
|
||||
2026-02-21 18:16:49,588 [34mINFO[0m Uvicorn running on http://localhost:8007 (Press CTRL+C to quit)
|
||||
2026-02-21 18:16:49,631 [34mINFO[0m [PID-37117|THREAD-77339481|NotificationManager|AsyncRabbitMQ-aa31b497-52a6-4405-92f9-f514740f3b36] Acquiring async connection completed successfully.
|
||||
2026-02-21 18:16:49,631 [34mINFO[0m [NotificationManager] [NotificationManager] Started notification service
|
||||
2026-02-21 18:16:49,632 [34mINFO[0m [NotificationManager] Starting consumer for queue: immediate_notifications
|
||||
2026-02-21 18:16:49,633 [34mINFO[0m [NotificationManager] Starting consumer for queue: admin_notifications
|
||||
2026-02-21 18:16:49,633 [34mINFO[0m [NotificationManager] Starting consumer for queue: batch_notifications
|
||||
2026-02-21 18:16:49,633 [34mINFO[0m [NotificationManager] Starting consumer for queue: summary_notifications
|
||||
2026-02-21 18:16:49,679 [34mINFO[0m Initializing LaunchDarkly Client 9.15.0
|
||||
2026-02-21 18:16:49,680 [34mINFO[0m Starting event processor
|
||||
2026-02-21 18:16:49,681 [34mINFO[0m Starting StreamingUpdateProcessor connecting to uri: https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:49,681 [34mINFO[0m Waiting up to 5 seconds for LaunchDarkly client to initialize...
|
||||
2026-02-21 18:16:49,681 [34mINFO[0m Connecting to stream at https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:49,682 [34mINFO[0m Initializing LaunchDarkly Client 9.15.0
|
||||
2026-02-21 18:16:49,683 [34mINFO[0m Starting event processor
|
||||
2026-02-21 18:16:49,684 [34mINFO[0m Starting StreamingUpdateProcessor connecting to uri: https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:49,684 [34mINFO[0m Connecting to stream at https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:49,684 [34mINFO[0m Waiting up to 5 seconds for LaunchDarkly client to initialize...
|
||||
2026-02-21 18:16:49,699 [34mINFO[0m Initializing LaunchDarkly Client 9.15.0
|
||||
2026-02-21 18:16:49,700 [34mINFO[0m Starting event processor
|
||||
2026-02-21 18:16:49,701 [34mINFO[0m Starting StreamingUpdateProcessor connecting to uri: https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:49,701 [34mINFO[0m Waiting up to 5 seconds for LaunchDarkly client to initialize...
|
||||
2026-02-21 18:16:49,701 [34mINFO[0m Connecting to stream at https://stream.launchdarkly.com/all
|
||||
2026-02-21 18:16:49,797 [34mINFO[0m StreamingUpdateProcessor initialized ok.
|
||||
2026-02-21 18:16:49,797 [34mINFO[0m Started LaunchDarkly Client: OK
|
||||
2026-02-21 18:16:49,798 [34mINFO[0m LaunchDarkly client initialized successfully
|
||||
2026-02-21 18:16:49,803 [34mINFO[0m StreamingUpdateProcessor initialized ok.
|
||||
2026-02-21 18:16:49,803 [34mINFO[0m Started LaunchDarkly Client: OK
|
||||
2026-02-21 18:16:49,804 [34mINFO[0m LaunchDarkly client initialized successfully
|
||||
2026-02-21 18:16:49,828 [34mINFO[0m StreamingUpdateProcessor initialized ok.
|
||||
2026-02-21 18:16:49,828 [34mINFO[0m Started LaunchDarkly Client: OK
|
||||
2026-02-21 18:16:49,828 [34mINFO[0m LaunchDarkly client initialized successfully
|
||||
2026-02-21 18:16:49,900 [34mINFO[0m Metrics endpoint exposed at /metrics for websocket-server
|
||||
2026-02-21 18:16:49,902 [34mINFO[0m [WebsocketServer] Starting...
|
||||
2026-02-21 18:16:49,902 [34mINFO[0m CORS allow origins: ['http://localhost:3000', 'http://127.0.0.1:3000']
|
||||
2026-02-21 18:16:49,945 [34mINFO[0m Started server process [37118]
|
||||
2026-02-21 18:16:49,945 [34mINFO[0m Waiting for application startup.
|
||||
2026-02-21 18:16:49,946 [34mINFO[0m Application startup complete.
|
||||
2026-02-21 18:16:49,947 [34mINFO[0m [PID-37118|THREAD-77339274|WebsocketServer|AsyncRedis-4f2a279c-9d9d-443a-8fba-1b696c5f84f1] Acquiring connection started...
|
||||
2026-02-21 18:16:49,947 [34mINFO[0m [PID-37118|THREAD-77339274|WebsocketServer|AsyncRedis-4f2a279c-9d9d-443a-8fba-1b696c5f84f1] Acquiring connection started...
|
||||
2026-02-21 18:16:49,948 [34mINFO[0m Uvicorn running on http://0.0.0.0:8001 (Press CTRL+C to quit)
|
||||
2026-02-21 18:16:49,952 [34mINFO[0m [PID-37118|THREAD-77339274|WebsocketServer|AsyncRedis-4f2a279c-9d9d-443a-8fba-1b696c5f84f1] Acquiring connection completed successfully.
|
||||
2026-02-21 18:16:49,953 [34mINFO[0m [PID-37118|THREAD-77339274|WebsocketServer|AsyncRedis-4f2a279c-9d9d-443a-8fba-1b696c5f84f1] Acquiring connection completed successfully.
|
||||
2026-02-21 18:16:50,709 [34mINFO[0m ('127.0.0.1', 56214) - "WebSocket /ws?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2ODM4MzY2NS1kM2Q5LTQxZjMtYjEwYy1mY2EwZGM2MDgwZWQiLCJhdWQiOiJhdXRoZW50aWNhdGVkIiwiZXhwIjoxNzcxNjczMDI0LCJpYXQiOjE3NzE2Njk0MjQsImVtYWlsIjoidGVzdGVyQGdtYWlsLmNvbSIsInBob25lIjoiIiwiYXBwX21ldGFkYXRhIjp7InByb3ZpZGVyIjoiZW1haWwiLCJwcm92aWRlcnMiOlsiZW1haWwiXX0sInVzZXJfbWV0YWRhdGEiOnsiZW1haWwiOiJ0ZXN0ZXJAZ21haWwuY29tIiwiZW1haWxfdmVyaWZpZWQiOnRydWUsInBob25lX3ZlcmlmaWVkIjpmYWxzZSwic3ViIjoiNjgzODM2NjUtZDNkOS00MWYzLWIxMGMtZmNhMGRjNjA4MGVkIn0sInJvbGUiOiJhZG1pbiIsImFhbCI6ImFhbDEiLCJhbXIiOlt7Im1ldGhvZCI6InBhc3N3b3JkIiwidGltZXN0YW1wIjoxNzcxNTYxNzUwfV0sInNlc3Npb25faWQiOiJiOTVjNmY4OS0yZjk2LTQxYWYtYmU2My00MzhmY2QxZDFmZDIiLCJpc19hbm9ueW1vdXMiOmZhbHNlfQ.L18OrHnbQM6ft-DryeXBsGeDqv3dLOvBH9hsk0y6lvg" [accepted]
|
||||
2026-02-21 18:16:50,709 [34mINFO[0m connection open
|
||||
2026-02-21 18:16:50,723 [34mINFO[0m ('127.0.0.1', 56216) - "WebSocket /ws?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2ODM4MzY2NS1kM2Q5LTQxZjMtYjEwYy1mY2EwZGM2MDgwZWQiLCJhdWQiOiJhdXRoZW50aWNhdGVkIiwiZXhwIjoxNzcxNjczMDI0LCJpYXQiOjE3NzE2Njk0MjQsImVtYWlsIjoidGVzdGVyQGdtYWlsLmNvbSIsInBob25lIjoiIiwiYXBwX21ldGFkYXRhIjp7InByb3ZpZGVyIjoiZW1haWwiLCJwcm92aWRlcnMiOlsiZW1haWwiXX0sInVzZXJfbWV0YWRhdGEiOnsiZW1haWwiOiJ0ZXN0ZXJAZ21haWwuY29tIiwiZW1haWxfdmVyaWZpZWQiOnRydWUsInBob25lX3ZlcmlmaWVkIjpmYWxzZSwic3ViIjoiNjgzODM2NjUtZDNkOS00MWYzLWIxMGMtZmNhMGRjNjA4MGVkIn0sInJvbGUiOiJhZG1pbiIsImFhbCI6ImFhbDEiLCJhbXIiOlt7Im1ldGhvZCI6InBhc3N3b3JkIiwidGltZXN0YW1wIjoxNzcxNTYxNzUwfV0sInNlc3Npb25faWQiOiJiOTVjNmY4OS0yZjk2LTQxYWYtYmU2My00MzhmY2QxZDFmZDIiLCJpc19hbm9ueW1vdXMiOmZhbHNlfQ.L18OrHnbQM6ft-DryeXBsGeDqv3dLOvBH9hsk0y6lvg" [accepted]
|
||||
2026-02-21 18:16:50,723 [34mINFO[0m connection open
|
||||
2026-02-21 18:16:50,882 [34mINFO[0m [DatabaseManager] Starting...
|
||||
2026-02-21 18:16:50,912 [34mINFO[0m Metrics endpoint exposed at /metrics for DatabaseManager
|
||||
2026-02-21 18:16:50,917 [34mINFO[0m [ExecutionManager] Starting...
|
||||
2026-02-21 18:16:50,918 [34mINFO[0m [GraphExecutor] [ExecutionManager] 🆔 Pod assigned executor_id: d96a39eb-04b7-48ea-bcc6-ad0bb4b0f0e0
|
||||
2026-02-21 18:16:50,918 [34mINFO[0m [GraphExecutor] [ExecutionManager] ⏳ Spawn max-10 workers...
|
||||
2026-02-21 18:16:50,923 [34mINFO[0m [PID-37120|THREAD-77339680|ExecutionManager|RabbitMQ-6f8db01e-b77b-4a19-9512-a2dce590f16d] Acquiring connection started...
|
||||
2026-02-21 18:16:50,924 [34mINFO[0m [PID-37120|THREAD-77339681|ExecutionManager|RabbitMQ-6f8db01e-b77b-4a19-9512-a2dce590f16d] Acquiring connection started...
|
||||
2026-02-21 18:16:50,926 [34mINFO[0m Pika version 1.3.2 connecting to ('::1', 5672, 0, 0)
|
||||
2026-02-21 18:16:50,926 [34mINFO[0m Pika version 1.3.2 connecting to ('::1', 5672, 0, 0)
|
||||
2026-02-21 18:16:50,927 [34mINFO[0m Socket connected: <socket.socket fd=21, family=30, type=1, proto=6, laddr=('::1', 56221, 0, 0), raddr=('::1', 5672, 0, 0)>
|
||||
2026-02-21 18:16:50,927 [34mINFO[0m Socket connected: <socket.socket fd=20, family=30, type=1, proto=6, laddr=('::1', 56222, 0, 0), raddr=('::1', 5672, 0, 0)>
|
||||
2026-02-21 18:16:50,928 [34mINFO[0m Streaming transport linked up: (<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x1407cd400>, _StreamingProtocolShim: <SelectConnection PROTOCOL transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x1407cd400> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>).
|
||||
2026-02-21 18:16:50,928 [34mINFO[0m Streaming transport linked up: (<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x140820b90>, _StreamingProtocolShim: <SelectConnection PROTOCOL transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x140820b90> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>).
|
||||
2026-02-21 18:16:50,935 [34mINFO[0m AMQPConnector - reporting success: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x1407cd400> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:50,936 [34mINFO[0m AMQPConnectionWorkflow - reporting success: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x1407cd400> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:50,936 [34mINFO[0m Connection workflow succeeded: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x1407cd400> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:50,936 [34mINFO[0m Created channel=1
|
||||
2026-02-21 18:16:50,937 [34mINFO[0m AMQPConnector - reporting success: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x140820b90> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:50,937 [34mINFO[0m AMQPConnectionWorkflow - reporting success: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x140820b90> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:50,937 [34mINFO[0m Connection workflow succeeded: <SelectConnection OPEN transport=<pika.adapters.utils.io_services_utils._AsyncPlaintextTransport object at 0x140820b90> params=<ConnectionParameters host=localhost port=5672 virtual_host=/ ssl=False>>
|
||||
2026-02-21 18:16:50,937 [34mINFO[0m Created channel=1
|
||||
2026-02-21 18:16:50,942 [34mINFO[0m [Scheduler] Starting...
|
||||
2026-02-21 18:16:50,945 [34mINFO[0m [PID-37120|THREAD-77339681|ExecutionManager|RabbitMQ-6f8db01e-b77b-4a19-9512-a2dce590f16d] Acquiring connection completed successfully.
|
||||
2026-02-21 18:16:50,947 [34mINFO[0m [PID-37120|THREAD-77339680|ExecutionManager|RabbitMQ-6f8db01e-b77b-4a19-9512-a2dce590f16d] Acquiring connection completed successfully.
|
||||
2026-02-21 18:16:50,947 [34mINFO[0m [GraphExecutor] [ExecutionManager] ⏳ Starting to consume run messages...
|
||||
2026-02-21 18:16:50,948 [34mINFO[0m [GraphExecutor] [ExecutionManager] ⏳ Starting cancel message consumer...
|
||||
2026-02-21 18:16:50,974 [34mINFO[0m Metrics endpoint exposed at /metrics for Scheduler
|
||||
2026-02-21 18:16:50,982 [34mINFO[0m [PID-37116|THREAD-77339700|Scheduler|FastAPI server-654781d8-dde9-4fc1-9ecc-d4cefde8e0b1] Running FastAPI server started...
|
||||
2026-02-21 18:16:50,982 [34mINFO[0m [Scheduler] Starting RPC server at http://localhost:8003
|
||||
2026-02-21 18:16:51,155 [34mINFO[0m [PID-37115|THREAD-77339702|DatabaseManager|FastAPI server-44aadb50-9970-4f3d-bf50-bcac395b5b55] Running FastAPI server started...
|
||||
2026-02-21 18:16:51,155 [34mINFO[0m [DatabaseManager] Starting RPC server at http://localhost:8005
|
||||
2026-02-21 18:16:51,163 [34mINFO[0m [DatabaseManager] ⏳ Connecting to Database...
|
||||
2026-02-21 18:16:51,163 [34mINFO[0m [PID-37115|THREAD-77339703|DatabaseManager|Prisma-e533c91b-5198-44ef-99a8-fcd7e98e1b20] Acquiring connection started...
|
||||
2026-02-21 18:16:51,218 [34mINFO[0m [Scheduler] [APScheduler] Adding job tentatively -- it will be properly scheduled when the scheduler starts
|
||||
2026-02-21 18:16:51,219 [34mINFO[0m [Scheduler] [APScheduler] Adding job tentatively -- it will be properly scheduled when the scheduler starts
|
||||
2026-02-21 18:16:51,219 [34mINFO[0m [Scheduler] [APScheduler] Adding job tentatively -- it will be properly scheduled when the scheduler starts
|
||||
2026-02-21 18:16:51,219 [34mINFO[0m [Scheduler] [APScheduler] Adding job tentatively -- it will be properly scheduled when the scheduler starts
|
||||
2026-02-21 18:16:51,219 [34mINFO[0m [Scheduler] [APScheduler] Adding job tentatively -- it will be properly scheduled when the scheduler starts
|
||||
2026-02-21 18:16:51,220 [34mINFO[0m [Scheduler] [APScheduler] Adding job tentatively -- it will be properly scheduled when the scheduler starts
|
||||
2026-02-21 18:16:51,220 [34mINFO[0m [Scheduler] [APScheduler] Adding job tentatively -- it will be properly scheduled when the scheduler starts
|
||||
2026-02-21 18:16:51,281 [34mINFO[0m [Scheduler] [APScheduler] Added job "process_weekly_summary" to job store "weekly_notifications"
|
||||
2026-02-21 18:16:51,287 [34mINFO[0m [Scheduler] [APScheduler] Added job "report_late_executions" to job store "execution"
|
||||
2026-02-21 18:16:51,290 [34mINFO[0m [Scheduler] [APScheduler] Added job "report_block_error_rates" to job store "execution"
|
||||
2026-02-21 18:16:51,293 [34mINFO[0m [Scheduler] [APScheduler] Added job "cleanup_expired_files" to job store "execution"
|
||||
2026-02-21 18:16:51,296 [34mINFO[0m [Scheduler] [APScheduler] Added job "cleanup_oauth_tokens" to job store "execution"
|
||||
2026-02-21 18:16:51,299 [34mINFO[0m [Scheduler] [APScheduler] Added job "execution_accuracy_alerts" to job store "execution"
|
||||
2026-02-21 18:16:51,302 [34mINFO[0m [Scheduler] [APScheduler] Added job "ensure_embeddings_coverage" to job store "execution"
|
||||
2026-02-21 18:16:51,302 [34mINFO[0m [Scheduler] [APScheduler] Scheduler started
|
||||
2026-02-21 18:16:51,303 [34mINFO[0m [Scheduler] Running embedding backfill on startup...
|
||||
2026-02-21 18:16:51,307 [34mINFO[0m [PID-37115|THREAD-77339703|DatabaseManager|Prisma-e533c91b-5198-44ef-99a8-fcd7e98e1b20] Acquiring connection completed successfully.
|
||||
2026-02-21 18:16:51,307 [34mINFO[0m [DatabaseManager] ✅ Ready
|
||||
2026-02-21 18:16:51,369 [34mINFO[0m [PID-37116|THREAD-77339272|Scheduler|AppService client-fdf5cb70-9dbe-4ff1-8d17-1eff708575c1] Creating service client started...
|
||||
2026-02-21 18:16:51,369 [34mINFO[0m [PID-37116|THREAD-77339272|Scheduler|AppService client-fdf5cb70-9dbe-4ff1-8d17-1eff708575c1] Creating service client completed successfully.
|
||||
2026-02-21 18:16:51,644 [34mINFO[0m Metrics endpoint exposed at /metrics for external-api
|
||||
2026-02-21 18:16:51,649 [34mINFO[0m Metrics endpoint exposed at /metrics for rest-api
|
||||
2026-02-21 18:16:51,735 [34mINFO[0m [AgentServer] Starting...
|
||||
2026-02-21 18:16:51,748 [34mINFO[0m Started server process [37119]
|
||||
2026-02-21 18:16:51,748 [34mINFO[0m Waiting for application startup.
|
||||
2026-02-21 18:16:51,749 [34mINFO[0m [PID-37119|THREAD-77339275|AgentServer|Prisma-d1650db9-6c21-400b-ae8d-80c36b393100] Acquiring connection started...
|
||||
2026-02-21 18:16:51,911 [34mINFO[0m [PID-37119|THREAD-77339275|AgentServer|Prisma-d1650db9-6c21-400b-ae8d-80c36b393100] Acquiring connection completed successfully.
|
||||
2026-02-21 18:16:51,923 [34mINFO[0m Thread pool size set to 60 for sync endpoint/dependency performance
|
||||
2026-02-21 18:16:51,924 [34mINFO[0m Successfully patched IntegrationCredentialsStore.get_all_creds
|
||||
2026-02-21 18:16:51,924 [34mINFO[0m Syncing provider costs to blocks...
|
||||
2026-02-21 18:16:52,346 [34mINFO[0m Registered 1 custom costs for block FirecrawlExtractBlock
|
||||
2026-02-21 18:16:52,778 [34mINFO[0m Registered 1 custom costs for block FirecrawlExtractBlock
|
||||
2026-02-21 18:16:54,030 [34mINFO[0m Successfully patched IntegrationCredentialsStore.get_all_creds
|
||||
2026-02-21 18:16:54,647 [34mINFO[0m Successfully patched IntegrationCredentialsStore.get_all_creds
|
||||
2026-02-21 18:16:54,721 [34mINFO[0m [Scheduler] BLOCK: 36 items without embeddings (89.9% coverage)
|
||||
2026-02-21 18:16:54,722 [34mINFO[0m [Scheduler] Total: 36 items without embeddings (99.2% coverage) - processing all
|
||||
2026-02-21 18:16:54,727 [34mINFO[0m Processing BLOCK content type...
|
||||
2026-02-21 18:16:54,736 [34mINFO[0m Processing STORE_AGENT content type...
|
||||
2026-02-21 18:16:54,740 [34mINFO[0m Processing DOCUMENTATION content type...
|
||||
2026-02-21 18:16:54,817 [34mINFO[0m [Scheduler] Embedding backfill completed: 0/0 succeeded, 0 failed
|
||||
2026-02-21 18:16:54,817 [34mINFO[0m [Scheduler] Running cleanup for orphaned embeddings (blocks/docs)...
|
||||
2026-02-21 18:16:54,871 [34mINFO[0m STORE_AGENT: No orphaned embeddings found
|
||||
2026-02-21 18:16:54,882 [34mINFO[0m BLOCK: No orphaned embeddings found
|
||||
2026-02-21 18:16:54,929 [34mINFO[0m Synced 82 costs to 82 blocks
|
||||
2026-02-21 18:16:54,949 [34mINFO[0m DOCUMENTATION: No orphaned embeddings found
|
||||
2026-02-21 18:16:54,950 [34mINFO[0m [Scheduler] Cleanup completed: no orphaned embeddings found
|
||||
2026-02-21 18:16:54,950 [34mINFO[0m [Scheduler] Startup embedding backfill complete: {'backfill': {'processed': 0, 'success': 0, 'failed': 0}, 'cleanup': {'deleted': 0}}
|
||||
2026-02-21 18:16:54,966 [34mINFO[0m Started server process [37116]
|
||||
2026-02-21 18:16:54,967 [34mINFO[0m Waiting for application startup.
|
||||
2026-02-21 18:16:54,967 [34mINFO[0m Application startup complete.
|
||||
2026-02-21 18:16:54,968 [34mINFO[0m Uvicorn running on http://localhost:8003 (Press CTRL+C to quit)
|
||||
2026-02-21 18:16:56,990 [34mINFO[0m Migrating integration credentials for 0 users
|
||||
2026-02-21 18:16:57,004 [34mINFO[0m Fixing LLM credential inputs on 0 nodes
|
||||
2026-02-21 18:16:57,004 [34mINFO[0m Migrating LLM models
|
||||
2026-02-21 18:16:57,033 [34mINFO[0m Migrated 0 node triggers to triggered presets
|
||||
2026-02-21 18:16:57,034 [34mINFO[0m [PID-37119|THREAD-77339275|AgentServer|AsyncRedis-3421f86b-fff3-4977-b295-86b8a7bb7960] Acquiring connection started...
|
||||
2026-02-21 18:16:57,041 [34mINFO[0m [PID-37119|THREAD-77339275|AgentServer|AsyncRedis-3421f86b-fff3-4977-b295-86b8a7bb7960] Acquiring connection completed successfully.
|
||||
2026-02-21 18:16:57,044 [34mINFO[0m Chat completion consumer started (consumer: consumer-ca023682)
|
||||
2026-02-21 18:16:57,045 [34mINFO[0m Application startup complete.
|
||||
2026-02-21 18:16:57,046 [34mINFO[0m Uvicorn running on http://0.0.0.0:8006 (Press CTRL+C to quit)
|
||||
2026-02-21 18:16:57,561 [34mINFO[0m 127.0.0.1:56264 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:16:57,581 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:16:57,590 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:16:57,590 [34mINFO[0m 127.0.0.1:56267 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:16:57,603 [34mINFO[0m 127.0.0.1:56265 - "GET /api/chat/sessions?limit=50 HTTP/1.1" 200
|
||||
2026-02-21 18:16:58,571 [34mINFO[0m 127.0.0.1:56269 - "GET /api/executions HTTP/1.1" 200
|
||||
2026-02-21 18:16:58,916 [34mINFO[0m 127.0.0.1:56264 - "GET /api/integrations/providers HTTP/1.1" 200
|
||||
2026-02-21 18:16:58,920 [34mINFO[0m 127.0.0.1:56265 - "GET /api/integrations/providers/system HTTP/1.1" 200
|
||||
2026-02-21 18:16:59,577 [34mINFO[0m 127.0.0.1:56264 - "GET /api/onboarding HTTP/1.1" 200
|
||||
2026-02-21 18:16:59,591 [34mINFO[0m 127.0.0.1:56269 - "GET /api/library/agents?page=1&page_size=100 HTTP/1.1" 200
|
||||
2026-02-21 18:16:59,598 [34mINFO[0m 127.0.0.1:56297 - "GET /api/integrations/credentials HTTP/1.1" 200
|
||||
2026-02-21 18:16:59,602 [34mINFO[0m 127.0.0.1:56267 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:16:59,614 [34mINFO[0m 127.0.0.1:56265 - "GET /api/executions HTTP/1.1" 200
|
||||
2026-02-21 18:16:59,672 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:16:59,678 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:16:59,679 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:16:59,699 [34mINFO[0m 127.0.0.1:56265 - "GET /api/chat/sessions?limit=50 HTTP/1.1" 200
|
||||
2026-02-21 18:16:59,988 [34mINFO[0m ('127.0.0.1', 56312) - "WebSocket /ws?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2ODM4MzY2NS1kM2Q5LTQxZjMtYjEwYy1mY2EwZGM2MDgwZWQiLCJhdWQiOiJhdXRoZW50aWNhdGVkIiwiZXhwIjoxNzcxNjczMDI0LCJpYXQiOjE3NzE2Njk0MjQsImVtYWlsIjoidGVzdGVyQGdtYWlsLmNvbSIsInBob25lIjoiIiwiYXBwX21ldGFkYXRhIjp7InByb3ZpZGVyIjoiZW1haWwiLCJwcm92aWRlcnMiOlsiZW1haWwiXX0sInVzZXJfbWV0YWRhdGEiOnsiZW1haWwiOiJ0ZXN0ZXJAZ21haWwuY29tIiwiZW1haWxfdmVyaWZpZWQiOnRydWUsInBob25lX3ZlcmlmaWVkIjpmYWxzZSwic3ViIjoiNjgzODM2NjUtZDNkOS00MWYzLWIxMGMtZmNhMGRjNjA4MGVkIn0sInJvbGUiOiJhZG1pbiIsImFhbCI6ImFhbDEiLCJhbXIiOlt7Im1ldGhvZCI6InBhc3N3b3JkIiwidGltZXN0YW1wIjoxNzcxNTYxNzUwfV0sInNlc3Npb25faWQiOiJiOTVjNmY4OS0yZjk2LTQxYWYtYmU2My00MzhmY2QxZDFmZDIiLCJpc19hbm9ueW1vdXMiOmZhbHNlfQ.L18OrHnbQM6ft-DryeXBsGeDqv3dLOvBH9hsk0y6lvg" [accepted]
|
||||
2026-02-21 18:16:59,990 [34mINFO[0m connection open
|
||||
2026-02-21 18:17:00,670 [34mINFO[0m 127.0.0.1:56264 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:17:01,481 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:01,484 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:17:01,485 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:02,739 [34mINFO[0m 127.0.0.1:56264 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:17:03,157 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:03,161 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:17:03,161 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:04,819 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:04,822 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:17:04,823 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:06,483 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:06,486 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:17:06,487 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:06,793 [34mINFO[0m 127.0.0.1:56264 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:17:08,150 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:08,157 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:17:08,158 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:09,854 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:09,859 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:17:09,860 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:11,530 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:11,536 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:17:11,537 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:13,214 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:13,220 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=False, msg_count=49, last_role=assistant
|
||||
2026-02-21 18:17:13,221 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:13,882 [34mINFO[0m [TIMING] stream_chat_post STARTED, session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, user=68383665-d3d9-41f3-b10c-fca0dc6080ed, message_len=44
|
||||
2026-02-21 18:17:13,886 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:13,886 [34mINFO[0m [TIMING] session validated in 4.1ms
|
||||
2026-02-21 18:17:13,886 [34mINFO[0m [STREAM] Saving user message to session 076672b7-4096-4dc8-a1b5-cf54ce3a4544
|
||||
2026-02-21 18:17:13,888 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=49, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant']
|
||||
2026-02-21 18:17:13,925 [34mINFO[0m Saving 1 new messages to DB for session 076672b7-4096-4dc8-a1b5-cf54ce3a4544: roles=['user'], start_sequence=49
|
||||
2026-02-21 18:17:13,943 [34mINFO[0m [STREAM] User message saved for session 076672b7-4096-4dc8-a1b5-cf54ce3a4544
|
||||
2026-02-21 18:17:13,944 [34mINFO[0m [TIMING] create_task STARTED, task=5972c0b6-496a-4021-af45-bed3739a019c, session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, user=68383665-d3d9-41f3-b10c-fca0dc6080ed
|
||||
2026-02-21 18:17:13,944 [34mINFO[0m [TIMING] get_redis_async took 0.0ms
|
||||
2026-02-21 18:17:13,946 [34mINFO[0m [TIMING] redis.hset took 1.9ms
|
||||
2026-02-21 18:17:13,948 [34mINFO[0m [TIMING] create_task COMPLETED in 4.6ms; task=5972c0b6-496a-4021-af45-bed3739a019c, session=076672b7-4096-4dc8-a1b5-cf54ce3a4544
|
||||
2026-02-21 18:17:13,949 [34mINFO[0m [TIMING] create_task completed in 4.9ms
|
||||
2026-02-21 18:17:13,949 [34mINFO[0m [PID-37119|THREAD-77339275|AgentServer|AsyncRabbitMQ-038bce45-4fad-426e-bc40-d510ea121e9c] Acquiring async connection started...
|
||||
2026-02-21 18:17:13,991 [34mINFO[0m [PID-37119|THREAD-77339275|AgentServer|AsyncRabbitMQ-038bce45-4fad-426e-bc40-d510ea121e9c] Acquiring async connection completed successfully.
|
||||
2026-02-21 18:17:13,998 [34mINFO[0m [TIMING] Task enqueued to RabbitMQ, setup=116.5ms
|
||||
2026-02-21 18:17:13,999 [34mINFO[0m [PID-37090|THREAD-77339279|CoPilotExecutor|Redis-dea3b16f-d4b6-476d-aefe-ca08ff977cda] Acquiring connection started...
|
||||
2026-02-21 18:17:14,000 [34mINFO[0m [TIMING] event_generator STARTED, task=5972c0b6-496a-4021-af45-bed3739a019c, session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, user=68383665-d3d9-41f3-b10c-fca0dc6080ed
|
||||
2026-02-21 18:17:14,000 [34mINFO[0m [TIMING] subscribe_to_task STARTED, task=5972c0b6-496a-4021-af45-bed3739a019c, user=68383665-d3d9-41f3-b10c-fca0dc6080ed, last_msg=0-0
|
||||
2026-02-21 18:17:14,001 [34mINFO[0m [TIMING] Redis hgetall took 1.3ms
|
||||
2026-02-21 18:17:14,008 [34mINFO[0m [PID-37090|THREAD-77339279|CoPilotExecutor|Redis-dea3b16f-d4b6-476d-aefe-ca08ff977cda] Acquiring connection completed successfully.
|
||||
2026-02-21 18:17:14,008 [34mINFO[0m [CoPilotExecutor] Acquired cluster lock for 5972c0b6-496a-4021-af45-bed3739a019c, executor_id=8c5bd745-7588-4a8c-b56c-147c8e1f0a9a
|
||||
2026-02-21 18:17:14,035 [34mINFO[0m [CoPilotExecutor] [CoPilotExecutor] Worker 6436728832 started
|
||||
2026-02-21 18:17:14,036 [34mINFO[0m [CoPilotExecutor|task_id:5972c0b6-496a-4021-af45-bed3739a019c|session_id:076672b7-4096-4dc8-a1b5-cf54ce3a4544|user_id:68383665-d3d9-41f3-b10c-fca0dc6080ed] Starting execution
|
||||
2026-02-21 18:17:14,529 [34mINFO[0m [CoPilotExecutor|task_id:5972c0b6-496a-4021-af45-bed3739a019c|session_id:076672b7-4096-4dc8-a1b5-cf54ce3a4544|user_id:68383665-d3d9-41f3-b10c-fca0dc6080ed] Using SDK service
|
||||
2026-02-21 18:17:14,529 [34mINFO[0m [PID-37090|THREAD-77340595|CoPilotExecutor|AsyncRedis-eacc3079-4510-4295-b35e-50117d4d9c47] Acquiring connection started...
|
||||
2026-02-21 18:17:14,532 [34mINFO[0m [PID-37090|THREAD-77340595|CoPilotExecutor|AsyncRedis-eacc3079-4510-4295-b35e-50117d4d9c47] Acquiring connection completed successfully.
|
||||
2026-02-21 18:17:14,533 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=50, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user']
|
||||
2026-02-21 18:17:14,533 [34mINFO[0m [PID-37090|THREAD-77340595|CoPilotExecutor|AppService client-be99443c-d166-4436-b3a4-e1497e05ee3c] Creating service client started...
|
||||
2026-02-21 18:17:14,534 [34mINFO[0m [PID-37090|THREAD-77340595|CoPilotExecutor|AppService client-be99443c-d166-4436-b3a4-e1497e05ee3c] Creating service client completed successfully.
|
||||
2026-02-21 18:17:14,584 [34mINFO[0m [PID-37115|THREAD-77339703|DatabaseManager|AsyncRedis-2d0d8945-ff52-4b86-9241-3c15c314fe91] Acquiring connection started...
|
||||
2026-02-21 18:17:14,591 [34mINFO[0m [PID-37115|THREAD-77339703|DatabaseManager|AsyncRedis-2d0d8945-ff52-4b86-9241-3c15c314fe91] Acquiring connection completed successfully.
|
||||
2026-02-21 18:17:14,595 [34mINFO[0m [TIMING] Redis xread (replay) took 593.4ms, status=running
|
||||
2026-02-21 18:17:14,595 [34mINFO[0m [TIMING] publish_chunk StreamStart in 2.3ms (xadd=1.6ms)
|
||||
2026-02-21 18:17:14,596 [34mINFO[0m [TIMING] Replayed 1 messages, last_id=1771672634588-0
|
||||
2026-02-21 18:17:14,596 [34mINFO[0m [TIMING] Task still running, starting _stream_listener
|
||||
2026-02-21 18:17:14,597 [34mINFO[0m [TIMING] subscribe_to_task COMPLETED in 596.9ms; task=5972c0b6-496a-4021-af45-bed3739a019c, n_messages_replayed=1
|
||||
2026-02-21 18:17:14,597 [34mINFO[0m [TIMING] Starting to read from subscriber_queue
|
||||
2026-02-21 18:17:14,597 [34mINFO[0m [TIMING] FIRST CHUNK from queue at 0.60s, type=StreamStart
|
||||
2026-02-21 18:17:14,597 [34mINFO[0m 127.0.0.1:56264 - "POST /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544/stream HTTP/1.1" 200
|
||||
2026-02-21 18:17:14,598 [34mINFO[0m [TIMING] _stream_listener STARTED, task=5972c0b6-496a-4021-af45-bed3739a019c, last_id=1771672634588-0
|
||||
2026-02-21 18:17:14,620 [34mINFO[0m Using local workspace storage: default
|
||||
2026-02-21 18:17:14,622 [34mINFO[0m [Transcript] Downloaded 60329B (msg_count=49) for session 076672b7-4096-4dc8-a1b5-cf54ce3a4544
|
||||
2026-02-21 18:17:14,622 [34mINFO[0m [SDK] Transcript available for session 076672b7-4096-4dc8-a1b5-cf54ce3a4544: 60329B, msg_count=49
|
||||
2026-02-21 18:17:14,623 [34mINFO[0m [Transcript] Wrote resume file: /private/tmp/copilot-076672b7-4096-4dc8-a1b5-cf54ce3a4544/transcript-076672b7.jsonl
|
||||
2026-02-21 18:17:14,623 [34mINFO[0m Using bundled Claude Code CLI: /Users/majdyz/Code/AutoGPT/autogpt_platform/backend/.venv/lib/python3.13/site-packages/claude_agent_sdk/_bundled/claude
|
||||
2026-02-21 18:17:16,187 [34mINFO[0m [SDK] [076672b7-409] Sending query — resume=True, total_msgs=50, query_len=44
|
||||
2026-02-21 18:17:16,247 [34mINFO[0m [SDK] [076672b7-409] Received: SystemMessage init (unresolved=0, current=0, resolved=0)
|
||||
2026-02-21 18:17:16,251 [34mINFO[0m [TIMING] xread #1 returned 1 messages in 1652.7ms
|
||||
2026-02-21 18:17:16,252 [34mINFO[0m [TIMING] FIRST live message at 1653.7ms, type=StreamStartStep
|
||||
2026-02-21 18:17:16,327 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=50, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user']
|
||||
2026-02-21 18:17:16,338 [34mINFO[0m [TASK_LOOKUP] Found running task 5972c0b6... for session 076672b7...
|
||||
2026-02-21 18:17:16,344 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=50, last_role=user
|
||||
2026-02-21 18:17:16,347 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:17,775 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=50, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user']
|
||||
2026-02-21 18:17:17,785 [34mINFO[0m [TASK_LOOKUP] Found running task 5972c0b6... for session 076672b7...
|
||||
2026-02-21 18:17:17,788 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=50, last_role=user
|
||||
2026-02-21 18:17:17,790 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:19,240 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=50, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user']
|
||||
2026-02-21 18:17:19,246 [34mINFO[0m [TASK_LOOKUP] Found running task 5972c0b6... for session 076672b7...
|
||||
2026-02-21 18:17:19,249 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=50, last_role=user
|
||||
2026-02-21 18:17:19,249 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:20,739 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=50, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user']
|
||||
2026-02-21 18:17:20,745 [34mINFO[0m [TASK_LOOKUP] Found running task 5972c0b6... for session 076672b7...
|
||||
2026-02-21 18:17:20,746 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=50, last_role=user
|
||||
2026-02-21 18:17:20,747 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:21,482 [34mINFO[0m [SDK] [076672b7-409] Received: AssistantMessage (unresolved=0, current=0, resolved=0)
|
||||
2026-02-21 18:17:21,483 [34mINFO[0m [SDK] [076672b7-409] Flush called but all 0 tool(s) already resolved
|
||||
2026-02-21 18:17:21,483 [34mINFO[0m [SDK] [076672b7-409] Received: AssistantMessage (unresolved=0, current=0, resolved=0)
|
||||
2026-02-21 18:17:21,488 [34mINFO[0m [TIMING] xread #2 returned 1 messages in 5236.1ms
|
||||
2026-02-21 18:17:21,493 [34mINFO[0m [TIMING] create_task STARTED, task=da1290dd-00ea-4517-8519-6147248ca582, session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, user=68383665-d3d9-41f3-b10c-fca0dc6080ed
|
||||
2026-02-21 18:17:21,494 [34mINFO[0m [TIMING] get_redis_async took 0.0ms
|
||||
2026-02-21 18:17:21,494 [34mINFO[0m [SDK] [076672b7-409] Tool event: StreamToolInputAvailable, tool=create_agent
|
||||
2026-02-21 18:17:21,502 [34mINFO[0m [TIMING] redis.hset took 8.7ms
|
||||
2026-02-21 18:17:21,503 [34mINFO[0m [TIMING] xread #3 returned 1 messages in 13.9ms
|
||||
2026-02-21 18:17:21,503 [34mINFO[0m [TIMING] publish_chunk StreamToolInputAvailable in 7.0ms (xadd=6.2ms)
|
||||
2026-02-21 18:17:21,510 [34mINFO[0m [TIMING] create_task COMPLETED in 16.3ms; task=da1290dd-00ea-4517-8519-6147248ca582, session=076672b7-4096-4dc8-a1b5-cf54ce3a4544
|
||||
2026-02-21 18:17:21,534 [34mINFO[0m Saving 2 new messages to DB for session 076672b7-4096-4dc8-a1b5-cf54ce3a4544: roles=['assistant', 'tool'], start_sequence=50
|
||||
2026-02-21 18:17:21,567 [34mINFO[0m [SDK] [076672b7-409] Received: AssistantMessage (unresolved=1, current=1, resolved=0)
|
||||
2026-02-21 18:17:21,580 [34mINFO[0m [SDK] Long-running tool create_agent delegated to background (operation_id=30fadafe-736e-4617-8f3f-3d43d0af1f9c, task_id=da1290dd-00ea-4517-8519-6147248ca582)
|
||||
2026-02-21 18:17:21,584 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=52, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool']
|
||||
2026-02-21 18:17:21,585 [34mINFO[0m Tracking tool call: tool=create_agent, user=68383665-d3d9-41f3-b10c-fca0dc6080ed, session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, call_id=sdk-773318e84892
|
||||
2026-02-21 18:17:21,585 [34mINFO[0m PostHog client not available for tool tracking
|
||||
2026-02-21 18:17:21,586 [34mINFO[0m [SDK] PostToolUse: mcp__copilot__create_agent (builtin=False, tool_use_id=toolu_vrtx_0)
|
||||
2026-02-21 18:17:21,587 [34mINFO[0m [SDK] [076672b7-409] Received: UserMessage (unresolved=1, current=1, resolved=0)
|
||||
2026-02-21 18:17:21,587 [34mINFO[0m [SDK] [076672b7-409] UserMessage: 1 blocks, content_type=list, parent_tool_use_id=None
|
||||
2026-02-21 18:17:21,587 [34mINFO[0m [SDK] [076672b7-409] Tool event: StreamToolOutputAvailable, tool=create_agent, output_len=274
|
||||
2026-02-21 18:17:21,589 [34mINFO[0m [TIMING] xread #4 returned 1 messages in 85.8ms
|
||||
2026-02-21 18:17:21,591 [34mINFO[0m [TIMING] publish_chunk StreamToolOutputAvailable in 3.8ms (xadd=1.6ms)
|
||||
2026-02-21 18:17:21,634 [34mINFO[0m Saving 1 new messages to DB for session 076672b7-4096-4dc8-a1b5-cf54ce3a4544: roles=['tool'], start_sequence=52
|
||||
2026-02-21 18:17:21,653 [34mINFO[0m [TIMING] xread #5 returned 1 messages in 62.8ms
|
||||
2026-02-21 18:17:21,847 [34mINFO[0m Generated embedding: 1536 dims, 42 tokens, 241ms
|
||||
2026-02-21 18:17:21,971 [34mINFO[0m Hybrid search (store agents): 10 results, 22 total
|
||||
2026-02-21 18:17:22,812 [34mINFO[0m Registered 1 custom costs for block FirecrawlExtractBlock
|
||||
2026-02-21 18:17:23,236 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=53, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool']
|
||||
2026-02-21 18:17:23,242 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:23,243 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=53, last_role=tool
|
||||
2026-02-21 18:17:23,244 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:24,734 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=53, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool']
|
||||
2026-02-21 18:17:24,736 [34mINFO[0m Successfully patched IntegrationCredentialsStore.get_all_creds
|
||||
2026-02-21 18:17:24,746 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:24,751 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=53, last_role=tool
|
||||
2026-02-21 18:17:24,752 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:25,046 [34mINFO[0m Calling external Agent Generator service for decompose_goal
|
||||
2026-02-21 18:17:25,664 [34mINFO[0m [SDK] [076672b7-409] Received: AssistantMessage (unresolved=0, current=1, resolved=1)
|
||||
2026-02-21 18:17:25,664 [34mINFO[0m [SDK] [076672b7-409] Flush called but all 1 tool(s) already resolved
|
||||
2026-02-21 18:17:25,672 [34mINFO[0m [SDK] Stop hook: transcript_path=/Users/majdyz/.claude/projects/-private-tmp-copilot-076672b7-4096-4dc8-a1b5-cf54ce3a4544/c31b248d-c555-4186-b908-b79ff4a7ea77.jsonl, sdk_session_id=c31b248d-c55...
|
||||
2026-02-21 18:17:25,673 [34mINFO[0m [Transcript] Read 62 lines, 66697 bytes from /Users/majdyz/.claude/projects/-private-tmp-copilot-076672b7-4096-4dc8-a1b5-cf54ce3a4544/c31b248d-c555-4186-b908-b79ff4a7ea77.jsonl
|
||||
2026-02-21 18:17:25,674 [34mINFO[0m [SDK] Stop hook: captured 66697B from /Users/majdyz/.claude/projects/-private-tmp-copilot-076672b7-4096-4dc8-a1b5-cf54ce3a4544/c31b248d-c555-4186-b908-b79ff4a7ea77.jsonl
|
||||
2026-02-21 18:17:25,676 [34mINFO[0m [TIMING] xread #6 returned 1 messages in 4023.4ms
|
||||
2026-02-21 18:17:25,678 [34mINFO[0m [TIMING] publish_chunk StreamTextStart in 2.2ms (xadd=1.1ms)
|
||||
2026-02-21 18:17:25,679 [34mINFO[0m [TIMING] xread #7 returned 1 messages in 1.8ms
|
||||
2026-02-21 18:17:25,681 [34mINFO[0m [SDK] [076672b7-409] Received: ResultMessage success (unresolved=0, current=1, resolved=1)
|
||||
2026-02-21 18:17:25,681 [34mINFO[0m [TIMING] xread #8 returned 1 messages in 1.8ms
|
||||
2026-02-21 18:17:25,681 [34mINFO[0m [SDK] [076672b7-409] Flush called but all 1 tool(s) already resolved
|
||||
2026-02-21 18:17:25,683 [34mINFO[0m [TIMING] xread #9 returned 1 messages in 1.3ms
|
||||
2026-02-21 18:17:25,684 [34mINFO[0m [TIMING] publish_chunk StreamTextEnd in 2.3ms (xadd=1.2ms)
|
||||
2026-02-21 18:17:25,685 [34mINFO[0m [TIMING] xread #10 returned 1 messages in 1.9ms
|
||||
2026-02-21 18:17:25,687 [34mINFO[0m [TIMING] xread #11 returned 1 messages in 1.4ms
|
||||
2026-02-21 18:17:25,687 [34mINFO[0m [TIMING] StreamFinish received in 11.1s; delivered=11
|
||||
2026-02-21 18:17:25,687 [34mINFO[0m [TIMING] _stream_listener FINISHED in 11.1s; task=5972c0b6-496a-4021-af45-bed3739a019c, delivered=11, xread_count=11
|
||||
2026-02-21 18:17:25,687 [34mINFO[0m [TIMING] publish_chunk StreamFinish in 1.5ms (xadd=0.9ms)
|
||||
2026-02-21 18:17:25,687 [34mINFO[0m [TIMING] StreamFinish received in 11.69s; n_chunks=12
|
||||
2026-02-21 18:17:25,688 [34mINFO[0m [TIMING] event_generator FINISHED in 11.69s; task=5972c0b6-496a-4021-af45-bed3739a019c, session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, n_chunks=12
|
||||
2026-02-21 18:17:25,695 [34mINFO[0m [Transcript] Read 53 lines, 60329 bytes from /private/tmp/copilot-076672b7-4096-4dc8-a1b5-cf54ce3a4544/transcript-076672b7.jsonl
|
||||
2026-02-21 18:17:25,708 [34mINFO[0m [Transcript] Skipping upload — existing (60329B) >= new (60329B) for session 076672b7-4096-4dc8-a1b5-cf54ce3a4544
|
||||
2026-02-21 18:17:25,735 [34mINFO[0m Saving 1 new messages to DB for session 076672b7-4096-4dc8-a1b5-cf54ce3a4544: roles=['assistant'], start_sequence=53
|
||||
2026-02-21 18:17:25,758 [34mINFO[0m [SDK] [076672b7-409] Session saved with 54 messages
|
||||
2026-02-21 18:17:25,772 [34mINFO[0m [Transcript] Uploaded 66442B (stripped from 66697B, msg_count=54) for session 076672b7-4096-4dc8-a1b5-cf54ce3a4544
|
||||
2026-02-21 18:17:25,779 [34mINFO[0m [TIMING] publish_chunk StreamFinish in 1.4ms (xadd=0.7ms)
|
||||
2026-02-21 18:17:25,779 [34mINFO[0m [CoPilotExecutor|task_id:5972c0b6-496a-4021-af45-bed3739a019c|session_id:076672b7-4096-4dc8-a1b5-cf54ce3a4544|user_id:68383665-d3d9-41f3-b10c-fca0dc6080ed] Task completed successfully
|
||||
2026-02-21 18:17:25,780 [34mINFO[0m [CoPilotExecutor|task_id:5972c0b6-496a-4021-af45-bed3739a019c|session_id:076672b7-4096-4dc8-a1b5-cf54ce3a4544|user_id:68383665-d3d9-41f3-b10c-fca0dc6080ed] Execution completed in 11.74s
|
||||
2026-02-21 18:17:25,780 [34mINFO[0m [CoPilotExecutor] Run completed for 5972c0b6-496a-4021-af45-bed3739a019c
|
||||
2026-02-21 18:17:25,780 [34mINFO[0m [CoPilotExecutor] Releasing cluster lock for 5972c0b6-496a-4021-af45-bed3739a019c
|
||||
2026-02-21 18:17:25,783 [34mINFO[0m [CoPilotExecutor] Cleaned up completed task 5972c0b6-496a-4021-af45-bed3739a019c
|
||||
2026-02-21 18:17:25,943 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:25,950 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:25,953 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:25,954 [34mINFO[0m 127.0.0.1:56264 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:26,014 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:26,016 [34mINFO[0m [TIMING] subscribe_to_task STARTED, task=da1290dd-00ea-4517-8519-6147248ca582, user=68383665-d3d9-41f3-b10c-fca0dc6080ed, last_msg=0-0
|
||||
2026-02-21 18:17:26,018 [34mINFO[0m [TIMING] Redis hgetall took 1.6ms
|
||||
2026-02-21 18:17:27,433 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:27,436 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:27,436 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:27,437 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:28,937 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:28,942 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:28,944 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:28,944 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:30,501 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:30,506 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:30,507 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:30,508 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:31,971 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:31,980 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:31,985 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:31,987 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:33,575 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:33,588 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:33,593 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:33,597 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:34,957 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:34,961 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:34,962 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:34,963 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:36,438 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:36,443 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:36,445 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:36,445 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:37,152 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:37,175 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:37,180 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:37,181 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:37,787 [34mINFO[0m 127.0.0.1:56427 - "GET /api/integrations/providers/system HTTP/1.1" 200
|
||||
2026-02-21 18:17:37,830 [34mINFO[0m 127.0.0.1:56427 - "GET /api/integrations/providers HTTP/1.1" 200
|
||||
2026-02-21 18:17:38,097 [34mINFO[0m 127.0.0.1:56427 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:17:38,114 [34mINFO[0m 127.0.0.1:56471 - "GET /api/executions HTTP/1.1" 200
|
||||
2026-02-21 18:17:38,118 [34mINFO[0m 127.0.0.1:56479 - "GET /api/integrations/credentials HTTP/1.1" 200
|
||||
2026-02-21 18:17:38,132 [34mINFO[0m 127.0.0.1:56477 - "GET /api/library/agents?page=1&page_size=100 HTTP/1.1" 200
|
||||
2026-02-21 18:17:38,149 [34mINFO[0m 127.0.0.1:56427 - "GET /api/onboarding HTTP/1.1" 200
|
||||
2026-02-21 18:17:38,206 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:38,214 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:38,216 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:38,218 [34mINFO[0m 127.0.0.1:56427 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:38,244 [34mINFO[0m 127.0.0.1:56471 - "GET /api/chat/sessions?limit=50 HTTP/1.1" 200
|
||||
2026-02-21 18:17:38,472 [34mINFO[0m ('127.0.0.1', 56484) - "WebSocket /ws?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2ODM4MzY2NS1kM2Q5LTQxZjMtYjEwYy1mY2EwZGM2MDgwZWQiLCJhdWQiOiJhdXRoZW50aWNhdGVkIiwiZXhwIjoxNzcxNjczMDI0LCJpYXQiOjE3NzE2Njk0MjQsImVtYWlsIjoidGVzdGVyQGdtYWlsLmNvbSIsInBob25lIjoiIiwiYXBwX21ldGFkYXRhIjp7InByb3ZpZGVyIjoiZW1haWwiLCJwcm92aWRlcnMiOlsiZW1haWwiXX0sInVzZXJfbWV0YWRhdGEiOnsiZW1haWwiOiJ0ZXN0ZXJAZ21haWwuY29tIiwiZW1haWxfdmVyaWZpZWQiOnRydWUsInBob25lX3ZlcmlmaWVkIjpmYWxzZSwic3ViIjoiNjgzODM2NjUtZDNkOS00MWYzLWIxMGMtZmNhMGRjNjA4MGVkIn0sInJvbGUiOiJhZG1pbiIsImFhbCI6ImFhbDEiLCJhbXIiOlt7Im1ldGhvZCI6InBhc3N3b3JkIiwidGltZXN0YW1wIjoxNzcxNTYxNzUwfV0sInNlc3Npb25faWQiOiJiOTVjNmY4OS0yZjk2LTQxYWYtYmU2My00MzhmY2QxZDFmZDIiLCJpc19hbm9ueW1vdXMiOmZhbHNlfQ.L18OrHnbQM6ft-DryeXBsGeDqv3dLOvBH9hsk0y6lvg" [accepted]
|
||||
2026-02-21 18:17:38,474 [34mINFO[0m connection open
|
||||
2026-02-21 18:17:38,519 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:38,521 [34mINFO[0m [TIMING] subscribe_to_task STARTED, task=da1290dd-00ea-4517-8519-6147248ca582, user=68383665-d3d9-41f3-b10c-fca0dc6080ed, last_msg=0-0
|
||||
2026-02-21 18:17:38,524 [34mINFO[0m [TIMING] Redis hgetall took 2.4ms
|
||||
2026-02-21 18:17:39,159 [34mINFO[0m 127.0.0.1:56471 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:17:39,924 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:39,928 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:39,929 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:39,930 [34mINFO[0m 127.0.0.1:56471 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:41,222 [34mINFO[0m 127.0.0.1:56471 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:17:41,442 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:41,451 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:41,452 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:41,453 [34mINFO[0m 127.0.0.1:56471 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:42,970 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:42,974 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:42,976 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:42,978 [34mINFO[0m 127.0.0.1:56471 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:43,753 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:43,760 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:43,764 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:43,767 [34mINFO[0m 127.0.0.1:56471 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:44,279 [34mINFO[0m 127.0.0.1:56471 - "GET /api/integrations/providers/system HTTP/1.1" 200
|
||||
2026-02-21 18:17:44,298 [34mINFO[0m 127.0.0.1:56471 - "GET /api/integrations/providers HTTP/1.1" 200
|
||||
2026-02-21 18:17:44,610 [34mINFO[0m 127.0.0.1:56471 - "GET /api/onboarding HTTP/1.1" 200
|
||||
2026-02-21 18:17:44,649 [34mINFO[0m 127.0.0.1:56502 - "GET /api/library/agents?page=1&page_size=100 HTTP/1.1" 200
|
||||
2026-02-21 18:17:44,653 [34mINFO[0m 127.0.0.1:56504 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:17:44,658 [34mINFO[0m 127.0.0.1:56507 - "GET /api/integrations/credentials HTTP/1.1" 200
|
||||
2026-02-21 18:17:44,667 [34mINFO[0m 127.0.0.1:56500 - "GET /api/executions HTTP/1.1" 200
|
||||
2026-02-21 18:17:44,774 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:44,782 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:44,784 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:44,786 [34mINFO[0m 127.0.0.1:56471 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:44,797 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions?limit=50 HTTP/1.1" 200
|
||||
2026-02-21 18:17:45,006 [34mINFO[0m ('127.0.0.1', 56514) - "WebSocket /ws?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2ODM4MzY2NS1kM2Q5LTQxZjMtYjEwYy1mY2EwZGM2MDgwZWQiLCJhdWQiOiJhdXRoZW50aWNhdGVkIiwiZXhwIjoxNzcxNjczMDI0LCJpYXQiOjE3NzE2Njk0MjQsImVtYWlsIjoidGVzdGVyQGdtYWlsLmNvbSIsInBob25lIjoiIiwiYXBwX21ldGFkYXRhIjp7InByb3ZpZGVyIjoiZW1haWwiLCJwcm92aWRlcnMiOlsiZW1haWwiXX0sInVzZXJfbWV0YWRhdGEiOnsiZW1haWwiOiJ0ZXN0ZXJAZ21haWwuY29tIiwiZW1haWxfdmVyaWZpZWQiOnRydWUsInBob25lX3ZlcmlmaWVkIjpmYWxzZSwic3ViIjoiNjgzODM2NjUtZDNkOS00MWYzLWIxMGMtZmNhMGRjNjA4MGVkIn0sInJvbGUiOiJhZG1pbiIsImFhbCI6ImFhbDEiLCJhbXIiOlt7Im1ldGhvZCI6InBhc3N3b3JkIiwidGltZXN0YW1wIjoxNzcxNTYxNzUwfV0sInNlc3Npb25faWQiOiJiOTVjNmY4OS0yZjk2LTQxYWYtYmU2My00MzhmY2QxZDFmZDIiLCJpc19hbm9ueW1vdXMiOmZhbHNlfQ.L18OrHnbQM6ft-DryeXBsGeDqv3dLOvBH9hsk0y6lvg" [accepted]
|
||||
2026-02-21 18:17:45,010 [34mINFO[0m connection open
|
||||
2026-02-21 18:17:45,052 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:45,054 [34mINFO[0m [TIMING] subscribe_to_task STARTED, task=da1290dd-00ea-4517-8519-6147248ca582, user=68383665-d3d9-41f3-b10c-fca0dc6080ed, last_msg=0-0
|
||||
2026-02-21 18:17:45,056 [34mINFO[0m [TIMING] Redis hgetall took 1.6ms
|
||||
2026-02-21 18:17:45,704 [34mINFO[0m 127.0.0.1:56500 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:17:46,482 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:46,488 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:46,491 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:46,493 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:47,771 [34mINFO[0m 127.0.0.1:56500 - "GET /api/store/profile HTTP/1.1" 404
|
||||
2026-02-21 18:17:47,941 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:47,944 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:47,945 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:47,946 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:49,457 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:49,462 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:49,463 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:49,463 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:51,605 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:51,609 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:51,611 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:51,611 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:52,618 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:52,625 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:52,627 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:52,629 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:54,617 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:54,624 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:54,635 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:54,635 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:55,621 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:55,626 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:55,627 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:55,627 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:17:57,680 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:57,685 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:57,707 [34mINFO[0m [CANCEL] Published cancel for task ...248ca582 session ...ce3a4544
|
||||
2026-02-21 18:17:59,612 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:17:59,617 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:17:59,618 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:17:59,619 [34mINFO[0m 127.0.0.1:56528 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:18:01,625 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:18:01,629 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:18:01,630 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:18:01,631 [34mINFO[0m 127.0.0.1:56528 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:18:02,611 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:18:02,615 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:18:02,616 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:18:02,617 [34mINFO[0m 127.0.0.1:56528 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:18:02,742 [34mINFO[0m 127.0.0.1:56500 - "POST /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544/cancel HTTP/1.1" 200
|
||||
2026-02-21 18:18:04,612 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:18:04,616 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:18:04,617 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:18:04,618 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:18:05,614 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:18:05,619 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:18:05,621 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:18:05,621 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:18:07,639 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:18:07,645 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:18:07,648 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:18:07,652 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:18:08,610 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:18:08,613 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:18:08,614 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:18:08,615 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:18:10,619 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:18:10,625 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:18:10,626 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:18:10,627 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
2026-02-21 18:18:11,621 [34mINFO[0m Loading session 076672b7-4096-4dc8-a1b5-cf54ce3a4544 from cache: message_count=54, roles=['user', 'assistant', 'tool', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'user', 'user', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'user', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant', 'tool', 'assistant', 'user', 'assistant', 'tool', 'tool', 'assistant']
|
||||
2026-02-21 18:18:11,626 [34mINFO[0m [TASK_LOOKUP] Found running task da1290dd... for session 076672b7...
|
||||
2026-02-21 18:18:11,628 [34mINFO[0m [GET_SESSION] session=076672b7-4096-4dc8-a1b5-cf54ce3a4544, active_task=True, msg_count=54, last_role=assistant
|
||||
2026-02-21 18:18:11,628 [34mINFO[0m 127.0.0.1:56500 - "GET /api/chat/sessions/076672b7-4096-4dc8-a1b5-cf54ce3a4544 HTTP/1.1" 200
|
||||
Reference in New Issue
Block a user