Update app.py
Browse files
app.py
CHANGED
@@ -59,11 +59,12 @@ gaia.launch()
|
|
59 |
|
60 |
examples = get_questions(QUESTION_FILE_PATH, QUESTION_LEVEL)
|
61 |
|
62 |
-
with gr.Blocks(title="
|
63 |
-
gr.Markdown(
|
|
|
64 |
|
65 |
with gr.Row():
|
66 |
-
with gr.Column(
|
67 |
level = gr.Radio(
|
68 |
choices=[1, 2, 3],
|
69 |
label="Level",
|
@@ -87,7 +88,7 @@ with gr.Blocks(title="General AI Assistant - GAIA π€π€π€") as gaia:
|
|
87 |
type="password"
|
88 |
)
|
89 |
submit_btn = gr.Button("Submit")
|
90 |
-
with gr.Column(
|
91 |
answer = gr.Textbox(
|
92 |
label="Answer",
|
93 |
lines=10,
|
|
|
59 |
|
60 |
examples = get_questions(QUESTION_FILE_PATH, QUESTION_LEVEL)
|
61 |
|
62 |
+
with gr.Blocks(title="GAIA") as gaia:
|
63 |
+
gr.Markdown("## General AI Assistant - GAIA π€π€π€")
|
64 |
+
gr.Markdown(f"{os.environ.get('DESCRIPTION', '')}")
|
65 |
|
66 |
with gr.Row():
|
67 |
+
with gr.Column():
|
68 |
level = gr.Radio(
|
69 |
choices=[1, 2, 3],
|
70 |
label="Level",
|
|
|
88 |
type="password"
|
89 |
)
|
90 |
submit_btn = gr.Button("Submit")
|
91 |
+
with gr.Column():
|
92 |
answer = gr.Textbox(
|
93 |
label="Answer",
|
94 |
lines=10,
|