Loading AI_agent/Dockerfile→ai_agent/Dockerfile +2 −2 Original line number Diff line number Diff line Loading @@ -16,6 +16,6 @@ RUN pip install --no-cache-dir \ --trusted-host files.pythonhosted.org \ -r requirements.txt COPY . /app/AI_agent COPY . /app/ai_agent CMD ["python", "-m", "AI_agent.app"] CMD ["python", "-m", "ai_agent.app"] AI_agent/README.md→ai_agent/README.md +4 −4 Original line number Diff line number Diff line Loading @@ -7,7 +7,7 @@ This repository contains a lightweight **[`Quart`](https://quart.palletsprojects ## 📁 Project Structure ``` AI_agent/ ai_agent/ ├── sub_agents/ # AI sub-agent implementations ├── routes/ # API route definitions │ ├── groq.py # Groq-related endpoints Loading Loading @@ -57,7 +57,7 @@ GROQ_MODEL_NAME=qwen/qwen3-32b ``` git clone <your-repo-url> cd AI_agent cd ai_agent ``` ### 2. Create a Virtual Environment (Recommended) Loading @@ -76,7 +76,7 @@ pip install -r requirements.txt ### 4. Configure Environment Variables Create a `.env` file in the root of `AI_agent/` and populate it as shown above. Create a `.env` file in the root of `ai_agent/` and populate it as shown above. ### Option 2 - Containerized Build the Docker Image Loading Loading @@ -138,7 +138,7 @@ To add new functionality: Example: ``` from AI_agent.routes.my_agent import register_my_agent_routes from ai_agent.routes.my_agent import register_my_agent_routes register_my_agent_routes(app) ``` Loading AI_agent/app.py→ai_agent/app.py +2 −2 Original line number Diff line number Diff line Loading @@ -4,8 +4,8 @@ from quart import Quart from quart_cors import cors from dotenv import load_dotenv from AI_agent.routes.groq import register_groq_routes from AI_agent.routes.debug import register_debug_routes from ai_agent.routes.groq import register_groq_routes from ai_agent.routes.debug import register_debug_routes load_dotenv() Loading AI_agent/requirements.txt→ai_agent/requirements.txt +0 −0 File moved. View file AI_agent/routes/debug.py→ai_agent/routes/debug.py +0 −0 File moved. View file Loading
AI_agent/Dockerfile→ai_agent/Dockerfile +2 −2 Original line number Diff line number Diff line Loading @@ -16,6 +16,6 @@ RUN pip install --no-cache-dir \ --trusted-host files.pythonhosted.org \ -r requirements.txt COPY . /app/AI_agent COPY . /app/ai_agent CMD ["python", "-m", "AI_agent.app"] CMD ["python", "-m", "ai_agent.app"]
AI_agent/README.md→ai_agent/README.md +4 −4 Original line number Diff line number Diff line Loading @@ -7,7 +7,7 @@ This repository contains a lightweight **[`Quart`](https://quart.palletsprojects ## 📁 Project Structure ``` AI_agent/ ai_agent/ ├── sub_agents/ # AI sub-agent implementations ├── routes/ # API route definitions │ ├── groq.py # Groq-related endpoints Loading Loading @@ -57,7 +57,7 @@ GROQ_MODEL_NAME=qwen/qwen3-32b ``` git clone <your-repo-url> cd AI_agent cd ai_agent ``` ### 2. Create a Virtual Environment (Recommended) Loading @@ -76,7 +76,7 @@ pip install -r requirements.txt ### 4. Configure Environment Variables Create a `.env` file in the root of `AI_agent/` and populate it as shown above. Create a `.env` file in the root of `ai_agent/` and populate it as shown above. ### Option 2 - Containerized Build the Docker Image Loading Loading @@ -138,7 +138,7 @@ To add new functionality: Example: ``` from AI_agent.routes.my_agent import register_my_agent_routes from ai_agent.routes.my_agent import register_my_agent_routes register_my_agent_routes(app) ``` Loading
AI_agent/app.py→ai_agent/app.py +2 −2 Original line number Diff line number Diff line Loading @@ -4,8 +4,8 @@ from quart import Quart from quart_cors import cors from dotenv import load_dotenv from AI_agent.routes.groq import register_groq_routes from AI_agent.routes.debug import register_debug_routes from ai_agent.routes.groq import register_groq_routes from ai_agent.routes.debug import register_debug_routes load_dotenv() Loading