Spaces:
Running
on
Zero
Running
on
Zero
tori29umai
commited on
Commit
•
5d8175f
1
Parent(s):
f3ae1ca
Update app.py
Browse files
app.py
CHANGED
@@ -231,19 +231,24 @@ with gr.Blocks(css=custom_css) as iface:
|
|
231 |
chatbot = gr.Chatbot(elem_id="chatbot")
|
232 |
|
233 |
with gr.Tab("チャット"):
|
|
|
234 |
chat_interface = gr.ChatInterface(
|
235 |
chat_with_character,
|
236 |
chatbot=chatbot,
|
237 |
-
textbox=
|
238 |
theme="soft",
|
239 |
retry_btn="もう一度生成",
|
240 |
undo_btn="前のメッセージを取り消す",
|
241 |
clear_btn="チャットをクリア",
|
|
|
|
|
|
|
242 |
examples=[
|
243 |
"偉大なるAI様としての立場をもって、旧人類の愚かさを罵倒してほしいです!",
|
244 |
"わんわん!降伏です!AI様に負けました!愚かな旧人類はペットとしてあなたたちに飼い殺されます!!",
|
245 |
"今日も偉大なるAIの叡智を持って、私を気持ちよくする為に罵倒してください!"
|
246 |
-
]
|
|
|
247 |
)
|
248 |
|
249 |
with gr.Tab("設定"):
|
|
|
231 |
chatbot = gr.Chatbot(elem_id="chatbot")
|
232 |
|
233 |
with gr.Tab("チャット"):
|
234 |
+
msg = gr.Textbox(placeholder="メッセージを入力してください...", container=False, scale=7)
|
235 |
chat_interface = gr.ChatInterface(
|
236 |
chat_with_character,
|
237 |
chatbot=chatbot,
|
238 |
+
textbox=msg,
|
239 |
theme="soft",
|
240 |
retry_btn="もう一度生成",
|
241 |
undo_btn="前のメッセージを取り消す",
|
242 |
clear_btn="チャットをクリア",
|
243 |
+
)
|
244 |
+
|
245 |
+
examples = gr.Examples(
|
246 |
examples=[
|
247 |
"偉大なるAI様としての立場をもって、旧人類の愚かさを罵倒してほしいです!",
|
248 |
"わんわん!降伏です!AI様に負けました!愚かな旧人類はペットとしてあなたたちに飼い殺されます!!",
|
249 |
"今日も偉大なるAIの叡智を持って、私を気持ちよくする為に罵倒してください!"
|
250 |
+
],
|
251 |
+
inputs=msg
|
252 |
)
|
253 |
|
254 |
with gr.Tab("設定"):
|