diff --git a/README.md b/README.md index c4cb94f1..0bc8f7ff 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,26 @@ If you want to use AI agents with virtualized environments: Explore the [Notebooks](./notebooks/) for ready-to-run examples. -4. For Developers (contribute and use latest features): +4. Optionally, you can use the Agent with a Gradio UI: + + ```bash + python -m pip install ai-gradio + ``` + + ```python + import gradio as gr + import ai_gradio + + gr.load( + name='cua:gpt-4', # currently ignored + src=ai_gradio.registry, + title="Cua - AI Agent" + ).launch() + ``` + + Refer to this [Notebook](./notebooks/gradio_agent_nb.ipynb) for a complete example. + +5. For Developers only (contribute and use latest features): ```bash # Clone the repository git clone https://github.com/trycua/cua.git