Create list_llm.py
Browse files- llm/list_llm.py +16 -0
llm/list_llm.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#https://huggingface.co/spaces/MisterAI/GenDoc_05
|
2 |
+
#/home/user/llm/list_llm.py_01
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
# Liste des modèles de texte et d'image
|
7 |
+
TEXT_MODELS = {
|
8 |
+
# "Mistral Nemo 2407 (GGUF)": "MisterAI/Bartowski_MistralAI_Mistral-Nemo-Instruct-2407-IQ4_XS.gguf",
|
9 |
+
# "Mixtral 8x7B": "mistralai/Mixtral-8x7B-v0.1",
|
10 |
+
# "Lucie 7B": "OpenLLM-France/Lucie-7B"
|
11 |
+
}
|
12 |
+
|
13 |
+
IMAGE_MODELS = {
|
14 |
+
"FLUX.1": "black-forest-labs/FLUX.1-schnell",
|
15 |
+
"ArtifyAI": "ImageInception/ArtifyAI-v1.1"
|
16 |
+
}
|