mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-31 10:23:18 +00:00
Updated VectorDBQA docs to updated argument name (#405)
This commit is contained in:
@@ -24,7 +24,7 @@ class VectorDBQA(Chain, BaseModel):
|
||||
from langchain import OpenAI, VectorDBQA
|
||||
from langchain.faiss import FAISS
|
||||
vectordb = FAISS(...)
|
||||
vectordbQA = VectorDBQA(llm=OpenAI(), vector_db=vectordb)
|
||||
vectordbQA = VectorDBQA(llm=OpenAI(), vectorstore=vectordb)
|
||||
|
||||
"""
|
||||
|
||||
|
Reference in New Issue
Block a user