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.
2 parents 5431a77 + bed7a99 commit dd5ff83Copy full SHA for dd5ff83
.gitignore
@@ -38,3 +38,4 @@ logs/
38
*.db
39
.pytype/
40
.idea/
41
+.vscode/
listeners/assistant/message.py
@@ -72,8 +72,10 @@ async def stream_response():
72
client.assistant_threads_setStatus(
73
channel_id=channel_id,
74
thread_ts=thread_ts,
75
- status="is working...", # Generic status
76
- loading_messages=[event["text"]], # Specific detail
+ status="is thinking...", # The status below text box which typically shows "is typing..." for other users
+ loading_messages=[
77
+ event["text"]
78
+ ], # The text that shows next to the app name shimmer. Here you can put custom text from you Agent events.
79
)
80
elif event["type"] == "content":
81
# Stream the actual response content
0 commit comments