Spaces:
Build error
Build error
File size: 10,867 Bytes
09fa60b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | # AudioForge Agent Architecture
## Problem Statement
Python 3.13 compatibility issues with ML libraries (PyTorch, AudioCraft, xformers) that only support Python 3.11/3.12.
## Solution: Microservices Agent Architecture
Instead of monolithic deployment, separate concerns into independent agents.
## Architecture Overview
```
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Client (Browser) β
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Frontend (Next.js - Port 3000) β
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Main API Service (FastAPI - Python 3.13) β
β - User management, authentication β
β - Database operations (PostgreSQL) β
β - Job orchestration β
β - WebSocket for real-time updates β
β Port: 8001 β
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Message Queue (Redis/Celery) β
β - Task distribution β
β - Job status tracking β
β - Result aggregation β
βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββΌββββββββββββββ¬ββββββββββββββ
βΌ βΌ βΌ βΌ
ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ
β Music Agent β β Vocal Agent β β Mixing Agent β β Master Agent β
β Python 3.11 β β Python 3.11 β β Python 3.11 β β Python 3.11 β
β Port: 8002 β β Port: 8003 β β Port: 8004 β β Port: 8005 β
β β β β β β β β
β - MusicGen β β - Bark β β - Demucs β β - Mastering β
β - AudioCraft β β - RVC β β - Mixing β β - Effects β
β - Encodec β β - TTS β β - Stems β β - Normalize β
ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ
```
## Benefits
### 1. **Dependency Isolation**
- Each agent has its own Python version
- No version conflicts between packages
- Easy to update individual components
### 2. **Scalability**
- Scale agents independently based on load
- Music generation heavy? Spin up more music agents
- Horizontal scaling per service
### 3. **Fault Tolerance**
- If one agent crashes, others continue working
- Retry failed tasks automatically
- Graceful degradation
### 4. **Development Velocity**
- Teams can work on different agents independently
- Deploy agents separately
- Test in isolation
### 5. **Resource Optimization**
- GPU allocation per agent type
- CPU-only agents for lightweight tasks
- Memory limits per service
## Implementation Plan
### Phase 1: Create Agent Services (Week 1)
1. **Music Generation Agent** (`agents/music/`)
- Python 3.11 environment
- FastAPI service on port 8002
- Endpoints: `/generate`, `/status`, `/health`
- Dependencies: torch, audiocraft, transformers
2. **Vocal Generation Agent** (`agents/vocal/`)
- Python 3.11 environment
- FastAPI service on port 8003
- Endpoints: `/generate`, `/status`, `/health`
- Dependencies: bark, RVC, TTS libraries
3. **Post-Processing Agent** (`agents/processing/`)
- Python 3.11 environment
- FastAPI service on port 8004
- Endpoints: `/mix`, `/separate`, `/master`, `/health`
- Dependencies: demucs, librosa, pydub
### Phase 2: Update Main API (Week 1-2)
1. **Orchestrator Service** (`backend/app/services/orchestrator.py`)
- Manages workflow across agents
- Handles task distribution
- Aggregates results
- Error handling and retries
2. **Agent Communication** (`backend/app/clients/`)
- HTTP clients for each agent
- Async/await for non-blocking calls
- Circuit breaker pattern
- Health checks
### Phase 3: Message Queue Integration (Week 2)
1. **Celery Tasks** (`backend/app/tasks/`)
- Background job processing
- Task routing to appropriate agents
- Result callbacks
- Progress tracking
2. **Redis Integration**
- Job queue management
- Status updates
- Caching
- Pub/Sub for real-time updates
### Phase 4: Docker Compose (Week 2-3)
```yaml
version: '3.8'
services:
# Main API - Python 3.13
api:
build: ./backend
ports: ["8001:8001"]
depends_on: [postgres, redis]
# Music Agent - Python 3.11
music-agent:
build: ./agents/music
ports: ["8002:8002"]
environment:
- PYTHON_VERSION=3.11
- TORCH_VERSION=2.1.0
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
# Vocal Agent - Python 3.11
vocal-agent:
build: ./agents/vocal
ports: ["8003:8003"]
# Processing Agent - Python 3.11
processing-agent:
build: ./agents/processing
ports: ["8004:8004"]
# Infrastructure
postgres:
image: postgres:16-alpine
redis:
image: redis:7-alpine
# Celery Workers
celery-worker:
build: ./backend
command: celery -A app.tasks worker --loglevel=info
depends_on: [redis]
```
## API Contract Example
### Main API β Music Agent
**Request:**
```json
POST http://localhost:8002/generate
{
"prompt": "Epic orchestral soundtrack",
"duration": 30,
"model": "facebook/musicgen-medium",
"temperature": 1.0,
"top_k": 250,
"callback_url": "http://api:8001/callbacks/generation/123"
}
```
**Response:**
```json
{
"task_id": "music_gen_abc123",
"status": "processing",
"estimated_time": 45
}
```
**Callback (when complete):**
```json
POST http://api:8001/callbacks/generation/123
{
"task_id": "music_gen_abc123",
"status": "completed",
"audio_path": "/storage/audio/music/abc123.wav",
"metadata": {
"duration": 30.5,
"sample_rate": 32000,
"model": "facebook/musicgen-medium"
}
}
```
## Migration Path
### Option A: Gradual Migration (Recommended)
1. Keep existing monolithic service running
2. Deploy music agent alongside
3. Route new requests to agent
4. Monitor and validate
5. Migrate other services one by one
6. Deprecate monolithic service
### Option B: Big Bang Migration
1. Build all agents
2. Test thoroughly in staging
3. Switch over in one deployment
4. Higher risk, faster completion
## Monitoring & Observability
### Metrics to Track
- Request latency per agent
- Success/failure rates
- Queue depth
- Agent health status
- Resource utilization (CPU/GPU/Memory)
- Generation time per model
### Tools
- Prometheus for metrics
- Grafana for dashboards
- Jaeger for distributed tracing
- Structlog for centralized logging
## Cost Considerations
### Infrastructure
- **Current:** 1 server with all dependencies
- **Agent:** Multiple smaller services
- **Savings:** Scale only what you need
### Development
- **Initial:** Higher (build agents)
- **Ongoing:** Lower (easier maintenance)
- **Team:** Can parallelize work
## Alternative: Subprocess Approach
If full microservices is too heavy, consider:
```python
# backend/app/services/music_generation.py
import subprocess
import json
class MusicGenerationService:
def __init__(self):
self.python311 = "C:/Python311/python.exe"
self.agent_script = "./agents/music_agent.py"
async def generate(self, prompt: str, duration: int):
# Call Python 3.11 subprocess
result = subprocess.run([
self.python311,
self.agent_script,
"--prompt", prompt,
"--duration", str(duration)
], capture_output=True, text=True)
return json.loads(result.stdout)
```
**Pros:** Simpler, no network overhead
**Cons:** Harder to scale, less fault-tolerant
## Recommendation
**Start with Agent Architecture** because:
1. β
Solves Python version issues permanently
2. β
Better scalability for future growth
3. β
Industry standard for ML services
4. β
Easier to add new models/features
5. β
Better resource utilization
6. β
Aligns with modern cloud-native patterns
## Next Steps
1. Create `agents/` directory structure
2. Build Music Agent first (highest priority)
3. Update orchestrator to call agent
4. Test end-to-end workflow
5. Deploy to staging
6. Monitor and iterate
## Timeline Estimate
- **Week 1:** Music Agent + Orchestrator updates
- **Week 2:** Vocal & Processing Agents + Celery
- **Week 3:** Docker Compose + Testing
- **Week 4:** Production deployment + Monitoring
**Total:** 3-4 weeks for full implementation
|