Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -96,9 +96,9 @@ def reset_interface():
|
|
| 96 |
# ==========================
|
| 97 |
|
| 98 |
with gr.Blocks(title="Python Code Generator") as demo:
|
| 99 |
-
gr.Markdown("# 🧠
|
| 100 |
gr.Markdown(
|
| 101 |
-
"Generate Python code from natural language instructions using
|
| 102 |
)
|
| 103 |
|
| 104 |
with gr.Row():
|
|
@@ -118,6 +118,7 @@ with gr.Blocks(title="Python Code Generator") as demo:
|
|
| 118 |
chat_output = gr.Chatbot(
|
| 119 |
label="Conversation",
|
| 120 |
height=500,
|
|
|
|
| 121 |
)
|
| 122 |
|
| 123 |
submit_btn.click(
|
|
|
|
| 96 |
# ==========================
|
| 97 |
|
| 98 |
with gr.Blocks(title="Python Code Generator") as demo:
|
| 99 |
+
gr.Markdown("# 🧠 Higher-Quality DeepSeek-Coder for Python")
|
| 100 |
gr.Markdown(
|
| 101 |
+
"Generate Python code from natural language instructions using a DeepSeek-Coder model trained on cleaned data."
|
| 102 |
)
|
| 103 |
|
| 104 |
with gr.Row():
|
|
|
|
| 118 |
chat_output = gr.Chatbot(
|
| 119 |
label="Conversation",
|
| 120 |
height=500,
|
| 121 |
+
type=messages,
|
| 122 |
)
|
| 123 |
|
| 124 |
submit_btn.click(
|