narcolepticchicken commited on
Commit
b23607e
·
verified ·
1 Parent(s): b503472

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +26 -5
README.md CHANGED
@@ -2,11 +2,12 @@
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
  ---
11
 
12
  # ACO: Agent Cost Optimizer (v9)
@@ -112,3 +113,23 @@ aco version # ACO v8.0
112
  ## License
113
 
114
  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
+ - ml-intern
11
  ---
12
 
13
  # ACO: Agent Cost Optimizer (v9)
 
113
  ## License
114
 
115
  MIT
116
+
117
+ <!-- ml-intern-provenance -->
118
+ ## Generated by ML Intern
119
+
120
+ 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.
121
+
122
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
123
+ - Source code: https://github.com/huggingface/ml-intern
124
+
125
+ ## Usage
126
+
127
+ ```python
128
+ from transformers import AutoModelForCausalLM, AutoTokenizer
129
+
130
+ model_id = 'narcolepticchicken/agent-cost-optimizer'
131
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
132
+ model = AutoModelForCausalLM.from_pretrained(model_id)
133
+ ```
134
+
135
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.