Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Agent Cost Optimizer (ACO)
|
| 2 |
|
| 3 |
A universal control layer that reduces total cost of autonomous agent runs while **preserving task quality**.
|
|
@@ -100,3 +104,23 @@ See `docs/trained_router_final_report.md` for full analysis.
|
|
| 100 |
---
|
| 101 |
|
| 102 |
*Built autonomously by ML Intern, 2025-07-05.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# Agent Cost Optimizer (ACO)
|
| 6 |
|
| 7 |
A universal control layer that reduces total cost of autonomous agent runs while **preserving task quality**.
|
|
|
|
| 104 |
---
|
| 105 |
|
| 106 |
*Built autonomously by ML Intern, 2025-07-05.*
|
| 107 |
+
|
| 108 |
+
<!-- ml-intern-provenance -->
|
| 109 |
+
## Generated by ML Intern
|
| 110 |
+
|
| 111 |
+
This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
|
| 112 |
+
|
| 113 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 114 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 115 |
+
|
| 116 |
+
## Usage
|
| 117 |
+
|
| 118 |
+
```python
|
| 119 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 120 |
+
|
| 121 |
+
model_id = 'narcolepticchicken/agent-cost-optimizer'
|
| 122 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 123 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 124 |
+
```
|
| 125 |
+
|
| 126 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|