ali121300 commited on
Commit
b809ef8
1 Parent(s): 0c95774

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -53,8 +53,9 @@ def get_conversation_chain(vectorstore:FAISS) -> ConversationalRetrievalChain:
53
  # llm = ChatOpenAI(temperature=0, model="gpt-3.5-turbo-0613")
54
  llm = HuggingFaceHub(
55
  #repo_id="mistralai/Mistral-7B-Instruct-v0.2",
56
- repo_id="google/gemma-1.1-7b-it",
57
  #repo_id="TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF"
 
58
  model_kwargs={"temperature": 0.9, "max_length": 2048},
59
  )
60
 
 
53
  # llm = ChatOpenAI(temperature=0, model="gpt-3.5-turbo-0613")
54
  llm = HuggingFaceHub(
55
  #repo_id="mistralai/Mistral-7B-Instruct-v0.2",
56
+ #repo_id="google/gemma-1.1-7b-it",
57
  #repo_id="TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF"
58
+ repo_id="meta-llama/Meta-Llama-3-8B-Instruct",
59
  model_kwargs={"temperature": 0.9, "max_length": 2048},
60
  )
61