aiqcamp commited on
Commit
cf76e4a
·
verified ·
1 Parent(s): c060c0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -224,28 +224,29 @@ h1, h2 {
224
  """
225
 
226
  with gr.Blocks(css=custom_css, theme=gr.themes.Soft()) as demo:
227
- gr.Markdown(
228
  """
229
  <div style="text-align: center; padding: 20px;">
230
  <h1 style="font-size: 2.5em; margin-bottom: 10px;">🤖 AI Chat Assistant : Mistral-Devstral</h1>
231
  <p style="font-size: 1.1em; color: #718096;">with Web Search</p>
232
 
233
- <!-- 배지 섹션 - 가로 정렬 -->
234
  <div style="margin-top: 20px; display: flex; justify-content: center; align-items: center; gap: 15px;">
235
- <a href="https://huggingface.co/spaces/aiqcamp/deepseek-r1-0528" target="_blank" style="display: inline-block;">
236
  <img src="https://img.shields.io/static/v1?label=Commercial%20API&message=deepseek-r1-0528&color=%230000ff&labelColor=%23800080&logo=huggingface&logoColor=%23ffa500&style=for-the-badge" alt="badge">
237
  </a>
238
- <a href="https://huggingface.co/spaces/aiqcamp/deepseek-r1-0528-qwen3-8b" target="_blank" style="display: inline-block;">
239
  <img src="https://img.shields.io/static/v1?label=Commercial%20API&message=deepseek-r1-0528-qwen3-8b&color=%230000ff&labelColor=%23800080&logo=huggingface&logoColor=%23ffa500&style=for-the-badge" alt="badge">
240
  </a>
241
- <a href="https://huggingface.co/spaces/aiqcamp/Mistral-Devstral-API" target="_blank" style="display: inline-block;">
242
  <img src="https://img.shields.io/static/v1?label=Free%20API&message=Mistral-Devstral&color=%230000ff&labelColor=%23800080&logo=huggingface&logoColor=%23ffa500&style=for-the-badge" alt="badge">
243
  </a>
244
  </div>
245
  </div>
246
- """,
247
- elem_id="header"
248
  )
 
 
249
  chatbot = gr.Chatbot(
250
  label="Chat History",
251
  height=500,
 
224
  """
225
 
226
  with gr.Blocks(css=custom_css, theme=gr.themes.Soft()) as demo:
227
+ gr.HTML(
228
  """
229
  <div style="text-align: center; padding: 20px;">
230
  <h1 style="font-size: 2.5em; margin-bottom: 10px;">🤖 AI Chat Assistant : Mistral-Devstral</h1>
231
  <p style="font-size: 1.1em; color: #718096;">with Web Search</p>
232
 
233
+ <!-- 배지 섹션 -->
234
  <div style="margin-top: 20px; display: flex; justify-content: center; align-items: center; gap: 15px;">
235
+ <a href="https://huggingface.co/spaces/aiqcamp/deepseek-r1-0528" target="_blank">
236
  <img src="https://img.shields.io/static/v1?label=Commercial%20API&message=deepseek-r1-0528&color=%230000ff&labelColor=%23800080&logo=huggingface&logoColor=%23ffa500&style=for-the-badge" alt="badge">
237
  </a>
238
+ <a href="https://huggingface.co/spaces/aiqcamp/deepseek-r1-0528-qwen3-8b" target="_blank">
239
  <img src="https://img.shields.io/static/v1?label=Commercial%20API&message=deepseek-r1-0528-qwen3-8b&color=%230000ff&labelColor=%23800080&logo=huggingface&logoColor=%23ffa500&style=for-the-badge" alt="badge">
240
  </a>
241
+ <a href="https://huggingface.co/spaces/aiqcamp/Mistral-Devstral-API" target="_blank">
242
  <img src="https://img.shields.io/static/v1?label=Free%20API&message=Mistral-Devstral&color=%230000ff&labelColor=%23800080&logo=huggingface&logoColor=%23ffa500&style=for-the-badge" alt="badge">
243
  </a>
244
  </div>
245
  </div>
246
+ """
 
247
  )
248
+
249
+
250
  chatbot = gr.Chatbot(
251
  label="Chat History",
252
  height=500,