mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
450b8cc898
* initial setup * fix hf token prefix * warnings + error handling * implement stream, predict and submit * update blocks with new client * add changeset * temp comment * add changeset * add sse_v3 chages * imrpove typing, reimplement websocket logic * refactor zerogpu logic * integrate fetch_implemenation * wasm changes * tweaks * tscheck fixes * type fixes * test * test import tweaks * test * package.json * improve typing + config * config tweak * remove fetch-mock * pnpm lock * config * remove module * tweak * tweak * fix config * test * test * lockfile * fix types * more config tweaks * type fixes * formatting * fix typing * formatting * type fixes * test * lockfile * revert comment * package.json * tweak * formatting * test * revert ts removal * remove comments + logic fixes * type fix * formatting * test * stream logic changes * fix test * revert comments * fix streaming test * stream tweak * data typing * fix wasm fetch * client typing tweaks * more fixes + typing improvements * move functions * event_source tweaks * cleanup * add hardware types and cleanup jwt * improve api info typing * add await client() backwards compatiblity * rename create to connect and move duplicate logic * Update `Client` usage examples (#8003) * update client examples * remove test data * fix types * remove types changes * client -> Client.create * Update client/js/README.md Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * Update client/js/README.md Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * update duplicate docs * attempt to update cn docs * format --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * type improvements and config error handling * fix image editor issue * Merge branch 'main' into refactor-client * improve typing --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
84 lines
1.1 KiB
Plaintext
84 lines
1.1 KiB
Plaintext
# Python build
|
|
.eggs/
|
|
gradio.egg-info
|
|
dist/
|
|
*.pyc
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
build/
|
|
__tmp/*
|
|
*.pyi
|
|
py.typed
|
|
|
|
# JS build
|
|
gradio/templates/*
|
|
gradio/node/*
|
|
gradio/_frontend_code/*
|
|
js/gradio-preview/test/*
|
|
|
|
# Secrets
|
|
.env
|
|
|
|
# Gradio run artifacts
|
|
*.db
|
|
*.sqlite3
|
|
gradio/launches.json
|
|
flagged/
|
|
gradio_cached_examples/
|
|
tmp.zip
|
|
|
|
# Tests
|
|
.coverage
|
|
coverage.xml
|
|
test.txt
|
|
**/snapshots/**/*.png
|
|
playwright-report/
|
|
|
|
# Demos
|
|
demo/tmp.zip
|
|
demo/files/*.avi
|
|
demo/files/*.mp4
|
|
demo/all_demos/demos/*
|
|
demo/all_demos/requirements.txt
|
|
demo/*/config.json
|
|
demo/annotatedimage_component/*.png
|
|
demo/fake_diffusion_with_gif/*.gif
|
|
demo/cancel_events/cancel_events_output_log.txt
|
|
demo/unload_event_test/output_log.txt
|
|
|
|
# Etc
|
|
.idea/*
|
|
.DS_Store
|
|
*.bak
|
|
workspace.code-workspace
|
|
*.h5
|
|
|
|
# dev containers
|
|
.pnpm-store/
|
|
|
|
# log files
|
|
.pnpm-debug.log
|
|
|
|
# Local virtualenv for devs
|
|
.venv*
|
|
|
|
# FRP
|
|
gradio/frpc_*
|
|
.vercel
|
|
|
|
# js
|
|
node_modules
|
|
public/build/
|
|
test-results
|
|
client/js/dist/*
|
|
client/js/test.js
|
|
.config/test.py
|
|
|
|
# storybook
|
|
storybook-static
|
|
build-storybook.log
|
|
js/storybook/theme.css
|
|
|
|
# playwright
|
|
.config/playwright/.cache |