8
8
Callable ,
9
9
Iterable ,
10
10
Literal ,
11
- Optional ,
12
11
Sequence ,
13
12
Tuple ,
14
13
Union ,
22
21
from .. import _utils , reactive
23
22
from .._docstring import add_example
24
23
from .._namespaces import resolve_id
25
- from ..session import Session , require_active_session , session_context
24
+ from ..session import require_active_session , session_context
26
25
from ..types import MISSING , MISSING_TYPE , NotifyException
27
26
from ..ui .css import CssUnit , as_css_unit
28
27
from ._chat_normalize import normalize_message , normalize_message_chunk
@@ -128,9 +127,6 @@ async def _():
128
127
attempted to be loaded the tokenizers library (if available). A custom tokenizer
129
128
can be provided by following the `TokenEncoding` (tiktoken or tozenizer)
130
129
protocol. If token limits are of no concern, provide `None`.
131
- session
132
- The :class:`~shiny.Session` instance that the chat should appear in. If not
133
- provided, the session is inferred via :func:`~shiny.session.get_current_session`.
134
130
"""
135
131
136
132
def __init__ (
@@ -140,7 +136,6 @@ def __init__(
140
136
messages : Sequence [ChatMessage ] = (),
141
137
on_error : Literal ["auto" , "actual" , "sanitize" , "unhandled" ] = "auto" ,
142
138
tokenizer : TokenEncoding | MISSING_TYPE | None = MISSING ,
143
- session : Optional [Session ] = None ,
144
139
):
145
140
146
141
self .id = id
@@ -151,7 +146,9 @@ def __init__(
151
146
self ._tokenizer = get_default_tokenizer ()
152
147
else :
153
148
self ._tokenizer = tokenizer
154
- self ._session = require_active_session (session )
149
+ # TODO: remove the `None` when this PR lands:
150
+ # https://github.com/posit-dev/py-shiny/pull/793/files
151
+ self ._session = require_active_session (None )
155
152
156
153
# Default to sanitizing until we know the app isn't sanitizing errors
157
154
if on_error == "auto" :
0 commit comments