narcolepticchicken commited on
Commit
3ab9733
·
verified ·
1 Parent(s): cbb24e9

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
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.
@@ -74,3 +78,23 @@ cost_adjusted_score =
74
  ## License
75
 
76
  MIT
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.
 
78
  ## License
79
 
80
  MIT
81
+
82
+ <!-- ml-intern-provenance -->
83
+ ## Generated by ML Intern
84
+
85
+ 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.
86
+
87
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
88
+ - Source code: https://github.com/huggingface/ml-intern
89
+
90
+ ## Usage
91
+
92
+ ```python
93
+ from transformers import AutoModelForCausalLM, AutoTokenizer
94
+
95
+ model_id = "narcolepticchicken/agent-cost-optimizer"
96
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
97
+ model = AutoModelForCausalLM.from_pretrained(model_id)
98
+ ```
99
+
100
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.