Skip to content

Commit dd5ff83

Browse files
committed
Merge feat/add-adk into main
2 parents 5431a77 + bed7a99 commit dd5ff83

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ logs/
3838
*.db
3939
.pytype/
4040
.idea/
41+
.vscode/

listeners/assistant/message.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,10 @@ async def stream_response():
7272
client.assistant_threads_setStatus(
7373
channel_id=channel_id,
7474
thread_ts=thread_ts,
75-
status="is working...", # Generic status
76-
loading_messages=[event["text"]], # Specific detail
75+
status="is thinking...", # The status below text box which typically shows "is typing..." for other users
76+
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.
7779
)
7880
elif event["type"] == "content":
7981
# Stream the actual response content

0 commit comments

Comments
 (0)