Skip to content

Commit

Permalink
fix: add trailing slash to inspector link
Browse files Browse the repository at this point in the history
  • Loading branch information
jrriehl authored Sep 10, 2024
1 parent ae03dc3 commit c7ae0fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/uagents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ async def start_server(self):
if self._enable_agent_inspector:
inspector_url = f"{self._agentverse['http_prefix']}://{self._agentverse['base_url']}/inspect"
self._logger.debug(
f"Agent inspector available at {inspector_url}?uri=http://127.0.0.1:{self._port}"
f"Agent inspector available at {inspector_url}/?uri=http://127.0.0.1:{self._port}"
)
await self._server.serve()

Expand Down

0 comments on commit c7ae0fc

Please sign in to comment.