Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Updating to latest sdk
#21
by
ysharma
HF staff
- opened
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 🌟
|
|
4 |
colorFrom: purple
|
5 |
colorTo: red
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 4.
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: other
|
|
|
4 |
colorFrom: purple
|
5 |
colorTo: red
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.26.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: other
|
app.py
CHANGED
@@ -74,6 +74,14 @@ custom_css = """
|
|
74 |
}
|
75 |
"""
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
with gr.Blocks(analytics_enabled=False, css=custom_css) as demo:
|
78 |
cid = gr.State("")
|
79 |
|
@@ -93,7 +101,7 @@ with gr.Blocks(analytics_enabled=False, css=custom_css) as demo:
|
|
93 |
|
94 |
with gr.Column():
|
95 |
with gr.Row():
|
96 |
-
chatbot = gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True)
|
97 |
|
98 |
with gr.Row():
|
99 |
user_message = gr.Textbox(lines=1, placeholder="Ask anything ...", label="Input", show_label=False)
|
|
|
74 |
}
|
75 |
"""
|
76 |
|
77 |
+
PLACEHOLDER = """
|
78 |
+
<div style="padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center;">
|
79 |
+
<img src="https://txt.cohere.com/content/images/size/w2000/2024/04/r--Blog-Header.png" style="width: 80%; max-width: 450px; height: auto; opacity: 0.55; margin-bottom: 10px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);">
|
80 |
+
<h1 style="font-size: 28px; margin-bottom: 2px; color: #000; opacity: 0.55;">Command R+ Chatbot</h1>
|
81 |
+
<p style="font-size: 18px; margin-bottom: 2px; color: #000; opacity: 0.65;">Ask me anything...</p>
|
82 |
+
</div>
|
83 |
+
"""
|
84 |
+
|
85 |
with gr.Blocks(analytics_enabled=False, css=custom_css) as demo:
|
86 |
cid = gr.State("")
|
87 |
|
|
|
101 |
|
102 |
with gr.Column():
|
103 |
with gr.Row():
|
104 |
+
chatbot = gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, placeholder=PLACEHOLDER)
|
105 |
|
106 |
with gr.Row():
|
107 |
user_message = gr.Textbox(lines=1, placeholder="Ask anything ...", label="Input", show_label=False)
|