Skip to content

Commit 5103fbb

Browse files
committed
Remove session parameter from ui.Chat() (in anticipation of #793)
1 parent ea6aeea commit 5103fbb

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

shiny/ui/_chat.py

+4-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
Callable,
99
Iterable,
1010
Literal,
11-
Optional,
1211
Sequence,
1312
Tuple,
1413
Union,
@@ -22,7 +21,7 @@
2221
from .. import _utils, reactive
2322
from .._docstring import add_example
2423
from .._namespaces import resolve_id
25-
from ..session import Session, require_active_session, session_context
24+
from ..session import require_active_session, session_context
2625
from ..types import MISSING, MISSING_TYPE, NotifyException
2726
from ..ui.css import CssUnit, as_css_unit
2827
from ._chat_normalize import normalize_message, normalize_message_chunk
@@ -128,9 +127,6 @@ async def _():
128127
attempted to be loaded the tokenizers library (if available). A custom tokenizer
129128
can be provided by following the `TokenEncoding` (tiktoken or tozenizer)
130129
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`.
134130
"""
135131

136132
def __init__(
@@ -140,7 +136,6 @@ def __init__(
140136
messages: Sequence[ChatMessage] = (),
141137
on_error: Literal["auto", "actual", "sanitize", "unhandled"] = "auto",
142138
tokenizer: TokenEncoding | MISSING_TYPE | None = MISSING,
143-
session: Optional[Session] = None,
144139
):
145140

146141
self.id = id
@@ -151,7 +146,9 @@ def __init__(
151146
self._tokenizer = get_default_tokenizer()
152147
else:
153148
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)
155152

156153
# Default to sanitizing until we know the app isn't sanitizing errors
157154
if on_error == "auto":

0 commit comments

Comments
 (0)