Fix spelling typo

This commit is contained in:
Eugene Yurtsev
2025-08-14 14:51:13 -04:00
parent 42f9683d73
commit ebae60045f
@@ -20,7 +20,7 @@ T = TypeVar("T")
MaybeAwaitable = Union[T, Awaitable[T]]
SyncOrAsync = Callable[P, MaybeAwaitable[R]]
# PreConfiguredChatModel is used to support chat models that have beeen pre-configured
# PreConfiguredChatModel is used to support chat models that have been pre-configured
# using .bind().
# For example, chat_model.bind(api_key="...") will return a PreConfiguredChatModel
PreConfiguredChatModel = Runnable[LanguageModelInput, BaseMessage]