Skip to content

Commit 51d1847

Browse files
committed
Use fake key
1 parent cfef02b commit 51d1847

File tree

1 file changed

+4
-1
lines changed
  • tests/playwright/shiny/bookmark/chat/chatlas

1 file changed

+4
-1
lines changed

tests/playwright/shiny/bookmark/chat/chatlas/app.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@
2323
#
2424
# Use ChatOpenAI as it does not need credentials until submission to the server.
2525
# 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]
26+
chat_client = chatlas.ChatOpenAI( # pyright: ignore[reportUnknownMemberType]
27+
turns=[],
28+
api_key="<not_utilized>",
29+
)
2730
chat.enable_bookmarking(chat_client, bookmark_store="url")
2831

2932

0 commit comments

Comments
 (0)