Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -67,7 +67,7 @@ def main():
|
|
67 |
# llm = AutoModelForCausalLM.from_pretrained(PATH,local_files_only=True)
|
68 |
llm = huggingface_hub.HuggingFaceHub(repo_id="google/flan-t5-small",
|
69 |
model_kwargs={"temperature":1.0, "max_length":256})
|
70 |
-
docs = vector_store.similarity_search(query=query, k=
|
71 |
|
72 |
chain = load_qa_chain(llm=llm, chain_type="stuff")
|
73 |
response = chain.run(input_documents=docs, question=query)
|
|
|
67 |
# llm = AutoModelForCausalLM.from_pretrained(PATH,local_files_only=True)
|
68 |
llm = huggingface_hub.HuggingFaceHub(repo_id="google/flan-t5-small",
|
69 |
model_kwargs={"temperature":1.0, "max_length":256})
|
70 |
+
docs = vector_store.similarity_search(query=query, k=1)
|
71 |
|
72 |
chain = load_qa_chain(llm=llm, chain_type="stuff")
|
73 |
response = chain.run(input_documents=docs, question=query)
|