← Back to search
25
Basic
Agentic Readiness Score
ai-tools llms-txtmlai

Agentic Signals

📄
Found
🤖
ai-plugin.json
Not found
📖
OpenAPI Spec
Not found
🔗
Structured API
Not found
🛡
Not specified
🏷
Schema.org Markup
Not found
MCP Server
Not found

Embed this badge

Show off your agentic readiness — the badge auto-updates when your score changes.

Agentic Ready 25/100

            

llms.txt Content

This page contains the documentation for the Gradio library. It is organized into the following sections: - Gradio 6 Migration Guide - Quickstart - The Interface Class - Blocks And Event Listeners - Controlling Layout - More Blocks Features - Custom Css And Js - Streaming Outputs - Streaming Inputs - API Reference: This section contains all the class and function signatures in the Gradio library. - End to End Demos: This section contains examples of full end-to-end Gradio apps. # Gradio 6 Migration Guide We are excited to release Gradio 6, the latest major version of the Gradio library. Gradio 6 is significantly more performant, lighter, and easier to customize than previous versions of Gradio. The Gradio team is only planning on maintaining future versions of Gradio 6 so we encourage all developers to migrate to Gradio 6.x. Gradio 6 includes several breaking changes that were made in order to standardize the Python API. This migration guide lists the breaking changes and the specific code changes needed in order to migrate. The easiest way to know whether you need to make changes is to upgrade your Gradio app to 5.50 (`pip install --upgrade gradio==5.50`). Gradio 5.50 emits deprecation warnings for any parameters removed in Gradio 6, allowing you to know whether your Gradio app will be compatible with Gradio 6. Here, we walk through the breaking changes that were introduced in Gradio 6. Code snippets are provided, allowing you to migrate your code easily to Gradio 6. You can also copy-paste this document as Markdown if you are using an LLM to help migrate your code. ## App-level Changes ### App-level parameters have been moved from `Blocks` to `launch()` The `gr.Blocks` class constructor previously contained several parameters that applied to your entire Gradio app, specifically: * `theme`: The theme for your Gradio app * `css`: Custom CSS code as a string * `css_paths`: Paths to custom CSS files * `js`: Custom JavaScript code * `head`: Custom HTML code