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 08c104a commit edc30f0Copy full SHA for edc30f0
tests/playwright/shiny/components/chat/inject/app.py
@@ -22,7 +22,7 @@ async def _():
22
23
@reactive.effect
24
async def _():
25
- await chat.inject_message_chunk("injected chunk")
+ await chat.append_message_chunk("injected chunk")
26
27
28
ui.input_action_button("run_test", "Run test")
@@ -34,7 +34,7 @@ async def _():
34
await chat.start_message_stream()
35
for chunk in ["can ", "inject ", "chunks"]:
36
await asyncio.sleep(0.2)
37
- await chat.inject_message_chunk(chunk)
+ await chat.append_message_chunk(chunk)
38
await chat.end_message_stream()
39
40
0 commit comments