a100 kh commited on
Commit
dedce6c
1 Parent(s): 2728067
Files changed (1) hide show
  1. app.py +17 -4
app.py CHANGED
@@ -55,6 +55,20 @@ def respond(
55
  """
56
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
57
  """
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  demo = gr.ChatInterface(
59
  respond,
60
  additional_inputs=[
@@ -74,12 +88,11 @@ demo = gr.ChatInterface(
74
  ],
75
  )
76
  description = """
77
- ### Tanuki-8x8B-dpo-v1.0との会話(期間限定での公開)
78
- - 人工知能開発のため、入出力データは著作権フリー(CC0)で公開予定ですので、ご注意ください。
79
- - 著作物、個人情報、機密情報、誹謗中傷などのデータを入力しないでください。
80
  """
81
  # グループ化して表示
82
- with gr.Blocks() as interface:
83
  # 説明文を表示
84
  gr.Markdown(description)
85
  # ChatInterfaceを表示
 
55
  """
56
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
57
  """
58
+
59
+ # カスタムCSS
60
+ custom_css = """
61
+ #chatbox {
62
+ height: 600px; /* 高さを調整 */
63
+ overflow-y: auto; /* 縦方向のスクロールを可能に */
64
+ }
65
+
66
+ .gradio-chatbot .message {
67
+ max-width: 80%; /* チャットボックスの横幅調整 */
68
+ margin-bottom: 20px; /* メッセージ間のマージン調整 */
69
+ }
70
+ """
71
+
72
  demo = gr.ChatInterface(
73
  respond,
74
  additional_inputs=[
 
88
  ],
89
  )
90
  description = """
91
+ ### [Tanuki-8x8B-dpo-v1.0](https://huggingface.co/weblab-GENIAC/Tanuki-8x8B-dpo-v1.0)との会話(期間限定での公開)
92
+ - 人工知能開発のため、入出力データは著作権フリー(CC0)で公開予定ですので、ご注意ください。著作物、個人情報、機密情報、誹謗中傷などのデータを入力しないでください。
 
93
  """
94
  # グループ化して表示
95
+ with gr.Blocks(css=custom_css) as interface:
96
  # 説明文を表示
97
  gr.Markdown(description)
98
  # ChatInterfaceを表示