qlemesle commited on
Commit
a048070
·
1 Parent(s): a8c1efd
Files changed (1) hide show
  1. app.py +2 -2
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
- chaine+=k + "\n"
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: