Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -25,12 +25,21 @@ import re
|
|
25 |
|
26 |
|
27 |
# default_persist_directory = './chroma_HF/'
|
28 |
-
list_llm = [
|
29 |
-
"
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"
|
33 |
-
"google/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
]
|
35 |
list_llm_simple = [os.path.basename(llm) for llm in list_llm]
|
36 |
|
|
|
25 |
|
26 |
|
27 |
# default_persist_directory = './chroma_HF/'
|
28 |
+
list_llm = [
|
29 |
+
"mistralai/Mistral-7B-Instruct-v0.2",
|
30 |
+
"mistralai/Mixtral-8x7B-Instruct-v0.1",
|
31 |
+
"mistralai/Mistral-7B-Instruct-v0.1",
|
32 |
+
"google/gemma-7b-it",
|
33 |
+
"google/gemma-2b-it",
|
34 |
+
"HuggingFaceH4/zephyr-7b-beta",
|
35 |
+
"HuggingFaceH4/zephyr-7b-gemma-v0.1",
|
36 |
+
"meta-llama/Llama-2-7b-chat-hf",
|
37 |
+
"microsoft/phi-2",
|
38 |
+
"TinyLlama/TinyLlama-1.1B-Chat-v1.0",
|
39 |
+
"mosaicml/mpt-7b-instruct",
|
40 |
+
"tiiuae/falcon-7b-instruct",
|
41 |
+
"google/flan-t5-xxl",
|
42 |
+
"deepseek-ai/DeepSeek-R1" # Adicionando o modelo DeepSeek-R1
|
43 |
]
|
44 |
list_llm_simple = [os.path.basename(llm) for llm in list_llm]
|
45 |
|