Abubakar Abid

Results 1616 comments of Abubakar Abid

> You are only thinking of your own usage here though. ctrl + f is only useful for power users or people who know exactly what they are looking for....

Should be ready for review! Let me know if you think I should many styling changes @aliabd @pngwn

Hi @Kerrigaaan does a simpler example work for you? ```py import gradio as gr with gr.Blocks() as demo: gr.Textbox(autofocus=True) demo.launch() ``` When you open the Gradio app, is the textbox...

Would you be able a minimal code example that we can use to reproduce the issue above? The current code example has a lot going on. See: https://stackoverflow.com/help/minimal-reproducible-example.

Thanks @Kerrigaaan @lara-gfaria. Apologies for the late reply, but @lara-gfaria you're exactly right. The workaround here is to set `interactive=True`, e.g.: ```py import gradio as gr with gr.Blocks() as demo:...

Thanks @Kerrigaaan @lara-gfaria. Apologies for the late reply, but @lara-gfaria you're exactly right. The workaround here is to set `interactive=True`, e.g.: ```py import gradio as gr with gr.Blocks() as demo:...

(also confirmed that this is present on `main` currently: https://huggingface.co/spaces/abidlabs/hello_world_main)

Thanks @rolandtannous! I checked out the official unsloth container image: ``` % docker run -d -e JUPYTER_PASSWORD="mypassword" \ -p 8888:8888 -p 2222:22 \ -v $(pwd)/work:/workspace/work \ unsloth/unsloth ``` and looked...

> Why is it not present in every component? Feel like it should be as ubiquitous as label=, not this subset of components. Good point! Will implement this and fix...