rishisim commited on
Commit
65dcf34
1 Parent(s): 521c09f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,10 +6,10 @@ hftoken = os.environ["hftoken"]
6
 
7
  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" # 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
 
6
 
7
  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" # 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