Skip to content

Commit 65bb646

Browse files
committed
Remove new line for tool calls
1 parent 735da97 commit 65bb646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pydantic_ai_examples/stock_analysis_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async def main():
6363
async for message, _is_last in result.stream_responses():
6464
for part in message.parts:
6565
if isinstance(part, BuiltinToolCallPart):
66-
print(f'🔧 Server-side tool: {part.tool_name}\n')
66+
print(f'🔧 Server-side tool: {part.tool_name}')
6767

6868
# Access output after streaming is complete
6969
output = await result.get_output()

0 commit comments

Comments
 (0)