Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -34,17 +34,19 @@ docsearch.save_local(DB_FAISS_PATH)
|
|
34 |
|
35 |
#print("Result", docs)
|
36 |
|
37 |
-
|
|
|
|
|
38 |
model_type="llama",
|
39 |
max_new_tokens=512,
|
40 |
temperature=0.1)
|
41 |
|
42 |
qa = ConversationalRetrievalChain.from_llm(llm, retriever=docsearch.as_retriever())
|
43 |
|
44 |
-
|
45 |
chat_history = []
|
46 |
#query = "What is the value of GDP per capita of Finland provided in the data?"
|
47 |
-
query =
|
48 |
if query == 'exit':
|
49 |
print('Exiting')
|
50 |
sys.exit()
|
|
|
34 |
|
35 |
#print("Result", docs)
|
36 |
|
37 |
+
from transformers import pipeline
|
38 |
+
|
39 |
+
pipe = pipeline("text-generation", model="meta-llama/Llama-2-7b-chat-hf")
|
40 |
model_type="llama",
|
41 |
max_new_tokens=512,
|
42 |
temperature=0.1)
|
43 |
|
44 |
qa = ConversationalRetrievalChain.from_llm(llm, retriever=docsearch.as_retriever())
|
45 |
|
46 |
+
while True:
|
47 |
chat_history = []
|
48 |
#query = "What is the value of GDP per capita of Finland provided in the data?"
|
49 |
+
query = input(f"Input Prompt: ")
|
50 |
if query == 'exit':
|
51 |
print('Exiting')
|
52 |
sys.exit()
|