Spaces:
Running
Running
a100 kh
commited on
Commit
•
a885267
1
Parent(s):
4b48f66
description
Browse files
app.py
CHANGED
@@ -73,7 +73,19 @@ demo = gr.ChatInterface(
|
|
73 |
),
|
74 |
],
|
75 |
)
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
if __name__ == "__main__":
|
79 |
-
demo.launch()
|
|
|
|
73 |
),
|
74 |
],
|
75 |
)
|
76 |
+
description = """
|
77 |
+
# Tanuki-8x8B-dpo-v1.0との会話
|
78 |
+
- 自然言語処理の研究のため、入出力データは著作権フリー(CC0)で公開予定ですので、ご注意ください。
|
79 |
+
- 著作物、個人情報、機密情報、誹謗中傷などのデータを入力しないでください。
|
80 |
+
- 上記のルールに同意頂いた方のみ、ご利用ください。
|
81 |
+
"""
|
82 |
+
# グループ化して表示
|
83 |
+
with gr.Blocks() as interface:
|
84 |
+
# 説明文を表示
|
85 |
+
gr.Markdown(description)
|
86 |
+
# ChatInterfaceを表示
|
87 |
+
demo
|
88 |
|
89 |
if __name__ == "__main__":
|
90 |
+
# demo.launch()
|
91 |
+
interface.launch()
|