rishisim commited on
Commit
521c09f
1 Parent(s): 3fb4b8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -8,7 +8,8 @@ from langchain_huggingface import HuggingFaceEndpoint
8
 
9
  # repo_id = "mistralai/Mistral-7B-Instruct-v0.3"
10
  # repo_id = "google/gemma-2-9b-it"
11
- repo_id = "meta-llama/Meta-Llama-3-8B-Instruct"
 
12
  llm = HuggingFaceEndpoint(repo_id = repo_id, max_new_tokens = 128, temperature = 0.7, huggingfacehub_api_token = hftoken)
13
 
14
  from langchain_core.output_parsers import StrOutputParser
 
8
 
9
  # repo_id = "mistralai/Mistral-7B-Instruct-v0.3"
10
  # repo_id = "google/gemma-2-9b-it"
11
+ # repo_id = "meta-llama/Meta-Llama-3-8B-Instruct" # answers the question well, but continues the text and does not stop when its necessary. often ends in incomplete responses.
12
+ repo_id = "mistralai/Mixtral-8x22B-Instruct-v0.1"
13
  llm = HuggingFaceEndpoint(repo_id = repo_id, max_new_tokens = 128, temperature = 0.7, huggingfacehub_api_token = hftoken)
14
 
15
  from langchain_core.output_parsers import StrOutputParser