Skip to content

Commit 578c0a0

Browse files
authored
Add "Researching your answer..." text to progress message (#1214)
More clearly indicate the bot is working and users should wait to respond
1 parent ccc6cf6 commit 578c0a0

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

examples/slackbot/src/slackbot/_internal/tool_tracking.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,14 @@ async def update_progress(self, tool_name: str):
5656
token = current_tool.set(tool_name)
5757
try:
5858
counts = self.get_counts()
59-
lines = [f"🔧 Using: `{tool_name}`", ""]
59+
60+
lines = [
61+
"🔄 Researching your answer... this may take a while",
62+
"",
63+
"",
64+
f"🔧 Using tool: `{tool_name}`",
65+
"",
66+
]
6067

6168
if counts:
6269
lines.append("📊 Tools used:")

0 commit comments

Comments
 (0)