Skip to content
Closed
Changes from all commits
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
5 changes: 1 addition & 4 deletions src/google/adk/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,7 @@ async def run_cli(
content = event.content
if not content or not content.parts or not content.parts[0].text:
continue
if event.author == 'user':
click.echo(f'[user]: {content.parts[0].text}')
else:
click.echo(f'[{event.author}]: {content.parts[0].text}')
click.echo(f'[{event.author}]: {content.parts[0].text}')

await run_interactively(
root_agent,
Expand Down