File size: 10,287 Bytes
12b01be c97e8ee 12b01be c97e8ee 12b01be c97e8ee 12b01be c97e8ee 12b01be c97e8ee 12b01be c97e8ee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
# import time
# import gradio as gr
# from gradio.themes.utils.theme_dropdown import create_theme_dropdown
# dropdown, js = create_theme_dropdown()
# with gr.Blocks(theme='Respair/[email protected]') as demo:
# with gr.Row():
# with gr.Column(scale=10):
# gr.Markdown(
# """
# # Theme preview: `Shiki`
# To use this theme, set `theme='Respair/[email protected]'` or `theme='Respair/[email protected]'` in `gr.Blocks()` or `gr.Interface()`.
# of this theme.
# """
# )
# # with gr.Column(scale=3):
# # with gr.Box():
# # dropdown.render()
# # toggle_dark = gr.Button(value="Toggle Dark")
# dropdown.change(None, dropdown, None, _js=js)
# toggle_dark.click(
# None,
# _js="""
# () => {
# document.body.classList.toggle('dark');
# }
# """,
# )
# name = gr.Textbox(
# label="Name",
# info="Full name, including middle name. No special characters.",
# placeholder="John Doe",
# value="John Doe",
# interactive=True,
# )
# with gr.Row():
# slider1 = gr.Slider(label="Slider 1")
# slider2 = gr.Slider(label="Slider 2")
# gr.CheckboxGroup(["A", "B", "C"], label="Checkbox Group")
# with gr.Row():
# with gr.Column(variant="panel", scale=1):
# gr.Markdown("## Panel 1")
# radio = gr.Radio(
# ["A", "B", "C"],
# label="Radio",
# info="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
# )
# drop = gr.Dropdown(["Option 1", "Option 2", "Option 3"], show_label=False)
# drop_2 = gr.Dropdown(
# ["Option A", "Option B", "Option C"],
# multiselect=True,
# value=["Option A"],
# label="Dropdown",
# interactive=True,
# )
# check = gr.Checkbox(label="Go")
# with gr.Column(variant="panel", scale=2):
# img = gr.Image(
# "https://i.ibb.co/ydPm3n8/download-12-0.webp",
# label="Image",
# )
# with gr.Row():
# go_btn = gr.Button("Go", label="Primary Button", variant="primary")
# clear_btn = gr.Button(
# "Clear", label="Secondary Button", variant="secondary"
# )
# def go(*args):
# time.sleep(3)
# return "https://i.ibb.co/ydPm3n8/download-12-0.webp"
# go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
# def clear():
# time.sleep(0.2)
# return None
# clear_btn.click(clear, None, img)
# with gr.Row():
# btn1 = gr.Button("Button 1")
# btn2 = gr.UploadButton()
# stop_btn = gr.Button("Stop", label="Stop Button", variant="stop")
# with gr.Row():
# gr.Dataframe(value=[[1, 2, 3], [4, 5, 6], [7, 8, 9]], label="Dataframe")
# gr.JSON(
# value={"a": 1, "b": 2, "c": {"test": "a", "test2": [1, 2, 3]}}, label="JSON"
# )
# gr.Label(value={"cat": 0.7, "dog": 0.2, "fish": 0.1})
# gr.File()
# with gr.Row():
# gr.ColorPicker()
# gr.Video("https://gradio-static-files.s3.us-west-2.amazonaws.com/world.mp4")
# gr.Gallery(
# [
# (
# "https://gradio-static-files.s3.us-west-2.amazonaws.com/lion.jpg",
# "lion",
# ),
# (
# "https://gradio-static-files.s3.us-west-2.amazonaws.com/logo.png",
# "logo",
# ),
# (
# "https://gradio-static-files.s3.us-west-2.amazonaws.com/tower.jpg",
# "tower",
# ),
# ]
# )
# with gr.Row():
# with gr.Column(scale=2):
# chatbot = gr.Chatbot([("Hello", "Hi")], label="Chatbot")
# chat_btn = gr.Button("Add messages")
# def chat(history):
# time.sleep(2)
# yield [["How are you?", "I am good."]]
# chat_btn.click(
# lambda history: history
# + [["How are you?", "I am good."]]
# + (time.sleep(2) or []),
# chatbot,
# chatbot,
# )
# with gr.Column(scale=1):
# with gr.Accordion("Advanced Settings"):
# gr.Markdown("Hello")
# gr.Number(label="Chatbot control 1")
# gr.Number(label="Chatbot control 2")
# gr.Number(label="Chatbot control 3")
# if __name__ == "__main__":
# demo.queue().launch()
import time
import gradio as gr
from gradio.themes.utils.theme_dropdown import create_theme_dropdown
dropdown, js = create_theme_dropdown()
with gr.Blocks(theme='Respair/[email protected]') as demo:
with gr.Row().style(equal_height=True):
with gr.Column(scale=10):
gr.Markdown(
"""
# Theme preview: `Shiki`
To use this theme, set `theme='Respair/[email protected]'` or `theme='Respair/[email protected]'` in `gr.Blocks()` or `gr.Interface()`.
of this theme.
"""
)
with gr.Column(scale=3):
with gr.Box():
dropdown.render()
toggle_dark = gr.Button(value="Toggle Dark").style(full_width=True)
dropdown.change(None, dropdown, None, _js=js)
toggle_dark.click(
None,
_js="""
() => {
document.body.classList.toggle('dark');
}
""",
)
name = gr.Textbox(
label="Name",
info="Full name, including middle name. No special characters.",
placeholder="John Doe",
value="John Doe",
interactive=True,
)
with gr.Row():
slider1 = gr.Slider(label="Slider 1")
slider2 = gr.Slider(label="Slider 2")
gr.CheckboxGroup(["A", "B", "C"], label="Checkbox Group")
with gr.Row():
with gr.Column(variant="panel", scale=1):
gr.Markdown("## Panel 1")
radio = gr.Radio(
["A", "B", "C"],
label="Radio",
info="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
)
drop = gr.Dropdown(["Option 1", "Option 2", "Option 3"], show_label=False)
drop_2 = gr.Dropdown(
["Option A", "Option B", "Option C"],
multiselect=True,
value=["Option A"],
label="Dropdown",
interactive=True,
)
check = gr.Checkbox(label="Go")
with gr.Column(variant="panel", scale=2):
img = gr.Image(
"https://i.ibb.co/ydPm3n8/download-12-0.webp",
label="Image",
).style(height=320)
with gr.Row():
go_btn = gr.Button("Go", label="Primary Button", variant="primary")
clear_btn = gr.Button(
"Clear", label="Secondary Button", variant="secondary"
)
def go(*args):
time.sleep(3)
return "https://i.ibb.co/ydPm3n8/download-12-0.webp"
go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
def clear():
time.sleep(0.2)
return None
clear_btn.click(clear, None, img)
with gr.Row():
btn1 = gr.Button("Button 1").style(size="sm")
btn2 = gr.UploadButton().style(size="sm")
stop_btn = gr.Button("Stop", label="Stop Button", variant="stop").style(
size="sm"
)
with gr.Row():
gr.Dataframe(value=[[1, 2, 3], [4, 5, 6], [7, 8, 9]], label="Dataframe")
gr.JSON(
value={"a": 1, "b": 2, "c": {"test": "a", "test2": [1, 2, 3]}}, label="JSON"
)
gr.Label(value={"cat": 0.7, "dog": 0.2, "fish": 0.1})
gr.File()
with gr.Row():
gr.ColorPicker()
gr.Video("https://gradio-static-files.s3.us-west-2.amazonaws.com/world.mp4")
gr.Gallery(
[
(
"https://gradio-static-files.s3.us-west-2.amazonaws.com/lion.jpg",
"lion",
),
(
"https://gradio-static-files.s3.us-west-2.amazonaws.com/logo.png",
"logo",
),
(
"https://gradio-static-files.s3.us-west-2.amazonaws.com/tower.jpg",
"tower",
),
]
).style(height="200px", grid=2)
with gr.Row():
with gr.Column(scale=2):
chatbot = gr.Chatbot([("Hello", "Hi")], label="Chatbot")
chat_btn = gr.Button("Add messages")
def chat(history):
time.sleep(2)
yield [["How are you?", "I am good."]]
chat_btn.click(
lambda history: history
+ [["How are you?", "I am good."]]
+ (time.sleep(2) or []),
chatbot,
chatbot,
)
with gr.Column(scale=1):
with gr.Accordion("Advanced Settings"):
gr.Markdown("Hello")
gr.Number(label="Chatbot control 1")
gr.Number(label="Chatbot control 2")
gr.Number(label="Chatbot control 3")
if __name__ == "__main__":
demo.queue().launch()
|