Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -2,12 +2,13 @@
|
|
| 2 |
license: mit
|
| 3 |
library_name: xgboost
|
| 4 |
tags:
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# ACO v10: Agent Cost Optimizer
|
|
@@ -88,3 +89,23 @@ print(f"Step type: {d.step_type.value}, Tier: {d.adjusted_tier}, Cost: ${d.cost_
|
|
| 88 |
## License
|
| 89 |
|
| 90 |
MIT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: mit
|
| 3 |
library_name: xgboost
|
| 4 |
tags:
|
| 5 |
+
- agent-cost-optimizer
|
| 6 |
+
- model-router
|
| 7 |
+
- cost-aware-inference
|
| 8 |
+
- cascade-routing
|
| 9 |
+
- execution-feedback
|
| 10 |
+
- swebench
|
| 11 |
+
- ml-intern
|
| 12 |
---
|
| 13 |
|
| 14 |
# ACO v10: Agent Cost Optimizer
|
|
|
|
| 89 |
## License
|
| 90 |
|
| 91 |
MIT
|
| 92 |
+
|
| 93 |
+
<!-- ml-intern-provenance -->
|
| 94 |
+
## Generated by ML Intern
|
| 95 |
+
|
| 96 |
+
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.
|
| 97 |
+
|
| 98 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 99 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 100 |
+
|
| 101 |
+
## Usage
|
| 102 |
+
|
| 103 |
+
```python
|
| 104 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 105 |
+
|
| 106 |
+
model_id = 'narcolepticchicken/agent-cost-optimizer'
|
| 107 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 108 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 109 |
+
```
|
| 110 |
+
|
| 111 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|