You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To test this agent I have some client code as shown below. This connects to the remote A2A agent which, for demo purposes, is running on localhost port 8000.
# client.pya2a_url="http://127.0.0.1:8000"agent=A2AAgent(name="My A2A Agent", url=a2a_url)
user_prompt="what is status of the system"print(f"\nUser Prompt:\n{user_prompt}")
response=awaitagent.run(user_prompt)
print(f"\nRemote Agent Response:\n\033[96m{response}\033[0m")
Everything works fine but I noticed the A2A server gives the following output when the client sends a request:
A2AExecutor does not yet support content type: function_call. Omitted.
A2AExecutor does not yet support content type: function_result. Omitted.
I think this is caused by the MCP tool on the remote agent. Is this something I need to worry about or should I just ignore it? Is there a way to prevent these A2AExecutor log statements from displaying in the server output?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
I have an agent that uses an MCP server for one of its tools as demonstrated below.
This agent is served with the A2A protocol as shown next.
To test this agent I have some client code as shown below. This connects to the remote A2A agent which, for demo purposes, is running on localhost port 8000.
Everything works fine but I noticed the A2A server gives the following output when the client sends a request:
I think this is caused by the MCP tool on the remote agent. Is this something I need to worry about or should I just ignore it? Is there a way to prevent these A2AExecutor log statements from displaying in the server output?
All reactions