Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
@@ -118,8 +118,10 @@ with gr.Blocks() as demo:
|
|
118 |
chatbot = gr.Chatbot()
|
119 |
|
120 |
input = gr.Textbox(show_label=False, placeholder="チェックしたい文章を入力してください")
|
|
|
|
|
121 |
|
122 |
-
input.submit(fn=chat, inputs=
|
123 |
|
124 |
input.submit(fn=lambda: "", inputs=None, outputs=input) # (上記に加えて)入力欄をクリア
|
125 |
|
|
|
118 |
chatbot = gr.Chatbot()
|
119 |
|
120 |
input = gr.Textbox(show_label=False, placeholder="チェックしたい文章を入力してください")
|
121 |
+
|
122 |
+
inputs=[input, gr.Radio(["確率を出力", "理由を出力"], value= "確率を出力", label="モードを選択"), gr.Slider(minimum=0, maximum=1, value=0.3, step=0.05, label="NG度の閾値")]
|
123 |
|
124 |
+
input.submit(fn=chat, inputs=inputs, outputs=chatbot) # メッセージ送信されたら、AIと会話してチャット欄に全会話内容を表示
|
125 |
|
126 |
input.submit(fn=lambda: "", inputs=None, outputs=input) # (上記に加えて)入力欄をクリア
|
127 |
|