feat(base.py): add support for creating SQLDatabaseChain from LLM

📝 docs(base.py): update documentation for ChainCreator class
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-08 11:42:36 -03:00
commit ba6cf77fe9

View file

@ -23,6 +23,7 @@ class ChainCreator(LangChainTypeCreator):
from_method_nodes = {
"ConversationalRetrievalChain": "from_llm",
"LLMCheckerChain": "from_llm",
"SQLDatabaseChain": "from_llm",
}
@property