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 e6e49ff commit 8e9d8fcCopy full SHA for 8e9d8fc
shiny/ui/_chat_bookmark.py
@@ -100,7 +100,9 @@ async def set_state(value: Jsonifiable) -> None:
100
turns_arr = value.get("turns")
101
102
if not isinstance(turns_arr, list):
103
- raise ValueError("Chatlas bookmark value was not a list of objects")
+ raise ValueError(
104
+ "Chatlas bookmark value was not a list of chat message information"
105
+ )
106
107
turns: list[Turn[Any]] = [
108
Turn.model_validate(turn_obj) for turn_obj in turns_arr
0 commit comments