Spaces:
Runtime error
Runtime error
Commit
·
fd4e200
1
Parent(s):
03881b3
Update app.py
Browse files
app.py
CHANGED
@@ -138,7 +138,7 @@ with gr.Blocks(
|
|
138 |
show_label=False,
|
139 |
).style(container=False)
|
140 |
|
141 |
-
|
142 |
with gr.Row():
|
143 |
with gr.Column():
|
144 |
msg = gr.Textbox(
|
@@ -164,7 +164,7 @@ with gr.Blocks(
|
|
164 |
with gr.Row():
|
165 |
change = gr.Button("Change System Prompt")
|
166 |
reset = gr.Button("Reset System Prompt")
|
167 |
-
|
168 |
gr.Markdown(
|
169 |
"Disclaimer: The gpt-3.5-turbo model can produce factually incorrect output, and should not be solely relied on to produce "
|
170 |
"factually accurate information. The gpt-3.5-turbo model was trained on various public datasets; while great efforts "
|
@@ -227,4 +227,4 @@ with gr.Blocks(
|
|
227 |
)
|
228 |
|
229 |
|
230 |
-
demo.queue(max_size=36, concurrency_count=14).launch(debug=True)
|
|
|
138 |
show_label=False,
|
139 |
).style(container=False)
|
140 |
|
141 |
+
chatbot = gr.Chatbot().style(height=400)
|
142 |
with gr.Row():
|
143 |
with gr.Column():
|
144 |
msg = gr.Textbox(
|
|
|
164 |
with gr.Row():
|
165 |
change = gr.Button("Change System Prompt")
|
166 |
reset = gr.Button("Reset System Prompt")
|
167 |
+
with gr.Row():
|
168 |
gr.Markdown(
|
169 |
"Disclaimer: The gpt-3.5-turbo model can produce factually incorrect output, and should not be solely relied on to produce "
|
170 |
"factually accurate information. The gpt-3.5-turbo model was trained on various public datasets; while great efforts "
|
|
|
227 |
)
|
228 |
|
229 |
|
230 |
+
demo.queue(max_size=36, concurrency_count=14).launch(debug=True)
|