update
Browse files
app.py
CHANGED
|
@@ -3,8 +3,8 @@ from code.PPLUIE.config import model_dict
|
|
| 3 |
|
| 4 |
def show_available_llms():
|
| 5 |
chaine = ""
|
| 6 |
-
for k in model_dict.keys()
|
| 7 |
-
|
| 8 |
return f"Available models with ParaPLUIE: \n"
|
| 9 |
|
| 10 |
with gr.Blocks() as demo:
|
|
|
|
| 3 |
|
| 4 |
def show_available_llms():
|
| 5 |
chaine = ""
|
| 6 |
+
for k in model_dict.keys():
|
| 7 |
+
chaine+=k + "\n"
|
| 8 |
return f"Available models with ParaPLUIE: \n"
|
| 9 |
|
| 10 |
with gr.Blocks() as demo:
|