Skip to content

Commit bf5e7be

Browse files
committed
Update
1 parent f5a45f2 commit bf5e7be

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

libs/agno/agno/workflow/workflow.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,9 @@ def _execute_stream(
15751575

15761576
# Capture partial progress from the step that was cancelled mid-stream
15771577
if partial_step_content:
1578-
logger.info(f"Step with name '{current_step_name}' was cancelled. Setting its partial progress as step output.")
1578+
logger.info(
1579+
f"Step with name '{current_step_name}' was cancelled. Setting its partial progress as step output."
1580+
)
15791581
partial_step_output = StepOutput(
15801582
step_name=current_step_name,
15811583
step_id=getattr(current_step, "step_id", None) if current_step else None,
@@ -2136,7 +2138,9 @@ async def _aexecute_stream(
21362138

21372139
# Capture partial progress from the step that was cancelled mid-stream
21382140
if partial_step_content:
2139-
logger.info(f"Step with name '{current_step_name}' was cancelled. Setting its partial progress as step output.")
2141+
logger.info(
2142+
f"Step with name '{current_step_name}' was cancelled. Setting its partial progress as step output."
2143+
)
21402144
partial_step_output = StepOutput(
21412145
step_name=current_step_name,
21422146
step_id=getattr(current_step, "step_id", None) if current_step else None,

libs/agno/tests/integration/models/deepinfra/test_tool_use.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
from agno.agent import Agent, RunOutput # noqa
66
from agno.models.deepinfra import DeepInfra
7-
from agno.tools.duckduckgo import DuckDuckGoTools
87
from agno.tools.exa import ExaTools
98
from agno.tools.yfinance import YFinanceTools
109

0 commit comments

Comments
 (0)