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 7b3ad73 commit 24ae144Copy full SHA for 24ae144
1 file changed
pkg/templates/python/yutori/main.py
@@ -6,14 +6,17 @@
6
from session import KernelBrowserSession
7
8
9
-class QueryInput(TypedDict, total=False):
10
- query: str
+class _QueryInputOptional(TypedDict, total=False):
11
record_replay: Optional[bool]
12
kiosk: Optional[bool]
13
user_timezone: Optional[str]
14
user_location: Optional[str]
15
16
+class QueryInput(_QueryInputOptional):
17
+ query: str
18
+
19
20
class QueryOutput(TypedDict):
21
result: str
22
replay_url: Optional[str]
0 commit comments