OpenAI Swarm implementation of an AI agent swarm to manage a SQL database

This commit is contained in:
Cole Medin
2024-10-16 16:16:41 -05:00
parent 0a6d1f430d
commit 0fa98dbdee
7 changed files with 396 additions and 1 deletions

5
sql-ai-agent/run.py Normal file
View File

@@ -0,0 +1,5 @@
from swarm.repl import run_demo_loop
from sql_agents import sql_router_agent
if __name__ == "__main__":
run_demo_loop(sql_router_agent)