We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0643879 commit b4eb043Copy full SHA for b4eb043
langchain/chains/sql_database/base.py
@@ -21,7 +21,7 @@ class SQLDatabaseChain(Chain, BaseModel):
21
22
from langchain import SQLDatabaseChain, OpenAI, SQLDatabase
23
db = SQLDatabase(...)
24
- db_chain = SelfAskWithSearchChain(llm=OpenAI(), database=db)
+ db_chain = SQLDatabaseChain(llm=OpenAI(), database=db)
25
"""
26
27
llm: BaseLLM
0 commit comments