Refactor agent API structure and add core functionality with FastAPI integration

This commit is contained in:
2026-05-10 13:09:58 +02:00
parent 58250d22a3
commit 4c758f7733
10 changed files with 63 additions and 51 deletions
+7
View File
@@ -0,0 +1,7 @@
from openai import OpenAI
from .config import DEEPSEEK_API_KEY
client = OpenAI(
api_key=DEEPSEEK_API_KEY,
base_url="https://api.deepseek.com"
)