Feat/tool based coordinator routing (#5)

Co-authored-by: Michael <michael@example.com>
Reviewed-on: #5
This commit is contained in:
2026-06-29 21:17:42 +02:00
parent e38a80532b
commit 7f66d09d9e
10 changed files with 301 additions and 87 deletions
+2 -1
View File
@@ -2,6 +2,7 @@ import asyncio
import os
import time
import logging
from logging.handlers import RotatingFileHandler
from pathlib import Path
from dotenv import load_dotenv
@@ -33,7 +34,7 @@ class JSONFormatter(logging.Formatter):
return json.dumps(log_data)
file_handler = logging.FileHandler(LOG_FILE)
file_handler = RotatingFileHandler(LOG_FILE, maxBytes=5 * 1024 * 1024, backupCount=5)
file_handler.setFormatter(JSONFormatter())
stream_handler = logging.StreamHandler()