{"library":"gradio","install":[{"cmd":"pip install gradio","imports":["import gradio as gr\n\n# Simple Interface (gr.update() is gone — return values directly)\ndef greet(name, intensity):\n    return 'Hello, ' + name + '!' * intensity\n\ndemo = gr.Interface(\n    fn=greet,\n    inputs=[gr.Textbox(label='Name'), gr.Slider(1, 10, value=3)],\n    outputs=gr.Textbox(label='Greeting')\n)\ndemo.launch()"]}]}