openfree commited on
Commit
aca4005
·
verified ·
1 Parent(s): c121139

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -117,7 +117,15 @@ def respond_all(
117
  generate(pipes[selected_models[2]], history3),
118
  )
119
 
120
- with gr.Blocks() as demo:
 
 
 
 
 
 
 
 
121
  with gr.Row():
122
  model_choices = gr.Checkboxgroup(
123
  choices=list(LLM_MODELS.values()),
 
117
  generate(pipes[selected_models[2]], history3),
118
  )
119
 
120
+ css = """
121
+ footer {
122
+ visibility: hidden;
123
+ }
124
+ """
125
+
126
+
127
+
128
+ with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", css=css) as demo:
129
  with gr.Row():
130
  model_choices = gr.Checkboxgroup(
131
  choices=list(LLM_MODELS.values()),