Spaces:
Runtime error
Runtime error
Cartinoe5930
commited on
Commit
β’
68d7b70
1
Parent(s):
20fe77c
Update app.py
Browse files
app.py
CHANGED
@@ -165,6 +165,8 @@ Here's how to use LLM Agora!
|
|
165 |
5. Type your question in the Question box and click the 'Submit' button! If you do so, LLM Agora will show you improved answers! π€ (It will take roughly a minute! Please wait for an answer!)
|
166 |
|
167 |
For more detailed information, please check 'β» Specific information about LLM Agora' at the bottom of the page.
|
|
|
|
|
168 |
"""
|
169 |
|
170 |
WELCOME_TEXT = """<h1 align="center">π€π₯ Welcome to LLM Agora π₯π€</h1>"""
|
@@ -219,7 +221,7 @@ with gr.Blocks() as demo:
|
|
219 |
gr.Markdown(INTRODUCTION_TEXT)
|
220 |
with gr.Column():
|
221 |
with gr.Tab("Inference"):
|
222 |
-
model_list = gr.CheckboxGroup(["Llama2", "
|
223 |
warmup_button = gr.Button("Warm-up LLM Agora π₯", visible=True)
|
224 |
welcome_message = gr.HTML(WELCOME_TEXT, visible=False)
|
225 |
with gr.Row(visible=False) as options:
|
|
|
165 |
5. Type your question in the Question box and click the 'Submit' button! If you do so, LLM Agora will show you improved answers! π€ (It will take roughly a minute! Please wait for an answer!)
|
166 |
|
167 |
For more detailed information, please check 'β» Specific information about LLM Agora' at the bottom of the page.
|
168 |
+
|
169 |
+
β» Due to quota limitations, 'Llama2-Chat' and 'Falcon-Instruct' are currently unavailable. We will provide additional updates in the future.
|
170 |
"""
|
171 |
|
172 |
WELCOME_TEXT = """<h1 align="center">π€π₯ Welcome to LLM Agora π₯π€</h1>"""
|
|
|
221 |
gr.Markdown(INTRODUCTION_TEXT)
|
222 |
with gr.Column():
|
223 |
with gr.Tab("Inference"):
|
224 |
+
model_list = gr.CheckboxGroup(["Llama2", "Vicuna", "Falcon", "WizardLM", "Orca"], label="Model Selection", info="Choose 3 LMs to participate in LLM Agora.", type="value", visible=True)
|
225 |
warmup_button = gr.Button("Warm-up LLM Agora π₯", visible=True)
|
226 |
welcome_message = gr.HTML(WELCOME_TEXT, visible=False)
|
227 |
with gr.Row(visible=False) as options:
|