Arshveer Singh Gahir's picture
3

Arshveer Singh Gahir

RSHVR
·

AI & ML interests

None yet

Recent Activity

updated a Space 25 days ago
RSHVR/Command_RTC
published a Space 25 days ago
RSHVR/Command_RTC
liked a Space 9 months ago
ggml-org/gguf-my-repo
View all activity

Organizations

Gradio-Themes-Party's profile picture Vici AI Inc.'s profile picture

RSHVR's activity

reacted to abidlabs's post with 🤯❤️ 10 months ago
view post
Post
Lots of cool Gradio custom components, but is the most generally useful one I've seen so far: insert a Modal into any Gradio app by using the modal component!

from gradio_modal import Modal

with gr.Blocks() as demo:
    gr.Markdown("### Main Page")
    gr.Textbox("lorem ipsum " * 1000, lines=10)

    with Modal(visible=True) as modal:
        gr.Markdown("# License Agreement")