Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -97,11 +97,11 @@ with gr.Blocks() as demo:
|
|
97 |
## Text translation using a "standard" Large Language Model (LLM)
|
98 |
""")
|
99 |
# User interface
|
100 |
-
chatbot = gr.Chatbot(height=
|
101 |
textbox = gr.Textbox(
|
102 |
placeholder="Enter text to translate",
|
103 |
container=False,
|
104 |
-
scale=7, lines=
|
105 |
|
106 |
# Additional inputs
|
107 |
instruction_message = gr.Textbox(
|
|
|
97 |
## Text translation using a "standard" Large Language Model (LLM)
|
98 |
""")
|
99 |
# User interface
|
100 |
+
chatbot = gr.Chatbot(height=400, render=False)
|
101 |
textbox = gr.Textbox(
|
102 |
placeholder="Enter text to translate",
|
103 |
container=False,
|
104 |
+
scale=7, lines=1, render=False)
|
105 |
|
106 |
# Additional inputs
|
107 |
instruction_message = gr.Textbox(
|