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 cfef02b commit 51d1847Copy full SHA for 51d1847
tests/playwright/shiny/bookmark/chat/chatlas/app.py
@@ -23,7 +23,10 @@
23
#
24
# Use ChatOpenAI as it does not need credentials until submission to the server.
25
# However, if we use `.set_turns()` and `.get_turns()`, a submission is never made to the server... therefore we don't need credentials.
26
-chat_client = chatlas.ChatOpenAI(turns=[]) # pyright: ignore[reportUnknownMemberType]
+chat_client = chatlas.ChatOpenAI( # pyright: ignore[reportUnknownMemberType]
27
+ turns=[],
28
+ api_key="<not_utilized>",
29
+)
30
chat.enable_bookmarking(chat_client, bookmark_store="url")
31
32
0 commit comments