File size: 12,060 Bytes
aa220ed | 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 | # Agent Cost Optimizer — Deployment Guide
## Quick Start
### Installation
```bash
pip install git+https://huggingface.co/narcolepticchicken/agent-cost-optimizer
```
Or clone and install locally:
```bash
git clone https://huggingface.co/narcolepticchicken/agent-cost-optimizer
cd agent-cost-optimizer
pip install -e .
```
### Basic Usage
```python
from aco import AgentCostOptimizer
# Load default configuration
optimizer = AgentCostOptimizer()
# Optimize a single agent request
result = optimizer.optimize(
"Write a Python function to reverse a linked list",
run_state={
"trace_id": "run-001",
"planned_tools": [("code_execution", {"code": "test"})],
}
)
print(f"Model: {result.routing_decision.model_id}")
print(f"Tier: {result.routing_decision.tier}")
print(f"Estimated Cost: ${result.estimated_cost:.4f}")
print(f"Tool Decisions: {[d.decision.value for d in result.tool_decisions]}")
```
## Configuration
### Config File
Create a `config.yaml`:
```yaml
project_name: "my-agent-optimizer"
trace_storage_path: "./traces"
models:
gpt-4o-mini:
model_id: "gpt-4o-mini"
provider: "openai"
cost_per_1k_input: 0.00015
cost_per_1k_output: 0.0006
strength_tier: 2
max_context: 128000
cache_discount_rate: 0.5
gpt-4o:
model_id: "gpt-4o"
provider: "openai"
cost_per_1k_input: 0.0025
cost_per_1k_output: 0.01
strength_tier: 4
max_context: 128000
cache_discount_rate: 0.5
tools:
search:
tool_name: "search"
cost_per_call: 0.002
latency_ms_estimate: 500
code_execution:
tool_name: "code_execution"
cost_per_call: 0.005
latency_ms_estimate: 1000
requires_verification: true
verifiers:
verifier_medium:
verifier_model_id: "gpt-4o-mini"
cost_per_call: 0.005
confidence_threshold: 0.8
# Enable/disable modules
enable_router: true
enable_context_budgeter: true
enable_cache_layout: true
enable_tool_gate: true
enable_verifier_budgeter: true
enable_retry_optimizer: true
enable_meta_tool_miner: true
enable_early_termination: true
```
Load it:
```python
optimizer = AgentCostOptimizer.from_config("config.yaml")
```
## Integration with Agent Harness
### Generic Integration Pattern
```python
class MyAgentHarness:
def __init__(self):
self.optimizer = AgentCostOptimizer.from_config("config.yaml")
def execute(self, user_request: str, context: dict):
# 1. Build run state
run_state = {
"trace_id": f"run-{uuid.uuid4()}",
"planned_tools": self.plan_tools(user_request),
"context_pieces": context,
"current_cost": 0.0,
"step_number": 1,
"total_steps": self.estimate_steps(user_request),
"is_irreversible": False,
}
# 2. Call optimizer BEFORE execution
decision = self.optimizer.optimize(user_request, run_state)
# 3. Apply optimizer decisions
selected_model = decision.routing_decision.model_id
# Apply tool gate
approved_tools = [
td for td in decision.tool_decisions
if td.decision.value in ("use", "batch", "parallel")
]
# Apply context budget
if decision.context_budget:
context = self._apply_context_budget(context, decision.context_budget)
# Apply cache layout
if decision.prompt_layout:
prompt = self._apply_cache_layout(decision.prompt_layout)
# Check doom assessment
if decision.doom_assessment and decision.doom_assessment.action.value == "mark_blocked":
return {"status": "BLOCKED", "reason": decision.doom_assessment.reasoning}
# 4. Execute with optimized parameters
result = self.llm_call(
model=selected_model,
prompt=prompt,
tools=approved_tools,
max_tokens=decision.routing_decision.max_tokens,
)
# 5. Record step
self.optimizer.record_step(
trace_id=decision.trace_id,
model_call=ModelCall(
model_id=selected_model,
provider="openai",
input_tokens=result.input_tokens,
output_tokens=result.output_tokens,
cost_per_1k_input=0.0025,
cost_per_1k_output=0.01,
),
tool_calls=[...],
context_size_tokens=len(prompt) // 4,
step_outcome=Outcome.SUCCESS if result.success else Outcome.FAILURE,
)
# 6. Finalize trace
self.optimizer.finalize_trace(
trace_id=decision.trace_id,
outcome=Outcome.SUCCESS if result.success else Outcome.FAILURE,
user_satisfaction=1.0 if result.success else 0.0,
)
return result
```
### LangChain Integration
```python
from aco import AgentCostOptimizer
from langchain.agents import AgentExecutor
class ACOWrapper:
def __init__(self, agent_executor, optimizer):
self.agent = agent_executor
self.optimizer = optimizer
def invoke(self, input_data):
# Pre-optimize
decision = self.optimizer.optimize(
input_data["input"],
run_state={
"planned_tools": [(t.name, {}) for t in self.agent.tools],
"trace_id": input_data.get("run_id", str(uuid.uuid4())),
}
)
# Override agent LLM based on routing decision
self.agent.llm = self.get_llm(decision.routing_decision.model_id)
# Filter tools based on tool gate
self.agent.tools = [
t for t in self.agent.tools
if any(d.tool_name == t.name and d.decision.value == "use"
for d in decision.tool_decisions)
]
# Execute
result = self.agent.invoke(input_data)
# Record and finalize
# ... (see generic pattern above)
return result
```
### OpenAI Assistants Integration
```python
from aco import AgentCostOptimizer
class ACOAssistantWrapper:
def __init__(self, assistant_id, optimizer):
self.assistant_id = assistant_id
self.optimizer = optimizer
def create_run(self, thread_id, instructions):
# Optimize instructions (context budgeter)
decision = self.optimizer.optimize(
instructions,
run_state={
"trace_id": f"assistant-run-{thread_id}",
"context_pieces": {"system_rules": instructions},
}
)
# Use cache-aware prompt layout
if decision.prompt_layout:
optimized_instructions = decision.prompt_layout.prefix + "\n\n" + decision.prompt_layout.suffix
else:
optimized_instructions = instructions
# Create run with optimized parameters
return openai.beta.threads.runs.create(
thread_id=thread_id,
assistant_id=self.assistant_id,
instructions=optimized_instructions,
model=decision.routing_decision.model_id,
)
```
## Multi-Provider Support
ACO supports any provider with cost metadata:
```yaml
models:
claude-3-haiku:
model_id: "claude-3-haiku-20240307"
provider: "anthropic"
cost_per_1k_input: 0.00025
cost_per_1k_output: 0.00125
strength_tier: 2
claude-3-opus:
model_id: "claude-3-opus-20240229"
provider: "anthropic"
cost_per_1k_input: 0.015
cost_per_1k_output: 0.075
strength_tier: 4
gemini-pro:
model_id: "gemini-1.5-pro"
provider: "google"
cost_per_1k_input: 0.0035
cost_per_1k_output: 0.0105
strength_tier: 3
deepseek-chat:
model_id: "deepseek-chat"
provider: "deepseek"
cost_per_1k_input: 0.00014
cost_per_1k_output: 0.00028
strength_tier: 2
cache_discount_rate: 0.5
```
## Local Model Support
For self-hosted models:
```yaml
models:
llama-3.2-1b:
model_id: "meta-llama/Llama-3.2-1B-Instruct"
provider: "local"
cost_per_1k_input: 0.0
cost_per_1k_output: 0.0
strength_tier: 1
max_context: 128000
qwen2.5-7b:
model_id: "Qwen/Qwen2.5-7B-Instruct"
provider: "local"
cost_per_1k_input: 0.0
cost_per_1k_output: 0.0
strength_tier: 3
max_context: 131072
```
Use `cost_per_1k_input: 0.0` for local models. ACO will still optimize latency and context size.
## Benchmarking
Run the benchmark suite:
```bash
python eval_runner.py --tasks 1000 --output ./eval_results
```
With ablations:
```bash
python eval_runner.py --tasks 1000 --ablations --output ./eval_results
```
Generate report:
```bash
python -m aco.cli report --input ./eval_results/baseline_results.json
```
## Telemetry and Monitoring
Traces are stored as JSON in `trace_storage_path`:
```python
# List all traces
traces = optimizer.telemetry.list_traces()
# Get statistics
stats = optimizer.telemetry.get_stats()
print(f"Total traces: {stats['count']}")
print(f"Avg cost: ${stats['avg_cost']:.4f}")
print(f"Success rate: {stats['success_rate']:.1%}")
# Full optimizer stats
all_stats = optimizer.get_stats()
print(json.dumps(all_stats, indent=2))
```
## Advanced: Training a Custom Router
To train a model-specific router using your trace data:
```python
from aco.optimizer import AgentCostOptimizer
from aco.config import ACOConfig, ModelConfig
# 1. Collect traces
optimizer = AgentCostOptimizer()
# ... run agent tasks ...
# 2. Extract features and labels from traces
traces = [optimizer.telemetry.load_trace(tid) for tid in optimizer.telemetry.list_traces()]
# 3. Train a simple classifier (example with sklearn)
from sklearn.ensemble import RandomForestClassifier
import numpy as np
X = []
y = []
for trace in traces:
# Features: task_type, request_length, predicted_cost, prior_success_rate
features = [
hash(trace["task_type"]) % 1000,
len(trace["user_request"]),
trace.get("total_cost", 0.01),
]
# Label: optimal model tier (from oracle comparison)
optimal_tier = trace.get("metadata", {}).get("optimal_tier", 3)
X.append(features)
y.append(optimal_tier)
clf = RandomForestClassifier(n_estimators=100)
clf.fit(X, y)
# 4. Deploy: override router decisions
# In production, integrate the classifier into ModelCascadeRouter._route_learned()
```
For RL-based routing (GRPO/DPO), see the literature review for BAAR and xRouter approaches.
## Production Checklist
- [ ] Configure all models with accurate cost metadata
- [ ] Configure all tools with cost/latency estimates
- [ ] Set appropriate tier mappings for your use case
- [ ] Enable telemetry to collect traces for learning
- [ ] Set doom thresholds appropriate for your SLA
- [ ] Configure verifier thresholds for safety-critical tasks
- [ ] Test with small synthetic benchmark before deployment
- [ ] Monitor regression rate and false-DONE rate
- [ ] Review and adjust routing policy monthly
- [ ] Mine meta-tools after collecting 100+ successful traces
## Troubleshooting
### High regression rate
- Check if model tier mappings match your actual model capabilities
- Increase `unsafe_cheap_model_penalty` in config
- Enable verifier on more task types
### Low cost savings
- Verify cache layout is enabled (check cache hit rate)
- Ensure tool gate is catching repeated/unnecessary calls
- Check if meta-tool miner is enabled and has enough traces
### High false-DONE rate
- Increase verifier threshold for final-step verification
- Enable doom detector with stricter `doom_no_progress_steps`
- Add more failure patterns to retry optimizer
### Slow routing decisions
- Use prompt-only or static routing instead of learned
- Cache classification results for repeated request patterns
- Pre-compute meta-tools during off-peak hours
## Support
- Repository: https://huggingface.co/narcolepticchicken/agent-cost-optimizer
- Issues: Open a discussion on the Hugging Face Hub
- Literature Review: See `docs/literature_review.md`
|