Skip to content
Closed
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
Prev Previous commit
Next Next commit
Update src/google/adk/cli/utils/agent_loader.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
  • Loading branch information
dylan-apex and gemini-code-assist[bot] authored Nov 6, 2025
commit ba8a026978b96a8b3d6cca1504d404044be36829
4 changes: 2 additions & 2 deletions src/google/adk/cli/utils/agent_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,11 +339,11 @@ def list_agents_detailed(self) -> list[dict[str, Any]]:
agent_type = self._determine_agent_type(agent_name)

# Convert underscores to spaces for display_name
agent.name = agent.name.replace("_", " ")
display_name = agent.name.replace("_", " ")

app_info = {
"name": agent_name,
"display_name": agent.name,
"display_name": display_name,
Comment thread
dylan-apex marked this conversation as resolved.
Outdated
"description": agent.description,
"agent_type": agent_type,
}
Expand Down