Spaces:
Running
Running
File size: 760 Bytes
23c859c 60a3ae1 fde3e5f 23c859c fde3e5f 23c859c 60a3ae1 fde3e5f 23c859c 60a3ae1 23c859c |
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 |
from gradio import components as gc
import gradio as gr
# Create a sidebar component
sidebar = gc.SideBar()
for item in sidebar_items:
prompt_button = gc.Button(text=item["prompt"])
description = item["description"]
# Add additional styling or functionality if needed
# Append the button and description to the sidebar component
sidebar.append(prompt_button, description)
# Create the interface without a sidebar (since we've added it separately)
iface = gr.Interface(
fn=greet,
inputs="text",
outputs="text",
title="Greeting App",
description="Ask a user for their name and greet them."
)
# Add the left sidebar to the interface
iface.add_component(sidebar, side="left")
# Launch the Gradio app
iface.launch()
|