Spaces:
Configuration error
Configuration error
Update config.py
Browse files
config.py
CHANGED
|
@@ -17,12 +17,15 @@ google_sheets_name = "Chatbot Test"
|
|
| 17 |
# Define available models
|
| 18 |
models = {
|
| 19 |
"Meta-Llama-3-8B-Instruct": "meta-llama/Meta-Llama-3-8B-Instruct",
|
| 20 |
-
"Llama-3-8B-Finetuning-Stories":"rodrisouza/Llama-3-8B-Finetuning-Stories",
|
| 21 |
"Llama-2-7B-Chat": "meta-llama/Llama-2-7b-chat-hf",
|
| 22 |
"Yi-6B-Chat": "01-ai/Yi-6B-Chat",
|
| 23 |
"Qwen2-7B-Instruct": "Qwen/Qwen2-7B-Instruct"
|
| 24 |
}
|
| 25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
# Default model name
|
| 27 |
default_model_name = "Meta-Llama-3-8B-Instruct"
|
| 28 |
|
|
|
|
| 17 |
# Define available models
|
| 18 |
models = {
|
| 19 |
"Meta-Llama-3-8B-Instruct": "meta-llama/Meta-Llama-3-8B-Instruct",
|
|
|
|
| 20 |
"Llama-2-7B-Chat": "meta-llama/Llama-2-7b-chat-hf",
|
| 21 |
"Yi-6B-Chat": "01-ai/Yi-6B-Chat",
|
| 22 |
"Qwen2-7B-Instruct": "Qwen/Qwen2-7B-Instruct"
|
| 23 |
}
|
| 24 |
|
| 25 |
+
quantized_models = [
|
| 26 |
+
"Llama-3-8B-Finetuning-Stories":"rodrisouza/Llama-3-8B-Finetuning-Stories",
|
| 27 |
+
]
|
| 28 |
+
|
| 29 |
# Default model name
|
| 30 |
default_model_name = "Meta-Llama-3-8B-Instruct"
|
| 31 |
|