Update app.py
Browse files
app.py
CHANGED
@@ -6,9 +6,9 @@ hftoken = os.environ["hftoken"]
|
|
6 |
|
7 |
from langchain_huggingface import HuggingFaceEndpoint
|
8 |
|
9 |
-
|
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 |
|
|
|
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 |
|