Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# ACO: Agent Cost Optimizer
|
| 2 |
|
| 3 |
A universal control layer that bolts onto any agent harness to reduce total cost while preserving task quality.
|
|
@@ -56,3 +60,23 @@ Per-task safety floors prevent unsafe cheap-model routing on critical tasks.
|
|
| 56 |
## License
|
| 57 |
|
| 58 |
MIT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# ACO: Agent Cost Optimizer
|
| 6 |
|
| 7 |
A universal control layer that bolts onto any agent harness to reduce total cost while preserving task quality.
|
|
|
|
| 60 |
## License
|
| 61 |
|
| 62 |
MIT
|
| 63 |
+
|
| 64 |
+
<!-- ml-intern-provenance -->
|
| 65 |
+
## Generated by ML Intern
|
| 66 |
+
|
| 67 |
+
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.
|
| 68 |
+
|
| 69 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 70 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 71 |
+
|
| 72 |
+
## Usage
|
| 73 |
+
|
| 74 |
+
```python
|
| 75 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 76 |
+
|
| 77 |
+
model_id = 'narcolepticchicken/agent-cost-optimizer'
|
| 78 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 79 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 80 |
+
```
|
| 81 |
+
|
| 82 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|