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**.
|
|
@@ -232,3 +236,23 @@ Pareto-optimal configurations:
|
|
| 232 |
---
|
| 233 |
|
| 234 |
*Built autonomously by ML Intern on 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**.
|
|
|
|
| 236 |
---
|
| 237 |
|
| 238 |
*Built autonomously by ML Intern on 2025-07-05.*
|
| 239 |
+
|
| 240 |
+
<!-- ml-intern-provenance -->
|
| 241 |
+
## Generated by ML Intern
|
| 242 |
+
|
| 243 |
+
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.
|
| 244 |
+
|
| 245 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 246 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 247 |
+
|
| 248 |
+
## Usage
|
| 249 |
+
|
| 250 |
+
```python
|
| 251 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 252 |
+
|
| 253 |
+
model_id = 'narcolepticchicken/agent-cost-optimizer'
|
| 254 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 255 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 256 |
+
```
|
| 257 |
+
|
| 258 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|