Spaces:
Running
Running
Commit
·
2492556
1
Parent(s):
d8709c0
Fixed llama to be 3B
Browse files
src/tools/default_tools/agent_cost_manager.py
CHANGED
@@ -16,9 +16,9 @@ class AgentCostManager():
|
|
16 |
|
17 |
costs = {
|
18 |
"llama3.2": {
|
19 |
-
"description": "
|
20 |
-
"create_resource_cost":
|
21 |
-
"invoke_resource_cost":
|
22 |
},
|
23 |
"mistral": {
|
24 |
"description": "7 Billion parameter model",
|
|
|
16 |
|
17 |
costs = {
|
18 |
"llama3.2": {
|
19 |
+
"description": "3 Billion parameter model",
|
20 |
+
"create_resource_cost": 50,
|
21 |
+
"invoke_resource_cost": 30,
|
22 |
},
|
23 |
"mistral": {
|
24 |
"description": "7 Billion parameter model",
|