Update app.py
Browse files
app.py
CHANGED
@@ -136,7 +136,10 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
136 |
top_p_slider = gr.Slider(minimum=0.1, maximum=1.0, value=0.95, label="Top-p")
|
137 |
|
138 |
# New acknowledgment line at bottom
|
139 |
-
gr.Markdown("
|
|
|
|
|
|
|
140 |
|
141 |
with gr.Column(scale=4):
|
142 |
#chatbot = gr.Chatbot(label="Chat", type="messages")
|
|
|
136 |
top_p_slider = gr.Slider(minimum=0.1, maximum=1.0, value=0.95, label="Top-p")
|
137 |
|
138 |
# New acknowledgment line at bottom
|
139 |
+
gr.Markdown("
|
140 |
+
|
141 |
+
We sincerely acknowledge [VIDraft](https://huggingface.co/VIDraft) for their Phi 4 Reasoning Plus [space](https://huggingface.co/spaces/VIDraft/phi-4-reasoning-plus), which inspired us to create this demo."
|
142 |
+
)
|
143 |
|
144 |
with gr.Column(scale=4):
|
145 |
#chatbot = gr.Chatbot(label="Chat", type="messages")
|