45 lines
867 B
Markdown
Raw Permalink Normal View History

2026-01-12 03:34:01 +00:00
# Full-Stack Examples
End-to-end integration examples combining multiple VAPORA systems.
## Examples
### 01: Agent with LLM Routing
**File**: `01-agent-with-routing.rs`
Agent executes task with intelligent LLM provider selection.
**Demonstrates**:
- Agent execution
- Multi-provider routing
- Cost tracking
- Budget management
**Run**:
```bash
cargo run --example 01-agent-with-routing
```
### 02: Swarm with Learning
**File**: `02-swarm-with-learning.rs`
Swarm coordinates multi-agent workflow with learning profiles.
**Demonstrates**:
- Swarm coordination
- Learning-based selection
- Load balancing
- Profile updates
**Run**:
```bash
cargo run --example 02-swarm-with-learning
```
### 03: Complete Workflow (Coming Soon)
Full pipeline: Project creation → Task assignment → Agent execution → KG recording
---
Navigate to `../` for more examples.