added seerr beginning tools
Build and Push Agent API / build (push) Successful in 15s

This commit is contained in:
2026-05-11 20:38:29 +02:00
parent 2ee33b50eb
commit d943d4bd31
11 changed files with 879 additions and 67 deletions
+11
View File
@@ -1,3 +1,5 @@
import logging
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
@@ -5,6 +7,15 @@ from api.v1.chat import router as v1_router
from core.config import DEEPSEEK_API_KEY
from core.llm import create_client
# ---------------------------------------------------------------------------
# Logging — tool calls will appear in the uvicorn console
# ---------------------------------------------------------------------------
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(name)s] %(levelname)s: %(message)s",
datefmt="%H:%M:%S",
)
# ---------------------------------------------------------------------------
# Load all agents & skills so they self-register at startup
# ---------------------------------------------------------------------------