Spaces:
Running
Running
File size: 32,080 Bytes
df47251 | 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 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 | # π€ Multi-Model API System
## Table of Contents
1. [Overview](#overview)
2. [Supported Providers](#supported-providers)
3. [Smart Model Router](#smart-model-router)
4. [Model Ensemble](#model-ensemble)
5. [Cost & Token Tracking](#cost--token-tracking)
6. [Prompt Management](#prompt-management)
7. [Configuration](#configuration)
8. [API Reference](#api-reference)
---
## Overview
The **Multi-Model API System** provides a unified interface for interacting with multiple LLM providers (OpenAI, Anthropic, Google, Groq, etc.), enabling:
- **Flexibility:** Switch between models without code changes
- **Optimization:** Auto-route requests to the best model for each task
- **Cost Control:** Track spending and enforce budgets
- **Reliability:** Fallback to alternative models on failure
- **Experimentation:** A/B test prompts and models
### Architecture
```
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Agent Request β
β "Extract product price" β
ββββββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββ
β
βΌ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Smart Model Router β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Task Classifier: β β
β β β’ Reasoning β GPT-4 / Claude β β
β β β’ Fast extraction β Groq / Gemini Flash β β
β β β’ Long context β Claude / GPT-4-32k β β
β β β’ Cost-sensitive β Gemini / Groq β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
ββββββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββΌββββββββββββββββ¬ββββββββββββββββ
β β β β
βΌ βΌ βΌ βΌ
βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ
β OpenAI β β Anthropic β β Google β β Groq β
β Adapter β β Adapter β β Adapter β β Adapter β
ββββββββ¬βββββββ ββββββββ¬βββββββ ββββββββ¬βββββββ ββββββββ¬βββββββ
β β β β
βΌ βΌ βΌ βΌ
βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ
β gpt-4-turbo β β claude-3.5 β β gemini-pro β β llama-3-70b β
β gpt-4o-mini β β claude-3 β β gemini-flashβ β mixtral-8x7bβ
βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ
```
---
## Supported Providers
### 1. OpenAI
**Models:**
- `gpt-4-turbo` - Best reasoning, multimodal
- `gpt-4o` - Fast GPT-4 variant
- `gpt-4o-mini` - Cost-effective, fast
- `gpt-3.5-turbo` - Legacy, cheap
**Capabilities:**
- Function calling
- JSON mode
- Vision (gpt-4-turbo, gpt-4o)
- 128k context (gpt-4-turbo)
**Configuration:**
```python
{
"provider": "openai",
"api_key": "sk-...",
"organization": "org-...", # Optional
"models": {
"default": "gpt-4o-mini",
"reasoning": "gpt-4-turbo",
"fast": "gpt-4o-mini"
},
"parameters": {
"temperature": 0.7,
"max_tokens": 4096,
"timeout": 60
}
}
```
### 2. Anthropic (Claude)
**Models:**
- `claude-3-opus-20240229` - Most capable
- `claude-3-sonnet-20240229` - Balanced
- `claude-3-haiku-20240307` - Fast and cheap
- `claude-3-5-sonnet-20240620` - Latest, best
**Capabilities:**
- 200k context window
- Strong reasoning
- Excellent instruction following
- Tool use (function calling)
**Configuration:**
```python
{
"provider": "anthropic",
"api_key": "sk-ant-...",
"models": {
"default": "claude-3-5-sonnet-20240620",
"reasoning": "claude-3-opus-20240229",
"fast": "claude-3-haiku-20240307"
},
"parameters": {
"temperature": 0.7,
"max_tokens": 4096,
"timeout": 90
}
}
```
### 3. Google (Gemini)
**Models:**
- `gemini-1.5-pro` - Best quality, 2M context
- `gemini-1.5-flash` - Fast, 1M context
- `gemini-1.0-pro` - Legacy
**Capabilities:**
- Massive context (1M-2M tokens)
- Multimodal (text, image, video, audio)
- Extremely cost-effective
- Function calling
**Configuration:**
```python
{
"provider": "google",
"api_key": "AIza...",
"models": {
"default": "gemini-1.5-flash",
"reasoning": "gemini-1.5-pro",
"fast": "gemini-1.5-flash"
},
"parameters": {
"temperature": 0.7,
"max_output_tokens": 8192,
"timeout": 60
}
}
```
### 4. Groq
**Models:**
- `llama-3.1-405b` - Largest Llama
- `llama-3.1-70b-versatile` - Balanced
- `llama-3.1-8b-instant` - Ultra-fast
- `mixtral-8x7b-32768` - Good reasoning
**Capabilities:**
- **Extremely fast inference** (500+ tokens/sec)
- Free tier available
- Open-source models
- JSON mode
**Configuration:**
```python
{
"provider": "groq",
"api_key": "gsk_...",
"models": {
"default": "llama-3.1-70b-versatile",
"reasoning": "llama-3.1-405b",
"fast": "llama-3.1-8b-instant"
},
"parameters": {
"temperature": 0.7,
"max_tokens": 8192,
"timeout": 30
}
}
```
### 5. Mistral AI
**Models:**
- `mistral-large-latest` - Best quality
- `mistral-medium-latest` - Balanced
- `mistral-small-latest` - Fast and cheap
- `mixtral-8x22b` - Open-source, strong
**Configuration:**
```python
{
"provider": "mistral",
"api_key": "...",
"models": {
"default": "mistral-medium-latest",
"reasoning": "mistral-large-latest",
"fast": "mistral-small-latest"
}
}
```
### 6. Cohere
**Models:**
- `command-r-plus` - Best for RAG
- `command-r` - Balanced
- `command-light` - Fast
**Specialization:** RAG, embeddings, reranking
### 7. Perplexity
**Models:**
- `pplx-70b-online` - Web-connected
- `pplx-7b-online` - Fast, web-connected
**Specialization:** Real-time web search and citations
### 8. Together AI
**Models:** 50+ open-source models
- Llama variants
- Mistral variants
- Code models (CodeLlama, StarCoder)
**Use Case:** Access to latest open-source models
### 9. Custom / Self-Hosted
**Supported:**
- **Ollama** (local models)
- **vLLM** (self-hosted inference)
- **LM Studio** (local GUI)
- **LocalAI** (OpenAI-compatible local server)
**Configuration:**
```python
{
"provider": "custom",
"base_url": "http://localhost:11434/v1", # Ollama
"api_key": "not-needed",
"models": {
"default": "llama3:70b",
"fast": "llama3:8b"
}
}
```
---
## Smart Model Router
The **Smart Model Router** automatically selects the best model for each request based on task characteristics.
### Routing Strategy
```python
class ModelRouter:
def route(self, task: Task, context: Dict) -> ModelConfig:
"""Select the best model for this task."""
# 1. Explicit user preference
if context.get("preferred_model"):
return self.get_model(context["preferred_model"])
# 2. Task-based routing
if task.type == "reasoning":
return self.route_reasoning(task, context)
elif task.type == "extraction":
return self.route_extraction(task, context)
elif task.type == "classification":
return self.route_classification(task, context)
# 3. Fallback to default
return self.default_model
def route_reasoning(self, task: Task, context: Dict) -> ModelConfig:
"""Route complex reasoning tasks."""
# Long context? Use Claude or Gemini
if context.get("input_tokens", 0) > 50000:
return self.get_model("claude-3-5-sonnet") # 200k context
# Need reliability? Use GPT-4 or Claude
if task.importance == "high":
return self.get_model("gpt-4-turbo")
# Cost-sensitive? Use Gemini or Groq
if context.get("budget_mode"):
return self.get_model("gemini-1.5-flash")
return self.get_model("claude-3-5-sonnet") # Default for reasoning
def route_extraction(self, task: Task, context: Dict) -> ModelConfig:
"""Route simple extraction tasks."""
# Speed critical? Use Groq
if context.get("latency_critical"):
return self.get_model("llama-3.1-70b-versatile", provider="groq")
# Cost-sensitive? Use Gemini Flash or Groq
return self.get_model("gemini-1.5-flash")
```
### Routing Rules
| Task Type | Input Size | Priority | Recommended Model | Reason |
|-----------|-----------|----------|-------------------|--------|
| Reasoning | Any | High | `gpt-4-turbo` | Best quality |
| Reasoning | >50k tokens | Any | `claude-3-5-sonnet` | 200k context |
| Reasoning | Any | Budget | `gemini-1.5-flash` | Cheap, good quality |
| Extraction | <10k tokens | Speed | `groq/llama-3.1-70b` | 500+ tok/sec |
| Extraction | Any | Budget | `gpt-4o-mini` | $0.15/1M tokens |
| Classification | <5k tokens | Any | `groq/llama-3.1-8b` | Ultra-fast |
| Long Context | >100k tokens | Any | `gemini-1.5-pro` | 2M context |
| Vision | Images | Any | `gpt-4o` | Best multimodal |
| Web Search | Any | Any | `perplexity` | Web-connected |
### Configuration
```python
class RouterConfig(BaseModel):
enabled: bool = True
strategy: Literal["task_based", "cost_optimized", "speed_optimized", "quality_optimized"]
# Task-based routing rules
routing_rules: Dict[str, str] = {
"reasoning_high_priority": "gpt-4-turbo",
"reasoning_budget": "gemini-1.5-flash",
"extraction_fast": "groq/llama-3.1-70b",
"extraction_accurate": "claude-3-5-sonnet",
"long_context": "gemini-1.5-pro",
"vision": "gpt-4o"
}
# Fallback chain
fallback_order: List[str] = [
"claude-3-5-sonnet",
"gpt-4o-mini",
"gemini-1.5-flash",
"groq/llama-3.1-70b"
]
# Auto-retry on failure
auto_retry: bool = True
max_retries: int = 3
```
---
## Model Ensemble
**Model Ensemble** runs multiple models in parallel and merges their outputs for higher quality or consensus.
### Ensemble Strategies
#### 1. Voting (Classification/Extraction)
Run 3+ models, take majority vote.
```python
class VotingEnsemble:
async def predict(self, prompt: str, models: List[str]) -> Any:
"""Run multiple models and vote on result."""
tasks = [self.call_model(model, prompt) for model in models]
results = await asyncio.gather(*tasks)
# Count votes
from collections import Counter
votes = Counter(results)
winner, count = votes.most_common(1)[0]
confidence = count / len(results)
return {
"result": winner,
"confidence": confidence,
"votes": dict(votes)
}
# Example: Extract price with 3 models
ensemble = VotingEnsemble()
result = await ensemble.predict(
prompt="Extract the product price: <html>...",
models=["gpt-4o-mini", "gemini-1.5-flash", "groq/llama-3.1-70b"]
)
# Result: {"result": "$49.99", "confidence": 1.0, "votes": {"$49.99": 3}}
```
#### 2. Ranking (Quality Assessment)
Run multiple models, rank outputs by quality.
```python
class RankingEnsemble:
async def generate(self, prompt: str, models: List[str]) -> List[Dict]:
"""Generate with multiple models and rank by quality."""
tasks = [self.call_model(model, prompt) for model in models]
results = await asyncio.gather(*tasks)
# Score each result
scored_results = []
for model, output in zip(models, results):
score = self.quality_scorer.score(output, prompt)
scored_results.append({
"model": model,
"output": output,
"quality_score": score
})
# Sort by score
scored_results.sort(key=lambda x: x["quality_score"], reverse=True)
return scored_results
# Example: Generate reasoning with ranking
ensemble = RankingEnsemble()
results = await ensemble.generate(
prompt="Explain how to extract a price from HTML",
models=["gpt-4-turbo", "claude-3-5-sonnet", "gemini-1.5-pro"]
)
best_result = results[0] # Highest quality
```
#### 3. Fusion (Merging Outputs)
Merge complementary outputs from multiple models.
```python
class FusionEnsemble:
async def extract_structured(self, prompt: str, models: List[str]) -> Dict:
"""Extract structured data with multiple models and merge."""
tasks = [self.call_model(model, prompt) for model in models]
results = await asyncio.gather(*tasks)
# Merge fields with confidence weighting
merged = {}
for field in self.extract_fields(results):
values = [r.get(field) for r in results if r.get(field)]
if not values:
continue
# Use most common value, or highest-confidence model's value
from collections import Counter
counts = Counter(values)
merged[field] = counts.most_common(1)[0][0]
return merged
# Example: Extract product data with fusion
ensemble = FusionEnsemble()
product = await ensemble.extract_structured(
prompt="Extract product details: <html>...",
models=["gpt-4o-mini", "gemini-1.5-flash", "claude-3-haiku"]
)
# Merges: {name: "...", price: "$X", rating: "Y" } from all models
```
#### 4. Verification (Primary + Validator)
One model generates, another validates.
```python
class VerificationEnsemble:
async def generate_and_verify(
self,
prompt: str,
generator_model: str,
validator_model: str
) -> Dict:
"""Generate with one model, verify with another."""
# Generate
output = await self.call_model(generator_model, prompt)
# Verify
verification_prompt = f"""
Original task: {prompt}
Generated output: {output}
Is this output correct and complete? Explain any issues.
"""
verification = await self.call_model(validator_model, verification_prompt)
return {
"output": output,
"verification": verification,
"confidence": self.parse_confidence(verification)
}
# Example: Generate with Groq (fast), verify with Claude (accurate)
ensemble = VerificationEnsemble()
result = await ensemble.generate_and_verify(
prompt="Extract all product prices from this catalog page",
generator_model="groq/llama-3.1-70b",
validator_model="claude-3-5-sonnet"
)
```
### Ensemble Configuration
```python
class EnsembleConfig(BaseModel):
enabled: bool = False # Off by default (costs more)
strategy: Literal["voting", "ranking", "fusion", "verification"]
# Model selection
models: List[str] = [] # If empty, router selects
# Voting settings
min_agreement: float = 0.67 # Require 67% agreement
# Ranking settings
quality_metric: Literal["coherence", "accuracy", "completeness"]
# Verification settings
generator_model: Optional[str] = None
validator_model: Optional[str] = None
```
---
## Cost & Token Tracking
Track spending and token usage across all models.
### Cost Tracker
```python
class CostTracker:
# Pricing (as of March 2026, per 1M tokens)
PRICING = {
"gpt-4-turbo": {"input": 10.00, "output": 30.00},
"gpt-4o": {"input": 5.00, "output": 15.00},
"gpt-4o-mini": {"input": 0.15, "output": 0.60},
"claude-3-opus": {"input": 15.00, "output": 75.00},
"claude-3-5-sonnet": {"input": 3.00, "output": 15.00},
"claude-3-haiku": {"input": 0.25, "output": 1.25},
"gemini-1.5-pro": {"input": 3.50, "output": 10.50},
"gemini-1.5-flash": {"input": 0.35, "output": 1.05},
"groq/llama-3.1-70b": {"input": 0.59, "output": 0.79},
"groq/llama-3.1-8b": {"input": 0.05, "output": 0.08},
}
def calculate_cost(
self,
model: str,
input_tokens: int,
output_tokens: int
) -> float:
"""Calculate cost for this request."""
pricing = self.PRICING.get(model, {"input": 0, "output": 0})
cost = (
(input_tokens / 1_000_000) * pricing["input"] +
(output_tokens / 1_000_000) * pricing["output"]
)
return cost
def track_request(self, request: ModelRequest, response: ModelResponse):
"""Track a model request."""
cost = self.calculate_cost(
model=request.model,
input_tokens=response.usage.prompt_tokens,
output_tokens=response.usage.completion_tokens
)
self.db.insert({
"timestamp": datetime.now(),
"model": request.model,
"input_tokens": response.usage.prompt_tokens,
"output_tokens": response.usage.completion_tokens,
"total_tokens": response.usage.total_tokens,
"cost_usd": cost,
"latency_ms": response.latency_ms,
"task_type": request.task_type,
"success": response.success
})
```
### Budget Enforcement
```python
class BudgetEnforcer:
def __init__(self, daily_budget_usd: float):
self.daily_budget = daily_budget_usd
self.cost_tracker = CostTracker()
def check_budget(self) -> bool:
"""Check if budget allows this request."""
today_cost = self.cost_tracker.get_today_cost()
return today_cost < self.daily_budget
async def call_with_budget(self, request: ModelRequest) -> ModelResponse:
"""Make request only if budget allows."""
if not self.check_budget():
# Fallback to cheapest model
request.model = "groq/llama-3.1-8b-instant"
logger.warning(f"Budget exceeded, downgrading to {request.model}")
response = await self.call_model(request)
self.cost_tracker.track_request(request, response)
return response
```
### Token Usage Dashboard
**UI Display:**
```
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Token Usage & Cost (Last 24h) β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β Total Tokens: 1,234,567 β
β Total Cost: $12.34 β
β Requests: 456 β
β Avg Latency: 1.2s β
β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Cost by Model β β
β β ββββββββββββββββββββ gpt-4-turbo $6.50 (53%) β β
β β ββββββββββ claude-3-5-sonnet $3.20 (26%) β β
β β βββββ gemini-1.5-flash $1.80 (15%) β β
β β ββ groq/llama-3.1-70b $0.84 (6%) β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β Token Usage by Model β β
β β Model Input Output Total Cost β β
β β gpt-4-turbo 123K 45K 168K $6.50 β β
β β claude-3-5-sonnet 456K 89K 545K $3.20 β β
β β gemini-1.5-flash 890K 234K 1124K $1.80 β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β Budget: $12.34 / $20.00 (62% used) β
β [βββββββββββββββββββββββββββ] β
β β
β β οΈ Budget 80% threshold: Alert enabled β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
---
## Prompt Management
Manage, version, and A/B test prompts.
### Prompt Templates
```python
class PromptTemplate(BaseModel):
template_id: str
name: str
template: str
variables: List[str]
version: int
created_at: datetime
performance_score: Optional[float] = None
class PromptManager:
def get_template(self, template_id: str, version: Optional[int] = None) -> PromptTemplate:
"""Get prompt template by ID and version."""
if version is None:
return self.get_latest_version(template_id)
return self.db.get(template_id, version)
def render(self, template_id: str, variables: Dict) -> str:
"""Render template with variables."""
template = self.get_template(template_id)
return template.template.format(**variables)
def create_version(self, template_id: str, new_template: str) -> int:
"""Create new version of template."""
current = self.get_template(template_id)
new_version = current.version + 1
self.db.insert(PromptTemplate(
template_id=template_id,
name=current.name,
template=new_template,
variables=current.variables,
version=new_version,
created_at=datetime.now()
))
return new_version
```
### Example Templates
```python
# Extraction prompt
EXTRACTION_PROMPT = """
You are a web scraping agent. Extract the following fields from the HTML:
Target fields: {target_fields}
HTML content:
{html_content}
Return a JSON object with the extracted values. If a field is not found, use null.
Example output format:
{{
"field1": "value1",
"field2": "value2"
}}
"""
# Reasoning prompt
REASONING_PROMPT = """
You are analyzing a web page to plan your next extraction action.
Current goal: {goal}
Page URL: {url}
Available actions: {actions}
Previous attempts: {history}
Think step by step:
1. What information is most important for the goal?
2. What patterns do you see in the HTML structure?
3. Which action is most likely to succeed?
4. What could go wrong?
Provide your reasoning and then choose an action.
"""
# Register templates
prompt_manager = PromptManager()
prompt_manager.register("extraction_v1", EXTRACTION_PROMPT, ["target_fields", "html_content"])
prompt_manager.register("reasoning_v1", REASONING_PROMPT, ["goal", "url", "actions", "history"])
```
### A/B Testing
```python
class PromptABTest:
def __init__(self, template_id: str, variants: List[int]):
self.template_id = template_id
self.variants = variants # Version numbers
self.results = {v: [] for v in variants}
def get_variant(self) -> int:
"""Select variant (round-robin or random)."""
return random.choice(self.variants)
def track_result(self, variant: int, success: bool, score: float):
"""Track performance of a variant."""
self.results[variant].append({"success": success, "score": score})
def get_winner(self) -> int:
"""Determine which variant performs best."""
avg_scores = {
v: np.mean([r["score"] for r in results])
for v, results in self.results.items()
if results
}
return max(avg_scores, key=avg_scores.get)
# Run A/B test
test = PromptABTest("extraction_v1", variants=[1, 2, 3])
for episode in episodes:
variant = test.get_variant()
prompt = prompt_manager.render(f"extraction_v1", variables, version=variant)
result = await model.generate(prompt)
test.track_result(variant, result.success, result.score)
winner = test.get_winner()
print(f"Best variant: v{winner}")
```
---
## Configuration
### Settings Panel
```python
class APISettings(BaseModel):
# Provider configurations
providers: Dict[str, ProviderConfig] = {}
# Default model
default_model: str = "gpt-4o-mini"
# Smart routing
router: RouterConfig = RouterConfig()
# Ensemble
ensemble: EnsembleConfig = EnsembleConfig()
# Cost control
daily_budget_usd: float = 20.00
alert_threshold: float = 0.8 # Alert at 80% budget
# Rate limiting
max_requests_per_minute: int = 60
# Retry policy
max_retries: int = 3
retry_delay_seconds: int = 2
# Prompt management
prompt_templates: Dict[str, str] = {}
```
**UI Example:**
```
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β API Settings β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β Model Providers: β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β OpenAI β β
β β API Key: [sk-proj-β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’] [Test] β β
β β Default: [gpt-4o-mini βΌ] β β
β β β β
β β β Anthropic β β
β β API Key: [sk-ant-β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’] [Test] β β
β β Default: [claude-3-5-sonnet βΌ] β β
β β β β
β β β Google β β
β β API Key: [AIzaβ’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’] [Test] β β
β β Default: [gemini-1.5-flash βΌ] β β
β β β β
β β β Groq β β
β β API Key: [gsk_β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’] [Test] β β
β β Default: [llama-3.1-70b-versatile βΌ] β β
β β β β
β β β Mistral [Configure] β β
β β β Cohere [Configure] β β
β β β Custom [Configure] β β
β βββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β
β Smart Routing: β
β β Enabled β
β Strategy: [Task-Based βΌ] β
β Fallback: [claude β gpt-4o-mini β gemini β groq] β
β β
β Model Ensemble: β
β β Enabled (increases cost) β
β Strategy: [Voting βΌ] β
β Models: [gpt-4o-mini, gemini-flash, groq/llama βΌ] β
β β
β Cost Control: β
β Daily Budget: [$20.00] β
β Alert at: [80%] of budget β
β Current Usage: $12.34 / $20.00 (62%) β
β β
β [Save Settings] [Reset to Defaults] β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
---
## API Reference
### Python Client
```python
from webscraper_env import MultiModelAPI
# Initialize with config
api = MultiModelAPI(settings=APISettings())
# Simple generation
response = await api.generate(
prompt="Extract product price from: <html>...",
model="gpt-4o-mini" # Optional, uses router if omitted
)
# With routing
response = await api.generate(
prompt="Complex reasoning task...",
task_type="reasoning", # Router selects best model
priority="high"
)
# With ensemble
response = await api.generate_ensemble(
prompt="Extract all prices",
strategy="voting",
models=["gpt-4o-mini", "gemini-1.5-flash", "groq/llama-3.1-70b"]
)
# Streaming
async for chunk in api.generate_stream(prompt="...", model="claude-3-5-sonnet"):
print(chunk.text, end="", flush=True)
```
---
**Next:** See [mcp.md](./mcp.md) for MCP server integration.
|