Commit d4213d2a authored by Kostas Chartsias's avatar Kostas Chartsias
Browse files

compliance to PEP 8, PEP 423 and minor bug fix

parent b0b8573d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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"]
+4 −4
Original line number Diff line number Diff line
@@ -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
@@ -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)
@@ -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
@@ -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)
```

+2 −2
Original line number Diff line number Diff line
@@ -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()

+0 −0

File moved.

Loading