Spaces:
Sleeping
Sleeping
Update Gradio_UI.py
Browse files- Gradio_UI.py +5 -1
Gradio_UI.py
CHANGED
@@ -142,7 +142,11 @@ def stream_to_gradio(
|
|
142 |
for step_log in agent.run(task, stream=True, reset=reset_agent_memory, additional_args=additional_args):
|
143 |
# Track tokens if model provides them
|
144 |
if hasattr(agent.model, "last_input_token_count"):
|
145 |
-
|
|
|
|
|
|
|
|
|
146 |
total_output_tokens += agent.model.last_output_token_count
|
147 |
if isinstance(step_log, ActionStep):
|
148 |
step_log.input_token_count = agent.model.last_input_token_count
|
|
|
142 |
for step_log in agent.run(task, stream=True, reset=reset_agent_memory, additional_args=additional_args):
|
143 |
# Track tokens if model provides them
|
144 |
if hasattr(agent.model, "last_input_token_count"):
|
145 |
+
if agent.model.last_input_token_count is not None:
|
146 |
+
total_input_tokens += agent.model.last_input_token_count
|
147 |
+
else:
|
148 |
+
# Either skip token counting or use an estimated value
|
149 |
+
pass # or total_input_tokens += 0
|
150 |
total_output_tokens += agent.model.last_output_token_count
|
151 |
if isinstance(step_log, ActionStep):
|
152 |
step_log.input_token_count = agent.model.last_input_token_count
|