Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -227,28 +227,25 @@ 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
|
231 |
-
<p style="font-size: 1.1em; color: #718096;">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
</div>
|
233 |
""",
|
234 |
elem_id="header"
|
235 |
)
|
236 |
-
# 배지 추가
|
237 |
-
gr.Markdown(
|
238 |
-
"""
|
239 |
-
<div style="text-align: center; padding: 10px 0 20px 0;">
|
240 |
-
<a href="https://huggingface.co/spaces/aiqcamp/deepseek-r1-0528" target="_blank">
|
241 |
-
<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">
|
242 |
-
</a>
|
243 |
-
<a href="https://huggingface.co/spaces/aiqcamp/deepseek-r1-0528-qwen3-8b" target="_blank" style="margin-left: 10px;">
|
244 |
-
<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">
|
245 |
-
</a>
|
246 |
-
<a href="https://huggingface.co/spaces/aiqcamp/Mistral-Devstral-API" target="_blank" style="margin-left: 10px;">
|
247 |
-
<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">
|
248 |
-
</a>
|
249 |
-
</div>
|
250 |
-
"""
|
251 |
-
)
|
252 |
chatbot = gr.Chatbot(
|
253 |
label="Chat History",
|
254 |
height=500,
|
|
|
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,
|