Orami01 commited on
Commit
e4c99ee
·
1 Parent(s): 07ff0bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -34,17 +34,19 @@ docsearch.save_local(DB_FAISS_PATH)
34
 
35
  #print("Result", docs)
36
 
37
- llm = CTransformers(model="models/llama-2-7b-chat.ggmlv3.q4_0.bin",
 
 
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
- if st.button("Submit Query"):
45
  chat_history = []
46
  #query = "What is the value of GDP per capita of Finland provided in the data?"
47
- query = st.text_input("Input Prompt:")
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()