Spaces:
Running
Running
Commit
·
0144997
1
Parent(s):
53ee793
Cleaning up debug messages
Browse files
src/manager/manager.py
CHANGED
@@ -196,7 +196,6 @@ class GeminiManager:
|
|
196 |
logger.debug(f"Chat history: {chat_history}")
|
197 |
try:
|
198 |
response = suppress_output(self.generate_response)(chat_history)
|
199 |
-
print(f"Response: {response}")
|
200 |
except Exception as e:
|
201 |
messages.append({
|
202 |
"role": "assistant",
|
|
|
196 |
logger.debug(f"Chat history: {chat_history}")
|
197 |
try:
|
198 |
response = suppress_output(self.generate_response)(chat_history)
|
|
|
199 |
except Exception as e:
|
200 |
messages.append({
|
201 |
"role": "assistant",
|
src/tools/default_tools/agent_cost_manager.py
CHANGED
@@ -18,7 +18,7 @@ class AgentCostManager():
|
|
18 |
"llama3.2": {
|
19 |
"description": "3 Billion parameter model",
|
20 |
"create_cost": 10,
|
21 |
-
"invoke_cost":
|
22 |
},
|
23 |
"mistral": {
|
24 |
"description": "7 Billion parameter model",
|
|
|
18 |
"llama3.2": {
|
19 |
"description": "3 Billion parameter model",
|
20 |
"create_cost": 10,
|
21 |
+
"invoke_cost": 10,
|
22 |
},
|
23 |
"mistral": {
|
24 |
"description": "7 Billion parameter model",
|