mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-30 11:00:11 +08:00
chore: update versions (#7871)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
173c966866
commit
bbdbd28453
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:logout route deleting cookie fix
|
@ -1,42 +0,0 @@
|
||||
---
|
||||
"@gradio/client": minor
|
||||
"gradio": minor
|
||||
"gradio_client": minor
|
||||
---
|
||||
|
||||
highlight:
|
||||
|
||||
#### Automatically delete state after user has disconnected from the webpage
|
||||
|
||||
Gradio now automatically deletes `gr.State` variables stored in the server's RAM when users close their browser tab.
|
||||
The deletion will happen 60 minutes after the server detected a disconnect from the user's browser.
|
||||
If the user connects again in that timeframe, their state will not be deleted.
|
||||
|
||||
Additionally, Gradio now includes a `Blocks.unload()` event, allowing you to run arbitrary cleanup functions when users disconnect (this does not have a 60 minute delay).
|
||||
You can think of the `unload` event as the opposite of the `load` event.
|
||||
|
||||
|
||||
```python
|
||||
with gr.Blocks() as demo:
|
||||
gr.Markdown(
|
||||
"""# State Cleanup Demo
|
||||
🖼️ Images are saved in a user-specific directory and deleted when the users closes the page via demo.unload.
|
||||
""")
|
||||
with gr.Row():
|
||||
with gr.Column(scale=1):
|
||||
with gr.Row():
|
||||
img = gr.Image(label="Generated Image", height=300, width=300)
|
||||
with gr.Row():
|
||||
gen = gr.Button(value="Generate")
|
||||
with gr.Row():
|
||||
history = gr.Gallery(label="Previous Generations", height=500, columns=10)
|
||||
state = gr.State(value=[], delete_callback=lambda v: print("STATE DELETED"))
|
||||
|
||||
demo.load(generate_random_img, [state], [img, state, history])
|
||||
gen.click(generate_random_img, [state], [img, state, history])
|
||||
demo.unload(delete_directory)
|
||||
|
||||
|
||||
demo.launch(auth=lambda user,pwd: True,
|
||||
auth_message="Enter any username and password to continue")
|
||||
```
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Add support for lazy caching of examples, as well as add `GRADIO_CACHE_EXAMPLES` env variable
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Suppress printing "Running on local URL:" when quiet is set
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
"gradio_client": patch
|
||||
---
|
||||
|
||||
fix:Cache view_api info in server and python client
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix audio streaming out
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:JS functions break entire app if there's no input, fixed
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Make buttons in `gr.ChatInterface` more mobile-friendly
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/multimodaltextbox": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Paste Images into MultimodalTextbox
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Make internal event handlers of gr.Interface and gr.ChatInterface async
|
56
CHANGELOG.md
56
CHANGELOG.md
@ -1,5 +1,61 @@
|
||||
# gradio
|
||||
|
||||
## 4.25.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Automatically delete state after user has disconnected from the webpage ([#7829](https://github.com/gradio-app/gradio/pull/7829) [`6a4bf7a`](https://github.com/gradio-app/gradio/commit/6a4bf7abe29059dbdc6a342e0366fdaa2e4120ee))
|
||||
|
||||
Gradio now automatically deletes `gr.State` variables stored in the server's RAM when users close their browser tab.
|
||||
The deletion will happen 60 minutes after the server detected a disconnect from the user's browser.
|
||||
If the user connects again in that timeframe, their state will not be deleted.
|
||||
|
||||
Additionally, Gradio now includes a `Blocks.unload()` event, allowing you to run arbitrary cleanup functions when users disconnect (this does not have a 60 minute delay).
|
||||
You can think of the `unload` event as the opposite of the `load` event.
|
||||
|
||||
|
||||
```python
|
||||
with gr.Blocks() as demo:
|
||||
gr.Markdown(
|
||||
"""# State Cleanup Demo
|
||||
🖼️ Images are saved in a user-specific directory and deleted when the users closes the page via demo.unload.
|
||||
""")
|
||||
with gr.Row():
|
||||
with gr.Column(scale=1):
|
||||
with gr.Row():
|
||||
img = gr.Image(label="Generated Image", height=300, width=300)
|
||||
with gr.Row():
|
||||
gen = gr.Button(value="Generate")
|
||||
with gr.Row():
|
||||
history = gr.Gallery(label="Previous Generations", height=500, columns=10)
|
||||
state = gr.State(value=[], delete_callback=lambda v: print("STATE DELETED"))
|
||||
|
||||
demo.load(generate_random_img, [state], [img, state, history])
|
||||
gen.click(generate_random_img, [state], [img, state, history])
|
||||
demo.unload(delete_directory)
|
||||
|
||||
|
||||
demo.launch(auth=lambda user,pwd: True,
|
||||
auth_message="Enter any username and password to continue")
|
||||
```
|
||||
|
||||
Thanks @freddyaboulton!
|
||||
|
||||
### Features
|
||||
|
||||
- [#7863](https://github.com/gradio-app/gradio/pull/7863) [`024b44c`](https://github.com/gradio-app/gradio/commit/024b44c553e73f1d6c00d4c8cf12ae38181a454d) - Add support for lazy caching of examples, as well as add `GRADIO_CACHE_EXAMPLES` env variable. Thanks @abidlabs!
|
||||
- [#7892](https://github.com/gradio-app/gradio/pull/7892) [`c7933ff`](https://github.com/gradio-app/gradio/commit/c7933ffedb3e2b952152f7d3ce49de2e2da5cc07) - Suppress printing "Running on local URL:" when quiet is set. Thanks @dnoliver!
|
||||
- [#7869](https://github.com/gradio-app/gradio/pull/7869) [`b9dbcf7`](https://github.com/gradio-app/gradio/commit/b9dbcf7aa22fe9a19edbc0c52d46a973d8d57ad4) - Make buttons in `gr.ChatInterface` more mobile-friendly. Thanks @abidlabs!
|
||||
- [#7875](https://github.com/gradio-app/gradio/pull/7875) [`e6d051d`](https://github.com/gradio-app/gradio/commit/e6d051dc8a497fdd6b4cfbd57efd4c8015b97a66) - Paste Images into MultimodalTextbox. Thanks @abidlabs!
|
||||
- [#7893](https://github.com/gradio-app/gradio/pull/7893) [`f42d3e2`](https://github.com/gradio-app/gradio/commit/f42d3e29c7b8cdedd7aea75cffce81857db28eeb) - Make internal event handlers of gr.Interface and gr.ChatInterface async. Thanks @freddyaboulton!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#7886](https://github.com/gradio-app/gradio/pull/7886) [`ccdab9b`](https://github.com/gradio-app/gradio/commit/ccdab9b7e729c438649075d7d54afc9a91183677) - logout route deleting cookie fix. Thanks @MichaelPerger!
|
||||
- [#7888](https://github.com/gradio-app/gradio/pull/7888) [`946487c`](https://github.com/gradio-app/gradio/commit/946487cf8e477cbf8d6fad4e772ff574a21782c3) - Cache view_api info in server and python client. Thanks @freddyaboulton!
|
||||
- [#7881](https://github.com/gradio-app/gradio/pull/7881) [`5e66e01`](https://github.com/gradio-app/gradio/commit/5e66e01abc4e2e90bd51f0cb9a41e05157cb0df4) - Fix audio streaming out. Thanks @aliabid94!
|
||||
- [#7865](https://github.com/gradio-app/gradio/pull/7865) [`7bbc3b6`](https://github.com/gradio-app/gradio/commit/7bbc3b62bf85af2d2230e5f7539efb7f1f0007a1) - JS functions break entire app if there's no input, fixed. Thanks @aliabid94!
|
||||
|
||||
## 4.24.0
|
||||
|
||||
### Features
|
||||
|
@ -1,5 +1,46 @@
|
||||
# @gradio/client
|
||||
|
||||
## 0.15.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Automatically delete state after user has disconnected from the webpage ([#7829](https://github.com/gradio-app/gradio/pull/7829) [`6a4bf7a`](https://github.com/gradio-app/gradio/commit/6a4bf7abe29059dbdc6a342e0366fdaa2e4120ee))
|
||||
|
||||
Gradio now automatically deletes `gr.State` variables stored in the server's RAM when users close their browser tab.
|
||||
The deletion will happen 60 minutes after the server detected a disconnect from the user's browser.
|
||||
If the user connects again in that timeframe, their state will not be deleted.
|
||||
|
||||
Additionally, Gradio now includes a `Blocks.unload()` event, allowing you to run arbitrary cleanup functions when users disconnect (this does not have a 60 minute delay).
|
||||
You can think of the `unload` event as the opposite of the `load` event.
|
||||
|
||||
|
||||
```python
|
||||
with gr.Blocks() as demo:
|
||||
gr.Markdown(
|
||||
"""# State Cleanup Demo
|
||||
🖼️ Images are saved in a user-specific directory and deleted when the users closes the page via demo.unload.
|
||||
""")
|
||||
with gr.Row():
|
||||
with gr.Column(scale=1):
|
||||
with gr.Row():
|
||||
img = gr.Image(label="Generated Image", height=300, width=300)
|
||||
with gr.Row():
|
||||
gen = gr.Button(value="Generate")
|
||||
with gr.Row():
|
||||
history = gr.Gallery(label="Previous Generations", height=500, columns=10)
|
||||
state = gr.State(value=[], delete_callback=lambda v: print("STATE DELETED"))
|
||||
|
||||
demo.load(generate_random_img, [state], [img, state, history])
|
||||
gen.click(generate_random_img, [state], [img, state, history])
|
||||
demo.unload(delete_directory)
|
||||
|
||||
|
||||
demo.launch(auth=lambda user,pwd: True,
|
||||
auth_message="Enter any username and password to continue")
|
||||
```
|
||||
|
||||
Thanks @freddyaboulton!
|
||||
|
||||
## 0.14.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/client",
|
||||
"version": "0.14.0",
|
||||
"version": "0.15.0",
|
||||
"description": "Gradio API client",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
|
@ -1,5 +1,50 @@
|
||||
# gradio_client
|
||||
|
||||
## 0.15.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Automatically delete state after user has disconnected from the webpage ([#7829](https://github.com/gradio-app/gradio/pull/7829) [`6a4bf7a`](https://github.com/gradio-app/gradio/commit/6a4bf7abe29059dbdc6a342e0366fdaa2e4120ee))
|
||||
|
||||
Gradio now automatically deletes `gr.State` variables stored in the server's RAM when users close their browser tab.
|
||||
The deletion will happen 60 minutes after the server detected a disconnect from the user's browser.
|
||||
If the user connects again in that timeframe, their state will not be deleted.
|
||||
|
||||
Additionally, Gradio now includes a `Blocks.unload()` event, allowing you to run arbitrary cleanup functions when users disconnect (this does not have a 60 minute delay).
|
||||
You can think of the `unload` event as the opposite of the `load` event.
|
||||
|
||||
|
||||
```python
|
||||
with gr.Blocks() as demo:
|
||||
gr.Markdown(
|
||||
"""# State Cleanup Demo
|
||||
🖼️ Images are saved in a user-specific directory and deleted when the users closes the page via demo.unload.
|
||||
""")
|
||||
with gr.Row():
|
||||
with gr.Column(scale=1):
|
||||
with gr.Row():
|
||||
img = gr.Image(label="Generated Image", height=300, width=300)
|
||||
with gr.Row():
|
||||
gen = gr.Button(value="Generate")
|
||||
with gr.Row():
|
||||
history = gr.Gallery(label="Previous Generations", height=500, columns=10)
|
||||
state = gr.State(value=[], delete_callback=lambda v: print("STATE DELETED"))
|
||||
|
||||
demo.load(generate_random_img, [state], [img, state, history])
|
||||
gen.click(generate_random_img, [state], [img, state, history])
|
||||
demo.unload(delete_directory)
|
||||
|
||||
|
||||
demo.launch(auth=lambda user,pwd: True,
|
||||
auth_message="Enter any username and password to continue")
|
||||
```
|
||||
|
||||
Thanks @freddyaboulton!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#7888](https://github.com/gradio-app/gradio/pull/7888) [`946487c`](https://github.com/gradio-app/gradio/commit/946487cf8e477cbf8d6fad4e772ff574a21782c3) - Cache view_api info in server and python client. Thanks @freddyaboulton!
|
||||
|
||||
## 0.14.0
|
||||
|
||||
### Features
|
||||
|
@ -1,5 +1,50 @@
|
||||
# gradio_client
|
||||
|
||||
## 0.15.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Automatically delete state after user has disconnected from the webpage ([#7829](https://github.com/gradio-app/gradio/pull/7829) [`6a4bf7a`](https://github.com/gradio-app/gradio/commit/6a4bf7abe29059dbdc6a342e0366fdaa2e4120ee))
|
||||
|
||||
Gradio now automatically deletes `gr.State` variables stored in the server's RAM when users close their browser tab.
|
||||
The deletion will happen 60 minutes after the server detected a disconnect from the user's browser.
|
||||
If the user connects again in that timeframe, their state will not be deleted.
|
||||
|
||||
Additionally, Gradio now includes a `Blocks.unload()` event, allowing you to run arbitrary cleanup functions when users disconnect (this does not have a 60 minute delay).
|
||||
You can think of the `unload` event as the opposite of the `load` event.
|
||||
|
||||
|
||||
```python
|
||||
with gr.Blocks() as demo:
|
||||
gr.Markdown(
|
||||
"""# State Cleanup Demo
|
||||
🖼️ Images are saved in a user-specific directory and deleted when the users closes the page via demo.unload.
|
||||
""")
|
||||
with gr.Row():
|
||||
with gr.Column(scale=1):
|
||||
with gr.Row():
|
||||
img = gr.Image(label="Generated Image", height=300, width=300)
|
||||
with gr.Row():
|
||||
gen = gr.Button(value="Generate")
|
||||
with gr.Row():
|
||||
history = gr.Gallery(label="Previous Generations", height=500, columns=10)
|
||||
state = gr.State(value=[], delete_callback=lambda v: print("STATE DELETED"))
|
||||
|
||||
demo.load(generate_random_img, [state], [img, state, history])
|
||||
gen.click(generate_random_img, [state], [img, state, history])
|
||||
demo.unload(delete_directory)
|
||||
|
||||
|
||||
demo.launch(auth=lambda user,pwd: True,
|
||||
auth_message="Enter any username and password to continue")
|
||||
```
|
||||
|
||||
Thanks @freddyaboulton!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#7888](https://github.com/gradio-app/gradio/pull/7888) [`946487c`](https://github.com/gradio-app/gradio/commit/946487cf8e477cbf8d6fad4e772ff574a21782c3) - Cache view_api info in server and python client. Thanks @freddyaboulton!
|
||||
|
||||
## 0.14.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio_client",
|
||||
"version": "0.14.0",
|
||||
"version": "0.15.0",
|
||||
"description": "",
|
||||
"python": "true",
|
||||
"main_changeset": true
|
||||
|
@ -1,5 +1,61 @@
|
||||
# gradio
|
||||
|
||||
## 4.25.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Automatically delete state after user has disconnected from the webpage ([#7829](https://github.com/gradio-app/gradio/pull/7829) [`6a4bf7a`](https://github.com/gradio-app/gradio/commit/6a4bf7abe29059dbdc6a342e0366fdaa2e4120ee))
|
||||
|
||||
Gradio now automatically deletes `gr.State` variables stored in the server's RAM when users close their browser tab.
|
||||
The deletion will happen 60 minutes after the server detected a disconnect from the user's browser.
|
||||
If the user connects again in that timeframe, their state will not be deleted.
|
||||
|
||||
Additionally, Gradio now includes a `Blocks.unload()` event, allowing you to run arbitrary cleanup functions when users disconnect (this does not have a 60 minute delay).
|
||||
You can think of the `unload` event as the opposite of the `load` event.
|
||||
|
||||
|
||||
```python
|
||||
with gr.Blocks() as demo:
|
||||
gr.Markdown(
|
||||
"""# State Cleanup Demo
|
||||
🖼️ Images are saved in a user-specific directory and deleted when the users closes the page via demo.unload.
|
||||
""")
|
||||
with gr.Row():
|
||||
with gr.Column(scale=1):
|
||||
with gr.Row():
|
||||
img = gr.Image(label="Generated Image", height=300, width=300)
|
||||
with gr.Row():
|
||||
gen = gr.Button(value="Generate")
|
||||
with gr.Row():
|
||||
history = gr.Gallery(label="Previous Generations", height=500, columns=10)
|
||||
state = gr.State(value=[], delete_callback=lambda v: print("STATE DELETED"))
|
||||
|
||||
demo.load(generate_random_img, [state], [img, state, history])
|
||||
gen.click(generate_random_img, [state], [img, state, history])
|
||||
demo.unload(delete_directory)
|
||||
|
||||
|
||||
demo.launch(auth=lambda user,pwd: True,
|
||||
auth_message="Enter any username and password to continue")
|
||||
```
|
||||
|
||||
Thanks @freddyaboulton!
|
||||
|
||||
### Features
|
||||
|
||||
- [#7863](https://github.com/gradio-app/gradio/pull/7863) [`024b44c`](https://github.com/gradio-app/gradio/commit/024b44c553e73f1d6c00d4c8cf12ae38181a454d) - Add support for lazy caching of examples, as well as add `GRADIO_CACHE_EXAMPLES` env variable. Thanks @abidlabs!
|
||||
- [#7892](https://github.com/gradio-app/gradio/pull/7892) [`c7933ff`](https://github.com/gradio-app/gradio/commit/c7933ffedb3e2b952152f7d3ce49de2e2da5cc07) - Suppress printing "Running on local URL:" when quiet is set. Thanks @dnoliver!
|
||||
- [#7869](https://github.com/gradio-app/gradio/pull/7869) [`b9dbcf7`](https://github.com/gradio-app/gradio/commit/b9dbcf7aa22fe9a19edbc0c52d46a973d8d57ad4) - Make buttons in `gr.ChatInterface` more mobile-friendly. Thanks @abidlabs!
|
||||
- [#7875](https://github.com/gradio-app/gradio/pull/7875) [`e6d051d`](https://github.com/gradio-app/gradio/commit/e6d051dc8a497fdd6b4cfbd57efd4c8015b97a66) - Paste Images into MultimodalTextbox. Thanks @abidlabs!
|
||||
- [#7893](https://github.com/gradio-app/gradio/pull/7893) [`f42d3e2`](https://github.com/gradio-app/gradio/commit/f42d3e29c7b8cdedd7aea75cffce81857db28eeb) - Make internal event handlers of gr.Interface and gr.ChatInterface async. Thanks @freddyaboulton!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#7886](https://github.com/gradio-app/gradio/pull/7886) [`ccdab9b`](https://github.com/gradio-app/gradio/commit/ccdab9b7e729c438649075d7d54afc9a91183677) - logout route deleting cookie fix. Thanks @MichaelPerger!
|
||||
- [#7888](https://github.com/gradio-app/gradio/pull/7888) [`946487c`](https://github.com/gradio-app/gradio/commit/946487cf8e477cbf8d6fad4e772ff574a21782c3) - Cache view_api info in server and python client. Thanks @freddyaboulton!
|
||||
- [#7881](https://github.com/gradio-app/gradio/pull/7881) [`5e66e01`](https://github.com/gradio-app/gradio/commit/5e66e01abc4e2e90bd51f0cb9a41e05157cb0df4) - Fix audio streaming out. Thanks @aliabid94!
|
||||
- [#7865](https://github.com/gradio-app/gradio/pull/7865) [`7bbc3b6`](https://github.com/gradio-app/gradio/commit/7bbc3b62bf85af2d2230e5f7539efb7f1f0007a1) - JS functions break entire app if there's no input, fixed. Thanks @aliabid94!
|
||||
|
||||
## 4.24.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio",
|
||||
"version": "4.24.0",
|
||||
"version": "4.25.0",
|
||||
"description": "",
|
||||
"python": "true"
|
||||
}
|
||||
|
@ -4,6 +4,12 @@
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.0.1
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/form@0.1.12
|
||||
|
||||
## 0.0.1
|
||||
|
@ -1,5 +1,11 @@
|
||||
# website
|
||||
|
||||
## 0.25.2
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/code@0.5.10
|
||||
|
||||
## 0.25.1
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "website",
|
||||
"version": "0.25.1",
|
||||
"version": "0.25.2",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "python generate_jsons/generate.py && vite dev",
|
||||
@ -22,7 +22,7 @@
|
||||
},
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"@gradio/code": "0.5.9",
|
||||
"@gradio/code": "0.5.10",
|
||||
"@sindresorhus/slugify": "^2.2.0",
|
||||
"@sveltejs/adapter-vercel": "^3.0.3",
|
||||
"hast-util-to-string": "^3.0.0",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/annotatedimage
|
||||
|
||||
## 0.5.10
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.5.9
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/annotatedimage",
|
||||
"version": "0.5.9",
|
||||
"version": "0.5.10",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,34 @@
|
||||
# @gradio/app
|
||||
|
||||
## 1.30.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#7865](https://github.com/gradio-app/gradio/pull/7865) [`7bbc3b6`](https://github.com/gradio-app/gradio/commit/7bbc3b62bf85af2d2230e5f7539efb7f1f0007a1) - JS functions break entire app if there's no input, fixed. Thanks @aliabid94!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/button@0.2.29
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/code@0.5.10
|
||||
- @gradio/client@0.15.0
|
||||
- @gradio/multimodaltextbox@0.2.3
|
||||
- @gradio/annotatedimage@0.5.10
|
||||
- @gradio/audio@0.9.10
|
||||
- @gradio/chatbot@0.8.1
|
||||
- @gradio/dataset@0.1.29
|
||||
- @gradio/downloadbutton@0.1.6
|
||||
- @gradio/file@0.5.10
|
||||
- @gradio/fileexplorer@0.3.30
|
||||
- @gradio/gallery@0.8.6
|
||||
- @gradio/image@0.9.10
|
||||
- @gradio/imageeditor@0.4.10
|
||||
- @gradio/model3d@0.8.9
|
||||
- @gradio/simpleimage@0.3.10
|
||||
- @gradio/uploadbutton@0.5.6
|
||||
- @gradio/video@0.6.10
|
||||
- @gradio/dataframe@0.6.11
|
||||
|
||||
## 1.30.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/app",
|
||||
"version": "1.30.0",
|
||||
"version": "1.30.1",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/audio
|
||||
|
||||
## 0.9.10
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/button@0.2.29
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.9.9
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/audio",
|
||||
"version": "0.9.9",
|
||||
"version": "0.9.10",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/button
|
||||
|
||||
## 0.2.29
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.2.28
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/button",
|
||||
"version": "0.2.28",
|
||||
"version": "0.2.29",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/chatbot
|
||||
|
||||
## 0.8.1
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
- @gradio/audio@0.9.10
|
||||
- @gradio/image@0.9.10
|
||||
- @gradio/video@0.6.10
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/chatbot",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/code
|
||||
|
||||
## 0.5.10
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
|
||||
## 0.5.9
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/code",
|
||||
"version": "0.5.9",
|
||||
"version": "0.5.10",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/dataframe
|
||||
|
||||
## 0.6.11
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/button@0.2.29
|
||||
- @gradio/upload@0.8.3
|
||||
|
||||
## 0.6.10
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dataframe",
|
||||
"version": "0.6.10",
|
||||
"version": "0.6.11",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/dataset
|
||||
|
||||
## 0.1.29
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.1.28
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dataset",
|
||||
"version": "0.1.28",
|
||||
"version": "0.1.29",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/downloadbutton
|
||||
|
||||
## 0.1.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/button@0.2.29
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.1.5
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/downloadbutton",
|
||||
"version": "0.1.5",
|
||||
"version": "0.1.6",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/file
|
||||
|
||||
## 0.5.10
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.5.9
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/file",
|
||||
"version": "0.5.9",
|
||||
"version": "0.5.10",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/fileexplorer
|
||||
|
||||
## 0.3.30
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
- @gradio/file@0.5.10
|
||||
|
||||
## 0.3.29
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/fileexplorer",
|
||||
"version": "0.3.29",
|
||||
"version": "0.3.30",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/gallery
|
||||
|
||||
## 0.8.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
- @gradio/file@0.5.10
|
||||
- @gradio/image@0.9.10
|
||||
|
||||
## 0.8.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/gallery",
|
||||
"version": "0.8.5",
|
||||
"version": "0.8.6",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/image
|
||||
|
||||
## 0.9.10
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.9.9
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/image",
|
||||
"version": "0.9.9",
|
||||
"version": "0.9.10",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/imageeditor
|
||||
|
||||
## 0.4.10
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
- @gradio/image@0.9.10
|
||||
|
||||
## 0.4.9
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/imageeditor",
|
||||
"version": "0.4.9",
|
||||
"version": "0.4.10",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/lite
|
||||
|
||||
## 4.25.0
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- gradio@4.25.0
|
||||
|
||||
## 4.24.0
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/lite",
|
||||
"version": "4.24.0",
|
||||
"version": "4.25.0",
|
||||
"description": "Serverless Gradio",
|
||||
"type": "module",
|
||||
"main": "dist/lite.js",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/model3d
|
||||
|
||||
## 0.8.9
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.8.8
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/model3d",
|
||||
"version": "0.8.8",
|
||||
"version": "0.8.9",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# @gradio/multimodaltextbox
|
||||
|
||||
## 0.2.3
|
||||
|
||||
### Features
|
||||
|
||||
- [#7875](https://github.com/gradio-app/gradio/pull/7875) [`e6d051d`](https://github.com/gradio-app/gradio/commit/e6d051dc8a497fdd6b4cfbd57efd4c8015b97a66) - Paste Images into MultimodalTextbox. Thanks @abidlabs!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
- @gradio/image@0.9.10
|
||||
|
||||
## 0.2.2
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/multimodaltextbox",
|
||||
"version": "0.2.2",
|
||||
"version": "0.2.3",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/simpleimage
|
||||
|
||||
## 0.3.10
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.3.9
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/simpleimage",
|
||||
"version": "0.3.9",
|
||||
"version": "0.3.10",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/upload
|
||||
|
||||
## 0.8.3
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.8.2
|
||||
|
||||
### Fixes
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/upload",
|
||||
"version": "0.8.2",
|
||||
"version": "0.8.3",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/uploadbutton
|
||||
|
||||
## 0.5.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/button@0.2.29
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
|
||||
## 0.5.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/uploadbutton",
|
||||
"version": "0.5.5",
|
||||
"version": "0.5.6",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/video
|
||||
|
||||
## 0.6.10
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/upload@0.8.3
|
||||
- @gradio/client@0.15.0
|
||||
- @gradio/image@0.9.10
|
||||
|
||||
## 0.6.9
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/video",
|
||||
"version": "0.6.9",
|
||||
"version": "0.6.10",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -273,7 +273,7 @@ importers:
|
||||
js/_website:
|
||||
dependencies:
|
||||
'@gradio/code':
|
||||
specifier: 0.5.9
|
||||
specifier: 0.5.10
|
||||
version: link:../code
|
||||
'@sindresorhus/slugify':
|
||||
specifier: ^2.2.0
|
||||
|
@ -2,7 +2,7 @@ aiofiles>=22.0,<24.0
|
||||
altair>=4.2.0,<6.0
|
||||
fastapi
|
||||
ffmpy
|
||||
gradio_client==0.14.0
|
||||
gradio_client==0.15.0
|
||||
httpx>=0.24.1
|
||||
huggingface_hub>=0.19.3
|
||||
importlib_resources>=1.3,<7.0
|
||||
|
Loading…
Reference in New Issue
Block a user