add: agent template/prompt/tools

This commit is contained in:
h z
2025-05-26 14:41:54 +01:00
parent f96707629f
commit 0167436e52
15 changed files with 383 additions and 56 deletions

6
app.py
View File

@@ -2,11 +2,11 @@ import threading
from mcp_service import start_mcp
from api_service import start_api
from utils.db_connections import init_db
if __name__ == '__main__':
init_db()
t_mcp = threading.Thread(target=start_mcp, daemon=True)
t_api = threading.Thread(target=start_api, daemon=True)
t_mcp.start()