Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ DEFAULT_MAX_NEW_TOKENS = 1024
|
|
12 |
MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_LENGTH", "4096"))
|
13 |
ACCESS_TOKEN = os.getenv("HF_TOKEN", "")
|
14 |
|
15 |
-
model_id = "
|
16 |
#filename = "Mistral-Nemo-Instruct-2407-Q6_K_L.gguf"
|
17 |
|
18 |
model = AutoModelForCausalLM.from_pretrained(
|
@@ -109,7 +109,7 @@ chat_interface = gr.Interface(
|
|
109 |
value=0.7,
|
110 |
),
|
111 |
],
|
112 |
-
title="Model testing - Mistral-
|
113 |
description="Provide system settings and a prompt to interact with the model.",
|
114 |
)
|
115 |
|
|
|
12 |
MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_LENGTH", "4096"))
|
13 |
ACCESS_TOKEN = os.getenv("HF_TOKEN", "")
|
14 |
|
15 |
+
model_id = "mistralai/Mistral-Nemo-Instruct-2407"
|
16 |
#filename = "Mistral-Nemo-Instruct-2407-Q6_K_L.gguf"
|
17 |
|
18 |
model = AutoModelForCausalLM.from_pretrained(
|
|
|
109 |
value=0.7,
|
110 |
),
|
111 |
],
|
112 |
+
title="Model testing - mistralai/Mistral-Nemo-Instruct-2407",
|
113 |
description="Provide system settings and a prompt to interact with the model.",
|
114 |
)
|
115 |
|