Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,11 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
with gr.Blocks(fill_height=True) as demo:
|
| 4 |
-
gr.
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
demo.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
with gr.Blocks(fill_height=True) as demo:
|
| 4 |
+
with gr.Row():
|
| 5 |
+
gr.Markdown("## ✨ CohereLabs/c4ai-command-r7b-12-2024")
|
| 6 |
+
gr.Interface.load(
|
| 7 |
+
"models/CohereLabs/c4ai-command-r7b-12-2024",
|
| 8 |
+
live=True # Optional: enables real-time input updates
|
| 9 |
+
)
|
| 10 |
+
|
| 11 |
demo.launch()
|