We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2838e8 commit c71aeeaCopy full SHA for c71aeea
examples/clients/simple-chatbot/mcp_simple_chatbot/main.py
@@ -8,7 +8,6 @@
8
9
import httpx
10
from dotenv import load_dotenv
11
-
12
from mcp import ClientSession, StdioServerParameters
13
from mcp.client.stdio import stdio_client
14
@@ -324,8 +323,7 @@ async def process_llm_response(self, llm_response: str) -> str:
324
323
total = result["total"]
325
percentage = (progress / total) * 100
326
logging.info(
327
- f"Progress: {progress}/{total} "
328
- f"({percentage:.1f}%)"
+ f"Progress: {progress}/{total} ({percentage:.1f}%)"
329
)
330
331
return f"Tool execution result: {result}"
0 commit comments