refactor: remove type as this is a 3.12 feature

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-06-20 11:27:37 -03:00
commit 381a136abe

View file

@ -17,7 +17,7 @@ from langchain_text_splitters import TextSplitter
NestedDict = Dict[str, Union[str, Dict]]
type LanguageModel = Union[BaseLanguageModel, BaseLLM, BaseChatModel]
LanguageModel = Union[BaseLanguageModel, BaseLLM, BaseChatModel]
class Object: