Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/agno/agno/knowledge/knowledge.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ def _load_from_url(
upsert: bool,
skip_if_exists: bool,
):
log_info(f"Adding content from URL {content.name}")
log_info(f"Adding content from URL {content.url}")
content.file_type = "url"

if self.vector_db.__class__.__name__ == "LightRag":
Expand Down
3 changes: 0 additions & 3 deletions libs/agno/agno/models/anthropic/claude.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,6 @@ def parse_provider_response(self, response: AnthropicMessage, **kwargs) -> Model
if tool_input:
function_def["arguments"] = json.dumps(tool_input)

model_response.extra = model_response.extra or {}
model_response.tool_calls.append(
{
"id": block.id,
Expand Down Expand Up @@ -580,8 +579,6 @@ def parse_provider_response_delta(
if tool_input:
function_def["arguments"] = json.dumps(tool_input)

model_response.extra = model_response.extra or {}

model_response.tool_calls = [
{
"id": tool_use.id,
Expand Down
10 changes: 7 additions & 3 deletions libs/agno/agno/team/team.py
Original file line number Diff line number Diff line change
Expand Up @@ -3609,7 +3609,9 @@ async def _aprint_response_stream(
live_console.update(Group(*panels))

# Get response from the team
stream_resp = await self.arun( # type: ignore
stream_resp = []

async for resp in self.arun( # type: ignore
message=message,
audio=audio,
images=images,
Expand All @@ -3623,11 +3625,13 @@ async def _aprint_response_stream(
user_id=user_id,
knowledge_filters=knowledge_filters,
**kwargs,
)
):
stream_resp.append(resp)

team_markdown = None
member_markdown = {}

async for resp in stream_resp:
for resp in stream_resp:
if team_markdown is None:
if markdown:
team_markdown = True
Expand Down