├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── _extensions └── gradio │ ├── _extension.yml │ ├── assets │ └── css │ │ └── quarto-gradio.css │ ├── gradio-debug.lua │ ├── gradio-html.lua │ ├── gradio-meta.lua │ ├── gradio.lua │ └── table-utils.lua ├── example.qmd ├── pyproject.toml ├── uv.lock └── web ├── .gitignore ├── _extensions ├── _metadata.yml ├── _quarto.yml ├── analytics.html ├── guide ├── _metadata.yml ├── customize-python-modules │ ├── index.qmd │ ├── install-module-via-micropip.qmd │ └── install-module-via-requirements.qmd ├── customize-styles │ └── index.qmd ├── define-multiple-apps │ └── index.qmd ├── enable-coding-playground │ ├── attributes-block.qmd │ ├── attributes-doc.qmd │ ├── coding-challenge.qmd │ └── index.qmd ├── get-started │ ├── hello-world.qmd │ └── index.qmd ├── use-with-jupyter │ └── index.qmd └── use-with-revealjs │ ├── index.qmd │ ├── reveal-gradio-lite-minimal.qmd │ └── reveal-gradio-lite.qmd ├── index.qmd ├── js.html ├── playground ├── _metadata.yml ├── chatbots │ ├── chatbot-with-artifacts.qmd │ ├── chatbot-with-tools.qmd │ ├── chatbot.qmd │ └── streaming-chatbot.qmd ├── design │ ├── layouts.qmd │ └── tabbed-interface.qmd ├── index.qmd ├── media │ ├── generate-tone.qmd │ ├── sepia-filter.qmd │ └── video-identity.qmd ├── tabular │ ├── filter-records.qmd │ ├── kinematics.qmd │ └── transpose-matrix.qmd ├── text │ ├── diff-texts.qmd │ └── sentence-builder.qmd └── transformers │ └── sentiment-analysis.qmd ├── public ├── favicon.png ├── flow.svg ├── gradio-logo.png ├── hello-world-run-cell.gif ├── notebook-flow.gif ├── pyodide-logo.png ├── quarto-gradio-bg.png ├── quarto-gradio-logo.png ├── quarto-gradio.png └── quarto-logo.png ├── reference ├── _metadata.yml └── index.qmd ├── styles.css └── tools └── src-include.lua /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.pdf 3 | *_files/ 4 | /.luarc.json 5 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/README.md -------------------------------------------------------------------------------- /_extensions/gradio/_extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/_extensions/gradio/_extension.yml -------------------------------------------------------------------------------- /_extensions/gradio/assets/css/quarto-gradio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/_extensions/gradio/assets/css/quarto-gradio.css -------------------------------------------------------------------------------- /_extensions/gradio/gradio-debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/_extensions/gradio/gradio-debug.lua -------------------------------------------------------------------------------- /_extensions/gradio/gradio-html.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/_extensions/gradio/gradio-html.lua -------------------------------------------------------------------------------- /_extensions/gradio/gradio-meta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/_extensions/gradio/gradio-meta.lua -------------------------------------------------------------------------------- /_extensions/gradio/gradio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/_extensions/gradio/gradio.lua -------------------------------------------------------------------------------- /_extensions/gradio/table-utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/_extensions/gradio/table-utils.lua -------------------------------------------------------------------------------- /example.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/example.qmd -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/uv.lock -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | *_ipynb 3 | 4 | /.quarto/ 5 | !*.html -------------------------------------------------------------------------------- /web/_extensions: -------------------------------------------------------------------------------- 1 | ../_extensions -------------------------------------------------------------------------------- /web/_metadata.yml: -------------------------------------------------------------------------------- 1 | image: /public/quarto-gradio-bg.png -------------------------------------------------------------------------------- /web/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/_quarto.yml -------------------------------------------------------------------------------- /web/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/analytics.html -------------------------------------------------------------------------------- /web/guide/_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/_metadata.yml -------------------------------------------------------------------------------- /web/guide/customize-python-modules/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/customize-python-modules/index.qmd -------------------------------------------------------------------------------- /web/guide/customize-python-modules/install-module-via-micropip.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/customize-python-modules/install-module-via-micropip.qmd -------------------------------------------------------------------------------- /web/guide/customize-python-modules/install-module-via-requirements.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/customize-python-modules/install-module-via-requirements.qmd -------------------------------------------------------------------------------- /web/guide/customize-styles/index.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "🎨 Customize Styles" 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /web/guide/define-multiple-apps/index.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "📚 Define Multiple Apps" 3 | --- 4 | -------------------------------------------------------------------------------- /web/guide/enable-coding-playground/attributes-block.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/enable-coding-playground/attributes-block.qmd -------------------------------------------------------------------------------- /web/guide/enable-coding-playground/attributes-doc.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/enable-coding-playground/attributes-doc.qmd -------------------------------------------------------------------------------- /web/guide/enable-coding-playground/coding-challenge.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/enable-coding-playground/coding-challenge.qmd -------------------------------------------------------------------------------- /web/guide/enable-coding-playground/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/enable-coding-playground/index.qmd -------------------------------------------------------------------------------- /web/guide/get-started/hello-world.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/get-started/hello-world.qmd -------------------------------------------------------------------------------- /web/guide/get-started/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/get-started/index.qmd -------------------------------------------------------------------------------- /web/guide/use-with-jupyter/index.qmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "📓 Use with Jupyter" 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /web/guide/use-with-revealjs/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/use-with-revealjs/index.qmd -------------------------------------------------------------------------------- /web/guide/use-with-revealjs/reveal-gradio-lite-minimal.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/use-with-revealjs/reveal-gradio-lite-minimal.qmd -------------------------------------------------------------------------------- /web/guide/use-with-revealjs/reveal-gradio-lite.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/guide/use-with-revealjs/reveal-gradio-lite.qmd -------------------------------------------------------------------------------- /web/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/index.qmd -------------------------------------------------------------------------------- /web/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/js.html -------------------------------------------------------------------------------- /web/playground/_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/_metadata.yml -------------------------------------------------------------------------------- /web/playground/chatbots/chatbot-with-artifacts.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/chatbots/chatbot-with-artifacts.qmd -------------------------------------------------------------------------------- /web/playground/chatbots/chatbot-with-tools.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/chatbots/chatbot-with-tools.qmd -------------------------------------------------------------------------------- /web/playground/chatbots/chatbot.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/chatbots/chatbot.qmd -------------------------------------------------------------------------------- /web/playground/chatbots/streaming-chatbot.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/chatbots/streaming-chatbot.qmd -------------------------------------------------------------------------------- /web/playground/design/layouts.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/design/layouts.qmd -------------------------------------------------------------------------------- /web/playground/design/tabbed-interface.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/design/tabbed-interface.qmd -------------------------------------------------------------------------------- /web/playground/index.qmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/playground/media/generate-tone.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/media/generate-tone.qmd -------------------------------------------------------------------------------- /web/playground/media/sepia-filter.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/media/sepia-filter.qmd -------------------------------------------------------------------------------- /web/playground/media/video-identity.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/media/video-identity.qmd -------------------------------------------------------------------------------- /web/playground/tabular/filter-records.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/tabular/filter-records.qmd -------------------------------------------------------------------------------- /web/playground/tabular/kinematics.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/tabular/kinematics.qmd -------------------------------------------------------------------------------- /web/playground/tabular/transpose-matrix.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/tabular/transpose-matrix.qmd -------------------------------------------------------------------------------- /web/playground/text/diff-texts.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/text/diff-texts.qmd -------------------------------------------------------------------------------- /web/playground/text/sentence-builder.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/text/sentence-builder.qmd -------------------------------------------------------------------------------- /web/playground/transformers/sentiment-analysis.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/playground/transformers/sentiment-analysis.qmd -------------------------------------------------------------------------------- /web/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/favicon.png -------------------------------------------------------------------------------- /web/public/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/flow.svg -------------------------------------------------------------------------------- /web/public/gradio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/gradio-logo.png -------------------------------------------------------------------------------- /web/public/hello-world-run-cell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/hello-world-run-cell.gif -------------------------------------------------------------------------------- /web/public/notebook-flow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/notebook-flow.gif -------------------------------------------------------------------------------- /web/public/pyodide-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/pyodide-logo.png -------------------------------------------------------------------------------- /web/public/quarto-gradio-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/quarto-gradio-bg.png -------------------------------------------------------------------------------- /web/public/quarto-gradio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/quarto-gradio-logo.png -------------------------------------------------------------------------------- /web/public/quarto-gradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/quarto-gradio.png -------------------------------------------------------------------------------- /web/public/quarto-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/public/quarto-logo.png -------------------------------------------------------------------------------- /web/reference/_metadata.yml: -------------------------------------------------------------------------------- 1 | image: ../public/quarto-gradio-bg.png -------------------------------------------------------------------------------- /web/reference/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/reference/index.qmd -------------------------------------------------------------------------------- /web/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/styles.css -------------------------------------------------------------------------------- /web/tools/src-include.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peter-gy/quarto-gradio/HEAD/web/tools/src-include.lua --------------------------------------------------------------------------------