What's New in Gradio 4.0?

Watch

Custom ComponentsNEW

Guides

New to Gradio? Start here: Getting Started

See the Release History

To install Gradio from main, run the following command:

pip install https://gradio-builds.s3.amazonaws.com/d6f6f18bff72a33b3e2f135b309ec3fc4185c7bf/gradio-4.9.1-py3-none-any.whl

*Note: Setting share=True in launch() will not work.

State

gradio.State(···)

Description

A base class for defining methods that all input/output components should have.

Behavior

As input: undefined

As output: undefined

Initialization

Parameter Description
value

Any

default: None

the initial value (of arbitrary type) of the state. The provided argument is deepcopied. If a callable is provided, the function will be called whenever the app loads to set the initial value of the state.

render

bool

default: True

has no effect, but is included for consistency with other components.