Provide type hints for pass-through Langchain and Llama-index objects (#95)

This commit is contained in:
Duc Nguyen (john)
2023-12-04 10:59:13 +07:00
committed by GitHub
parent e34b1e4c6d
commit 0ce3a8832f
34 changed files with 641 additions and 310 deletions

View File

@@ -1,4 +1,4 @@
from .base import BaseMessage, ChatLLM, HumanMessage
from .openai import AzureChatOpenAI
from .base import ChatLLM
from .langchain_based import AzureChatOpenAI
__all__ = ["ChatLLM", "AzureChatOpenAI", "BaseMessage", "HumanMessage"]
__all__ = ["ChatLLM", "AzureChatOpenAI"]