Update app.py
Browse files
app.py
CHANGED
@@ -1320,9 +1320,11 @@ iface = gr.Interface(
|
|
1320 |
inputs=["text", gr.Radio(["emotion", "rational"], label="Mode")],
|
1321 |
outputs="text",
|
1322 |
title="Chatbot Interface",
|
1323 |
-
description="FastAPI ๊ธฐ๋ฐ ์ฑ๋ด + ์ถ์ฒ ์์คํ
"
|
|
|
1324 |
)
|
1325 |
|
|
|
1326 |
if __name__ == "__main__":
|
1327 |
Thread(target=run_fastapi).start()
|
1328 |
iface.launch(server_name="0.0.0.0", server_port=7861)
|
|
|
1320 |
inputs=["text", gr.Radio(["emotion", "rational"], label="Mode")],
|
1321 |
outputs="text",
|
1322 |
title="Chatbot Interface",
|
1323 |
+
description="FastAPI ๊ธฐ๋ฐ ์ฑ๋ด + ์ถ์ฒ ์์คํ
",
|
1324 |
+
flagging_mode="off" # flagging ๋นํ์ฑํ
|
1325 |
)
|
1326 |
|
1327 |
+
|
1328 |
if __name__ == "__main__":
|
1329 |
Thread(target=run_fastapi).start()
|
1330 |
iface.launch(server_name="0.0.0.0", server_port=7861)
|