Skip to content

Commit 8dfd3a4

Browse files
authored
fix(cli): agent info command missing auth (#1622)
Signed-off-by: Radek Ježek <[email protected]>
1 parent c1e058b commit 8dfd3a4

File tree

1 file changed

+2
-1
lines changed
  • apps/agentstack-cli/src/agentstack_cli/commands

1 file changed

+2
-1
lines changed

apps/agentstack-cli/src/agentstack_cli/commands/agent.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,8 @@ async def agent_detail(
949949
):
950950
"""Show agent details."""
951951
announce_server_action(f"Showing agent details for '{search_path}' on")
952-
provider = select_provider(search_path, await Provider.list())
952+
async with configuration.use_platform_client():
953+
provider = select_provider(search_path, await Provider.list())
953954
agent = provider.agent_card
954955

955956
basic_info = f"# {agent.name}\n{agent.description}"

0 commit comments

Comments
 (0)