DHEIVER commited on
Commit
336c110
·
verified ·
1 Parent(s): b8f0b99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -6
app.py CHANGED
@@ -25,12 +25,21 @@ import re
25
 
26
 
27
  # default_persist_directory = './chroma_HF/'
28
- list_llm = ["mistralai/Mistral-7B-Instruct-v0.2", "mistralai/Mixtral-8x7B-Instruct-v0.1", "mistralai/Mistral-7B-Instruct-v0.1", \
29
- "google/gemma-7b-it","google/gemma-2b-it", \
30
- "HuggingFaceH4/zephyr-7b-beta", "HuggingFaceH4/zephyr-7b-gemma-v0.1", \
31
- "meta-llama/Llama-2-7b-chat-hf", "microsoft/phi-2", \
32
- "TinyLlama/TinyLlama-1.1B-Chat-v1.0", "mosaicml/mpt-7b-instruct", "tiiuae/falcon-7b-instruct", \
33
- "google/flan-t5-xxl"
 
 
 
 
 
 
 
 
 
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