likhonsheikh commited on
Commit
0bc6cab
·
verified ·
1 Parent(s): fd99dcd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -1,6 +1,11 @@
1
  import gradio as gr
2
 
3
  with gr.Blocks(fill_height=True) as demo:
4
- gr.load("models/CohereLabs/c4ai-command-r7b-12-2024", accept_token=button, provider="cohere")
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()