Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ def run_text(text, state):
|
|
9 |
|
10 |
with gr.Blocks(css="#chatbot {overflow:auto; height:500px;}") as demo:
|
11 |
with gr.Row():
|
12 |
-
|
13 |
chatbot = gr.Chatbot(elem_id="chatbot",show_label=False)
|
14 |
state = gr.State([])
|
15 |
with gr.Row() as input_raws:
|
|
|
9 |
|
10 |
with gr.Blocks(css="#chatbot {overflow:auto; height:500px;}") as demo:
|
11 |
with gr.Row():
|
12 |
+
lang = gr.Radio(choices=['OpenAI', 'Bard'], value='OpenAI', label='llm')
|
13 |
chatbot = gr.Chatbot(elem_id="chatbot",show_label=False)
|
14 |
state = gr.State([])
|
15 |
with gr.Row() as input_raws:
|