gitextract_79z3ryl8/ ├── .gitignore ├── README.md ├── client/ │ ├── .gitignore │ ├── app/ │ │ ├── agents/ │ │ │ ├── [agent_id]/ │ │ │ │ ├── [conversation_id]/ │ │ │ │ │ └── page.js │ │ │ │ ├── page.js │ │ │ │ └── profile/ │ │ │ │ └── page.js │ │ │ ├── create/ │ │ │ │ └── page.js │ │ │ ├── edit/ │ │ │ │ └── [id]/ │ │ │ │ └── page.js │ │ │ ├── loading.js │ │ │ └── page.js │ │ ├── globals.css │ │ ├── layout.js │ │ └── page.js │ ├── components/ │ │ └── AgentClientWrapper.js │ ├── context/ │ │ └── fetchAgentData.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package.json │ └── postcss.config.mjs ├── package.json ├── packages/ │ └── agents/ │ ├── .gitignore │ ├── README.md │ ├── THEME_SETUP.md │ ├── babel.config.json │ ├── package.json │ ├── postcss.config.js │ ├── src/ │ │ ├── AgentProfile.jsx │ │ ├── AiAgent.jsx │ │ ├── CreatePage.jsx │ │ ├── EditPage.jsx │ │ ├── components/ │ │ │ ├── AgentThemeProvider.jsx │ │ │ ├── CreateAgent.jsx │ │ │ ├── EditAgent.jsx │ │ │ ├── ProfileAgent.jsx │ │ │ └── themes.jsx │ │ ├── index.js │ │ ├── tailwind.css │ │ └── utils/ │ │ └── server.js │ └── tailwind.config.js └── server/ ├── .gitignore ├── app/ │ ├── main.py │ ├── routers/ │ │ ├── __init__.py │ │ └── agent_proxy.py │ └── utils/ │ └── agent_helper.py └── requirements.txt