├── README.md ├── __init__.py ├── ai.py ├── db.py ├── flows ├── AskAIV2.json └── Macro Flow.json ├── form_submit.py ├── main.py ├── profiles.py ├── prompts ├── conditional_router.txt ├── general_agent.txt ├── macro.txt └── tool_calling_agent.txt └── sample.env /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/ai.py -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/db.py -------------------------------------------------------------------------------- /flows/AskAIV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/flows/AskAIV2.json -------------------------------------------------------------------------------- /flows/Macro Flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/flows/Macro Flow.json -------------------------------------------------------------------------------- /form_submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/form_submit.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/main.py -------------------------------------------------------------------------------- /profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/profiles.py -------------------------------------------------------------------------------- /prompts/conditional_router.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/prompts/conditional_router.txt -------------------------------------------------------------------------------- /prompts/general_agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/prompts/general_agent.txt -------------------------------------------------------------------------------- /prompts/macro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/prompts/macro.txt -------------------------------------------------------------------------------- /prompts/tool_calling_agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/prompts/tool_calling_agent.txt -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Advanced-Multi-Agent-Workout-App/HEAD/sample.env --------------------------------------------------------------------------------