mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
chore: update versions (#8458)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
41a449383a
commit
b301ce418b
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/client": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix js client bundle
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"@gradio/client": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Refactor Cancelling Logic To Use /cancel
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
"website": patch
|
||||
---
|
||||
|
||||
feat:Tweak meta titles and descriptions for clients
|
@ -1,177 +0,0 @@
|
||||
---
|
||||
"@gradio/client": major
|
||||
"gradio_client": major
|
||||
---
|
||||
|
||||
highlight:
|
||||
|
||||
#### Clients 1.0 Launch!
|
||||
|
||||
We're excited to unveil the first major release of the Gradio clients.
|
||||
We've made it even easier to turn any Gradio application into a production endpoint thanks to the clients' **ergonomic**, **transparent**, and **portable** design.
|
||||
|
||||
#### Ergonomic API 💆
|
||||
|
||||
**Stream From a Gradio app in 5 lines**
|
||||
|
||||
Use the `submit` method to get a job you can iterate over:
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("gradio/llm_stream")
|
||||
|
||||
for result in client.submit("What's the best UI framework in Python?"):
|
||||
print(result)
|
||||
```
|
||||
|
||||
```ts
|
||||
import { Client } from "@gradio/client";
|
||||
|
||||
const client = await Client.connect("gradio/llm_stream")
|
||||
const job = client.submit("/predict", {"text": "What's the best UI framework in Python?"})
|
||||
|
||||
for await (const msg of job) console.log(msg.data)
|
||||
```
|
||||
|
||||
**Use the same keyword arguments as the app**
|
||||
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("http://127.0.0.1:7860/")
|
||||
result = client.predict(
|
||||
message="Hello!!",
|
||||
system_prompt="You are helpful AI.",
|
||||
tokens=10,
|
||||
api_name="/chat"
|
||||
)
|
||||
print(result)
|
||||
```
|
||||
|
||||
```ts
|
||||
import { Client } from "@gradio/client";
|
||||
|
||||
const client = await Client.connect("http://127.0.0.1:7860/");
|
||||
const result = await client.predict("/chat", {
|
||||
message: "Hello!!",
|
||||
system_prompt: "Hello!!",
|
||||
tokens: 10,
|
||||
});
|
||||
|
||||
console.log(result.data);
|
||||
```
|
||||
|
||||
**Better Error Messages**
|
||||
|
||||
If something goes wrong in the upstream app, the client will raise the same exception as the app provided that `show_error=True` in the original app's `launch()` function, or it's a `gr.Error` exception.
|
||||
|
||||
#### Transparent Design 🪟
|
||||
|
||||
Anything you can do in the UI, you can do with the client:
|
||||
* 🔒 Authentication
|
||||
* 🛑 Job Cancelling
|
||||
* ℹ️ Access Queue Position and API
|
||||
* 📕 View the API information
|
||||
|
||||
Here's an example showing how to display the queue position of a pending job:
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("gradio/diffusion_model")
|
||||
|
||||
job = client.submit("A cute cat")
|
||||
while not job.done():
|
||||
status = job.status()
|
||||
print(f"Current in position {status.rank} out of {status.queue_size}")
|
||||
```
|
||||
|
||||
#### Portable Design ⛺️
|
||||
|
||||
The client can run from pretty much any python and javascript environment (node, deno, the browser, Service Workers).
|
||||
|
||||
Here's an example using the client from a Flask server using gevent:
|
||||
|
||||
```python
|
||||
from gevent import monkey
|
||||
monkey.patch_all()
|
||||
|
||||
from gradio_client import Client
|
||||
from flask import Flask, send_file
|
||||
import time
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
imageclient = Client("gradio/diffusion_model")
|
||||
|
||||
@app.route("/gen")
|
||||
def gen():
|
||||
result = imageclient.predict(
|
||||
"A cute cat",
|
||||
api_name="/predict"
|
||||
)
|
||||
return send_file(result)
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host="0.0.0.0", port=5000)
|
||||
```
|
||||
|
||||
#### 1.0 Migration Guide and Breaking Changes
|
||||
|
||||
**Python**
|
||||
- The `serialize` argument of the `Client` class was removed. Has no effect.
|
||||
- The `upload_files` argument of the `Client` was removed.
|
||||
- All filepaths must be wrapped in the `handle_file` method. Example:
|
||||
```python
|
||||
from gradio_client import Client, handle_file
|
||||
|
||||
client = Client("gradio/image_captioner")
|
||||
client.predict(handle_file("cute_cat.jpg"))
|
||||
```
|
||||
- The `output_dir` argument was removed. It is not specified in the `download_files` argument.
|
||||
|
||||
|
||||
**Javascript**
|
||||
The client has been redesigned entirely. It was refactored from a function into a class. An instance can now be constructed by awaiting the `connect` method.
|
||||
|
||||
```js
|
||||
const app = await Client.connect("gradio/whisper")
|
||||
```
|
||||
The app variable has the same methods as the python class (`submit`, `predict`, `view_api`, `duplicate`).
|
||||
|
||||
|
||||
|
||||
#### Additional Changes
|
||||
|
||||
- [#8243](https://github.com/gradio-app/gradio/pull/8243) - Set orig_name in python client file uploads.
|
||||
- [#8264](https://github.com/gradio-app/gradio/pull/8264) - Make exceptions in the Client more specific.
|
||||
- [#8247](https://github.com/gradio-app/gradio/pull/8247) - Fix api recorder.
|
||||
- [#8276](https://github.com/gradio-app/gradio/pull/8276) - Fix bug where client could not connect to apps that had self signed certificates.
|
||||
- [#8245](https://github.com/gradio-app/gradio/pull/8245) - Cancel server progress from the python client.
|
||||
- [#8200](https://github.com/gradio-app/gradio/pull/8200) - Support custom components in gr.load
|
||||
- [#8182](https://github.com/gradio-app/gradio/pull/8182) - Convert sse calls in client from async to sync.
|
||||
- [#7732](https://github.com/gradio-app/gradio/pull/7732) - Adds support for kwargs and default arguments in the python client, and improves how parameter information is displayed in the "view API" page.
|
||||
- [#7888](https://github.com/gradio-app/gradio/pull/7888) - Cache view_api info in server and python client.
|
||||
- [#7575](https://github.com/gradio-app/gradio/pull/7575) - Files should now be supplied as `file(...)` in the Client, and some fixes to `gr.load()` as well.
|
||||
- [#8401](https://github.com/gradio-app/gradio/pull/8401) - Add CDN installation to JS docs.
|
||||
- [#8299](https://github.com/gradio-app/gradio/pull/8299) - Allow JS Client to work with authenticated spaces 🍪.
|
||||
- [#8408](https://github.com/gradio-app/gradio/pull/8408) - Connect heartbeat if state created in render. Also fix config cleanup bug #8407.
|
||||
- [#8258](https://github.com/gradio-app/gradio/pull/8258) - Improve URL handling in JS Client.
|
||||
- [#8322](https://github.com/gradio-app/gradio/pull/8322) - ensure the client correctly handles all binary data.
|
||||
- [#8296](https://github.com/gradio-app/gradio/pull/8296) - always create a jwt when connecting to a space if a hf_token is present.
|
||||
- [#8285](https://github.com/gradio-app/gradio/pull/8285) - use the correct query param to pass the jwt to the heartbeat event.
|
||||
- [#8272](https://github.com/gradio-app/gradio/pull/8272) - ensure client works for private spaces.
|
||||
- [#8197](https://github.com/gradio-app/gradio/pull/8197) - Add support for passing keyword args to `data` in JS client.
|
||||
- [#8252](https://github.com/gradio-app/gradio/pull/8252) - Client node fix.
|
||||
- [#8209](https://github.com/gradio-app/gradio/pull/8209) - Rename `eventSource_Factory` and `fetch_implementation`.
|
||||
- [#8109](https://github.com/gradio-app/gradio/pull/8109) - Implement JS Client tests.
|
||||
- [#8211](https://github.com/gradio-app/gradio/pull/8211) - remove redundant event source logic.
|
||||
- [#8179](https://github.com/gradio-app/gradio/pull/8179) - rework upload to be a class method + pass client into each component.
|
||||
- [#8181](https://github.com/gradio-app/gradio/pull/8181) - Ensure connectivity to private HF spaces with SSE protocol.
|
||||
- [#8169](https://github.com/gradio-app/gradio/pull/8169) - Only connect to heartbeat if needed.
|
||||
- [#8118](https://github.com/gradio-app/gradio/pull/8118) - Add eventsource polyfill for Node.js and browser environments.
|
||||
- [#7646](https://github.com/gradio-app/gradio/pull/7646) - Refactor JS Client.
|
||||
- [#7974](https://github.com/gradio-app/gradio/pull/7974) - Fix heartbeat in the js client to be Lite compatible.
|
||||
- [#7926](https://github.com/gradio-app/gradio/pull/7926) - Fixes streaming event race condition.
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Support Bash in Api Recorder
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
"@gradio/file": minor
|
||||
"@gradio/tootils": minor
|
||||
"@gradio/upload": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:add delete event to `File` component
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@gradio/app": minor
|
||||
"gradio": minor
|
||||
"gradio_client": minor
|
||||
---
|
||||
|
||||
feat:Remove deprecated parameters from Python Client
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Improve design of api recorder
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"@gradio/client": patch
|
||||
"@gradio/file": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Change client submit API to be an AsyncIterable and support more platforms
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Add cURL to view API Page and add a dedicated Guide
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@gradio/client": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Improve file handling in JS Client
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"@gradio/client": patch
|
||||
"@gradio/preview": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Handle gradio apps using `state` in the JS Client
|
18
CHANGELOG.md
18
CHANGELOG.md
@ -1,5 +1,23 @@
|
||||
# gradio
|
||||
|
||||
## 4.34.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#8370](https://github.com/gradio-app/gradio/pull/8370) [`48eeea4`](https://github.com/gradio-app/gradio/commit/48eeea4eaab7e24168688e3c3fbafb30e4e78d51) - Refactor Cancelling Logic To Use /cancel. Thanks @freddyaboulton!
|
||||
- [#8460](https://github.com/gradio-app/gradio/pull/8460) [`8628899`](https://github.com/gradio-app/gradio/commit/86288993d9589ceb7bcc3e4d10f0adb6419d4ac5) - Support Bash in Api Recorder. Thanks @aliabd!
|
||||
- [#8417](https://github.com/gradio-app/gradio/pull/8417) [`96d8de2`](https://github.com/gradio-app/gradio/commit/96d8de231270321da5f310768643363276df3204) - add delete event to `File` component. Thanks @pngwn!
|
||||
- [#8444](https://github.com/gradio-app/gradio/pull/8444) [`2cd02ff`](https://github.com/gradio-app/gradio/commit/2cd02ff3b7c57cd69635d111ff25643eba30b9b0) - Remove deprecated parameters from Python Client. Thanks @abidlabs!
|
||||
- [#8473](https://github.com/gradio-app/gradio/pull/8473) [`8ca93d4`](https://github.com/gradio-app/gradio/commit/8ca93d45dd9f8948cfe87fe16ef5943139e756a7) - Improve design of api recorder. Thanks @aliabd!
|
||||
- [#8445](https://github.com/gradio-app/gradio/pull/8445) [`5c8915b`](https://github.com/gradio-app/gradio/commit/5c8915b11308756c3b7279864d240ea85f5a0b4a) - Add cURL to view API Page and add a dedicated Guide. Thanks @abidlabs!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#8477](https://github.com/gradio-app/gradio/pull/8477) [`d5a9604`](https://github.com/gradio-app/gradio/commit/d5a960493017a4890685af61d78ce7d3b3b12e6b) - Fix js client bundle. Thanks @pngwn!
|
||||
- [#8451](https://github.com/gradio-app/gradio/pull/8451) [`9d2d605`](https://github.com/gradio-app/gradio/commit/9d2d6051caed5c8749a26a6fa7480a5ae6e6c4f3) - Change client submit API to be an AsyncIterable and support more platforms. Thanks @pngwn!
|
||||
- [#8462](https://github.com/gradio-app/gradio/pull/8462) [`6447dfa`](https://github.com/gradio-app/gradio/commit/6447dface4d46db1c69460e8325a1928d0476a46) - Improve file handling in JS Client. Thanks @hannahblair!
|
||||
- [#8439](https://github.com/gradio-app/gradio/pull/8439) [`63d36fb`](https://github.com/gradio-app/gradio/commit/63d36fbbf4bf6dc909be9a0ffc7b6bf6621d83e8) - Handle gradio apps using `state` in the JS Client. Thanks @hannahblair!
|
||||
|
||||
## 4.33.0
|
||||
|
||||
### Features
|
||||
|
@ -1,5 +1,193 @@
|
||||
# @gradio/client
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Clients 1.0 Launch! ([#8468](https://github.com/gradio-app/gradio/pull/8468) [`7cc0a0c`](https://github.com/gradio-app/gradio/commit/7cc0a0c1abea585c3f50ffb1ff78d2b08ddbdd92))
|
||||
|
||||
We're excited to unveil the first major release of the Gradio clients.
|
||||
We've made it even easier to turn any Gradio application into a production endpoint thanks to the clients' **ergonomic**, **transparent**, and **portable** design.
|
||||
|
||||
#### Ergonomic API 💆
|
||||
|
||||
**Stream From a Gradio app in 5 lines**
|
||||
|
||||
Use the `submit` method to get a job you can iterate over:
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("gradio/llm_stream")
|
||||
|
||||
for result in client.submit("What's the best UI framework in Python?"):
|
||||
print(result)
|
||||
```
|
||||
|
||||
```ts
|
||||
import { Client } from "@gradio/client";
|
||||
|
||||
const client = await Client.connect("gradio/llm_stream")
|
||||
const job = client.submit("/predict", {"text": "What's the best UI framework in Python?"})
|
||||
|
||||
for await (const msg of job) console.log(msg.data)
|
||||
```
|
||||
|
||||
**Use the same keyword arguments as the app**
|
||||
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("http://127.0.0.1:7860/")
|
||||
result = client.predict(
|
||||
message="Hello!!",
|
||||
system_prompt="You are helpful AI.",
|
||||
tokens=10,
|
||||
api_name="/chat"
|
||||
)
|
||||
print(result)
|
||||
```
|
||||
|
||||
```ts
|
||||
import { Client } from "@gradio/client";
|
||||
|
||||
const client = await Client.connect("http://127.0.0.1:7860/");
|
||||
const result = await client.predict("/chat", {
|
||||
message: "Hello!!",
|
||||
system_prompt: "Hello!!",
|
||||
tokens: 10,
|
||||
});
|
||||
|
||||
console.log(result.data);
|
||||
```
|
||||
|
||||
**Better Error Messages**
|
||||
|
||||
If something goes wrong in the upstream app, the client will raise the same exception as the app provided that `show_error=True` in the original app's `launch()` function, or it's a `gr.Error` exception.
|
||||
|
||||
#### Transparent Design 🪟
|
||||
|
||||
Anything you can do in the UI, you can do with the client:
|
||||
* 🔒 Authentication
|
||||
* 🛑 Job Cancelling
|
||||
* ℹ️ Access Queue Position and API
|
||||
* 📕 View the API information
|
||||
|
||||
Here's an example showing how to display the queue position of a pending job:
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("gradio/diffusion_model")
|
||||
|
||||
job = client.submit("A cute cat")
|
||||
while not job.done():
|
||||
status = job.status()
|
||||
print(f"Current in position {status.rank} out of {status.queue_size}")
|
||||
```
|
||||
|
||||
#### Portable Design ⛺️
|
||||
|
||||
The client can run from pretty much any python and javascript environment (node, deno, the browser, Service Workers).
|
||||
|
||||
Here's an example using the client from a Flask server using gevent:
|
||||
|
||||
```python
|
||||
from gevent import monkey
|
||||
monkey.patch_all()
|
||||
|
||||
from gradio_client import Client
|
||||
from flask import Flask, send_file
|
||||
import time
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
imageclient = Client("gradio/diffusion_model")
|
||||
|
||||
@app.route("/gen")
|
||||
def gen():
|
||||
result = imageclient.predict(
|
||||
"A cute cat",
|
||||
api_name="/predict"
|
||||
)
|
||||
return send_file(result)
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host="0.0.0.0", port=5000)
|
||||
```
|
||||
|
||||
#### 1.0 Migration Guide and Breaking Changes
|
||||
|
||||
**Python**
|
||||
- The `serialize` argument of the `Client` class was removed. Has no effect.
|
||||
- The `upload_files` argument of the `Client` was removed.
|
||||
- All filepaths must be wrapped in the `handle_file` method. Example:
|
||||
```python
|
||||
from gradio_client import Client, handle_file
|
||||
|
||||
client = Client("gradio/image_captioner")
|
||||
client.predict(handle_file("cute_cat.jpg"))
|
||||
```
|
||||
- The `output_dir` argument was removed. It is not specified in the `download_files` argument.
|
||||
|
||||
|
||||
**Javascript**
|
||||
The client has been redesigned entirely. It was refactored from a function into a class. An instance can now be constructed by awaiting the `connect` method.
|
||||
|
||||
```js
|
||||
const app = await Client.connect("gradio/whisper")
|
||||
```
|
||||
The app variable has the same methods as the python class (`submit`, `predict`, `view_api`, `duplicate`).
|
||||
|
||||
|
||||
|
||||
#### Additional Changes
|
||||
|
||||
- [#8243](https://github.com/gradio-app/gradio/pull/8243) - Set orig_name in python client file uploads.
|
||||
- [#8264](https://github.com/gradio-app/gradio/pull/8264) - Make exceptions in the Client more specific.
|
||||
- [#8247](https://github.com/gradio-app/gradio/pull/8247) - Fix api recorder.
|
||||
- [#8276](https://github.com/gradio-app/gradio/pull/8276) - Fix bug where client could not connect to apps that had self signed certificates.
|
||||
- [#8245](https://github.com/gradio-app/gradio/pull/8245) - Cancel server progress from the python client.
|
||||
- [#8200](https://github.com/gradio-app/gradio/pull/8200) - Support custom components in gr.load
|
||||
- [#8182](https://github.com/gradio-app/gradio/pull/8182) - Convert sse calls in client from async to sync.
|
||||
- [#7732](https://github.com/gradio-app/gradio/pull/7732) - Adds support for kwargs and default arguments in the python client, and improves how parameter information is displayed in the "view API" page.
|
||||
- [#7888](https://github.com/gradio-app/gradio/pull/7888) - Cache view_api info in server and python client.
|
||||
- [#7575](https://github.com/gradio-app/gradio/pull/7575) - Files should now be supplied as `file(...)` in the Client, and some fixes to `gr.load()` as well.
|
||||
- [#8401](https://github.com/gradio-app/gradio/pull/8401) - Add CDN installation to JS docs.
|
||||
- [#8299](https://github.com/gradio-app/gradio/pull/8299) - Allow JS Client to work with authenticated spaces 🍪.
|
||||
- [#8408](https://github.com/gradio-app/gradio/pull/8408) - Connect heartbeat if state created in render. Also fix config cleanup bug #8407.
|
||||
- [#8258](https://github.com/gradio-app/gradio/pull/8258) - Improve URL handling in JS Client.
|
||||
- [#8322](https://github.com/gradio-app/gradio/pull/8322) - ensure the client correctly handles all binary data.
|
||||
- [#8296](https://github.com/gradio-app/gradio/pull/8296) - always create a jwt when connecting to a space if a hf_token is present.
|
||||
- [#8285](https://github.com/gradio-app/gradio/pull/8285) - use the correct query param to pass the jwt to the heartbeat event.
|
||||
- [#8272](https://github.com/gradio-app/gradio/pull/8272) - ensure client works for private spaces.
|
||||
- [#8197](https://github.com/gradio-app/gradio/pull/8197) - Add support for passing keyword args to `data` in JS client.
|
||||
- [#8252](https://github.com/gradio-app/gradio/pull/8252) - Client node fix.
|
||||
- [#8209](https://github.com/gradio-app/gradio/pull/8209) - Rename `eventSource_Factory` and `fetch_implementation`.
|
||||
- [#8109](https://github.com/gradio-app/gradio/pull/8109) - Implement JS Client tests.
|
||||
- [#8211](https://github.com/gradio-app/gradio/pull/8211) - remove redundant event source logic.
|
||||
- [#8179](https://github.com/gradio-app/gradio/pull/8179) - rework upload to be a class method + pass client into each component.
|
||||
- [#8181](https://github.com/gradio-app/gradio/pull/8181) - Ensure connectivity to private HF spaces with SSE protocol.
|
||||
- [#8169](https://github.com/gradio-app/gradio/pull/8169) - Only connect to heartbeat if needed.
|
||||
- [#8118](https://github.com/gradio-app/gradio/pull/8118) - Add eventsource polyfill for Node.js and browser environments.
|
||||
- [#7646](https://github.com/gradio-app/gradio/pull/7646) - Refactor JS Client.
|
||||
- [#7974](https://github.com/gradio-app/gradio/pull/7974) - Fix heartbeat in the js client to be Lite compatible.
|
||||
- [#7926](https://github.com/gradio-app/gradio/pull/7926) - Fixes streaming event race condition.
|
||||
|
||||
Thanks @freddyaboulton!
|
||||
|
||||
### Features
|
||||
|
||||
- [#8370](https://github.com/gradio-app/gradio/pull/8370) [`48eeea4`](https://github.com/gradio-app/gradio/commit/48eeea4eaab7e24168688e3c3fbafb30e4e78d51) - Refactor Cancelling Logic To Use /cancel. Thanks @freddyaboulton!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#8477](https://github.com/gradio-app/gradio/pull/8477) [`d5a9604`](https://github.com/gradio-app/gradio/commit/d5a960493017a4890685af61d78ce7d3b3b12e6b) - Fix js client bundle. Thanks @pngwn!
|
||||
- [#8451](https://github.com/gradio-app/gradio/pull/8451) [`9d2d605`](https://github.com/gradio-app/gradio/commit/9d2d6051caed5c8749a26a6fa7480a5ae6e6c4f3) - Change client submit API to be an AsyncIterable and support more platforms. Thanks @pngwn!
|
||||
- [#8462](https://github.com/gradio-app/gradio/pull/8462) [`6447dfa`](https://github.com/gradio-app/gradio/commit/6447dface4d46db1c69460e8325a1928d0476a46) - Improve file handling in JS Client. Thanks @hannahblair!
|
||||
- [#8439](https://github.com/gradio-app/gradio/pull/8439) [`63d36fb`](https://github.com/gradio-app/gradio/commit/63d36fbbf4bf6dc909be9a0ffc7b6bf6621d83e8) - Handle gradio apps using `state` in the JS Client. Thanks @hannahblair!
|
||||
|
||||
## 0.20.1
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/client",
|
||||
"version": "0.20.1",
|
||||
"version": "1.0.0",
|
||||
"description": "Gradio API client",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
|
@ -1,5 +1,186 @@
|
||||
# gradio_client
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Clients 1.0 Launch! ([#8468](https://github.com/gradio-app/gradio/pull/8468) [`7cc0a0c`](https://github.com/gradio-app/gradio/commit/7cc0a0c1abea585c3f50ffb1ff78d2b08ddbdd92))
|
||||
|
||||
We're excited to unveil the first major release of the Gradio clients.
|
||||
We've made it even easier to turn any Gradio application into a production endpoint thanks to the clients' **ergonomic**, **transparent**, and **portable** design.
|
||||
|
||||
#### Ergonomic API 💆
|
||||
|
||||
**Stream From a Gradio app in 5 lines**
|
||||
|
||||
Use the `submit` method to get a job you can iterate over:
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("gradio/llm_stream")
|
||||
|
||||
for result in client.submit("What's the best UI framework in Python?"):
|
||||
print(result)
|
||||
```
|
||||
|
||||
```ts
|
||||
import { Client } from "@gradio/client";
|
||||
|
||||
const client = await Client.connect("gradio/llm_stream")
|
||||
const job = client.submit("/predict", {"text": "What's the best UI framework in Python?"})
|
||||
|
||||
for await (const msg of job) console.log(msg.data)
|
||||
```
|
||||
|
||||
**Use the same keyword arguments as the app**
|
||||
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("http://127.0.0.1:7860/")
|
||||
result = client.predict(
|
||||
message="Hello!!",
|
||||
system_prompt="You are helpful AI.",
|
||||
tokens=10,
|
||||
api_name="/chat"
|
||||
)
|
||||
print(result)
|
||||
```
|
||||
|
||||
```ts
|
||||
import { Client } from "@gradio/client";
|
||||
|
||||
const client = await Client.connect("http://127.0.0.1:7860/");
|
||||
const result = await client.predict("/chat", {
|
||||
message: "Hello!!",
|
||||
system_prompt: "Hello!!",
|
||||
tokens: 10,
|
||||
});
|
||||
|
||||
console.log(result.data);
|
||||
```
|
||||
|
||||
**Better Error Messages**
|
||||
|
||||
If something goes wrong in the upstream app, the client will raise the same exception as the app provided that `show_error=True` in the original app's `launch()` function, or it's a `gr.Error` exception.
|
||||
|
||||
#### Transparent Design 🪟
|
||||
|
||||
Anything you can do in the UI, you can do with the client:
|
||||
* 🔒 Authentication
|
||||
* 🛑 Job Cancelling
|
||||
* ℹ️ Access Queue Position and API
|
||||
* 📕 View the API information
|
||||
|
||||
Here's an example showing how to display the queue position of a pending job:
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("gradio/diffusion_model")
|
||||
|
||||
job = client.submit("A cute cat")
|
||||
while not job.done():
|
||||
status = job.status()
|
||||
print(f"Current in position {status.rank} out of {status.queue_size}")
|
||||
```
|
||||
|
||||
#### Portable Design ⛺️
|
||||
|
||||
The client can run from pretty much any python and javascript environment (node, deno, the browser, Service Workers).
|
||||
|
||||
Here's an example using the client from a Flask server using gevent:
|
||||
|
||||
```python
|
||||
from gevent import monkey
|
||||
monkey.patch_all()
|
||||
|
||||
from gradio_client import Client
|
||||
from flask import Flask, send_file
|
||||
import time
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
imageclient = Client("gradio/diffusion_model")
|
||||
|
||||
@app.route("/gen")
|
||||
def gen():
|
||||
result = imageclient.predict(
|
||||
"A cute cat",
|
||||
api_name="/predict"
|
||||
)
|
||||
return send_file(result)
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host="0.0.0.0", port=5000)
|
||||
```
|
||||
|
||||
#### 1.0 Migration Guide and Breaking Changes
|
||||
|
||||
**Python**
|
||||
- The `serialize` argument of the `Client` class was removed. Has no effect.
|
||||
- The `upload_files` argument of the `Client` was removed.
|
||||
- All filepaths must be wrapped in the `handle_file` method. Example:
|
||||
```python
|
||||
from gradio_client import Client, handle_file
|
||||
|
||||
client = Client("gradio/image_captioner")
|
||||
client.predict(handle_file("cute_cat.jpg"))
|
||||
```
|
||||
- The `output_dir` argument was removed. It is not specified in the `download_files` argument.
|
||||
|
||||
|
||||
**Javascript**
|
||||
The client has been redesigned entirely. It was refactored from a function into a class. An instance can now be constructed by awaiting the `connect` method.
|
||||
|
||||
```js
|
||||
const app = await Client.connect("gradio/whisper")
|
||||
```
|
||||
The app variable has the same methods as the python class (`submit`, `predict`, `view_api`, `duplicate`).
|
||||
|
||||
|
||||
|
||||
#### Additional Changes
|
||||
|
||||
- [#8243](https://github.com/gradio-app/gradio/pull/8243) - Set orig_name in python client file uploads.
|
||||
- [#8264](https://github.com/gradio-app/gradio/pull/8264) - Make exceptions in the Client more specific.
|
||||
- [#8247](https://github.com/gradio-app/gradio/pull/8247) - Fix api recorder.
|
||||
- [#8276](https://github.com/gradio-app/gradio/pull/8276) - Fix bug where client could not connect to apps that had self signed certificates.
|
||||
- [#8245](https://github.com/gradio-app/gradio/pull/8245) - Cancel server progress from the python client.
|
||||
- [#8200](https://github.com/gradio-app/gradio/pull/8200) - Support custom components in gr.load
|
||||
- [#8182](https://github.com/gradio-app/gradio/pull/8182) - Convert sse calls in client from async to sync.
|
||||
- [#7732](https://github.com/gradio-app/gradio/pull/7732) - Adds support for kwargs and default arguments in the python client, and improves how parameter information is displayed in the "view API" page.
|
||||
- [#7888](https://github.com/gradio-app/gradio/pull/7888) - Cache view_api info in server and python client.
|
||||
- [#7575](https://github.com/gradio-app/gradio/pull/7575) - Files should now be supplied as `file(...)` in the Client, and some fixes to `gr.load()` as well.
|
||||
- [#8401](https://github.com/gradio-app/gradio/pull/8401) - Add CDN installation to JS docs.
|
||||
- [#8299](https://github.com/gradio-app/gradio/pull/8299) - Allow JS Client to work with authenticated spaces 🍪.
|
||||
- [#8408](https://github.com/gradio-app/gradio/pull/8408) - Connect heartbeat if state created in render. Also fix config cleanup bug #8407.
|
||||
- [#8258](https://github.com/gradio-app/gradio/pull/8258) - Improve URL handling in JS Client.
|
||||
- [#8322](https://github.com/gradio-app/gradio/pull/8322) - ensure the client correctly handles all binary data.
|
||||
- [#8296](https://github.com/gradio-app/gradio/pull/8296) - always create a jwt when connecting to a space if a hf_token is present.
|
||||
- [#8285](https://github.com/gradio-app/gradio/pull/8285) - use the correct query param to pass the jwt to the heartbeat event.
|
||||
- [#8272](https://github.com/gradio-app/gradio/pull/8272) - ensure client works for private spaces.
|
||||
- [#8197](https://github.com/gradio-app/gradio/pull/8197) - Add support for passing keyword args to `data` in JS client.
|
||||
- [#8252](https://github.com/gradio-app/gradio/pull/8252) - Client node fix.
|
||||
- [#8209](https://github.com/gradio-app/gradio/pull/8209) - Rename `eventSource_Factory` and `fetch_implementation`.
|
||||
- [#8109](https://github.com/gradio-app/gradio/pull/8109) - Implement JS Client tests.
|
||||
- [#8211](https://github.com/gradio-app/gradio/pull/8211) - remove redundant event source logic.
|
||||
- [#8179](https://github.com/gradio-app/gradio/pull/8179) - rework upload to be a class method + pass client into each component.
|
||||
- [#8181](https://github.com/gradio-app/gradio/pull/8181) - Ensure connectivity to private HF spaces with SSE protocol.
|
||||
- [#8169](https://github.com/gradio-app/gradio/pull/8169) - Only connect to heartbeat if needed.
|
||||
- [#8118](https://github.com/gradio-app/gradio/pull/8118) - Add eventsource polyfill for Node.js and browser environments.
|
||||
- [#7646](https://github.com/gradio-app/gradio/pull/7646) - Refactor JS Client.
|
||||
- [#7974](https://github.com/gradio-app/gradio/pull/7974) - Fix heartbeat in the js client to be Lite compatible.
|
||||
- [#7926](https://github.com/gradio-app/gradio/pull/7926) - Fixes streaming event race condition.
|
||||
|
||||
Thanks @freddyaboulton!
|
||||
|
||||
### Features
|
||||
|
||||
- [#8444](https://github.com/gradio-app/gradio/pull/8444) [`2cd02ff`](https://github.com/gradio-app/gradio/commit/2cd02ff3b7c57cd69635d111ff25643eba30b9b0) - Remove deprecated parameters from Python Client. Thanks @abidlabs!
|
||||
|
||||
## 0.17.0
|
||||
|
||||
### Features
|
||||
|
@ -1,5 +1,186 @@
|
||||
# gradio_client
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Highlights
|
||||
|
||||
#### Clients 1.0 Launch! ([#8468](https://github.com/gradio-app/gradio/pull/8468) [`7cc0a0c`](https://github.com/gradio-app/gradio/commit/7cc0a0c1abea585c3f50ffb1ff78d2b08ddbdd92))
|
||||
|
||||
We're excited to unveil the first major release of the Gradio clients.
|
||||
We've made it even easier to turn any Gradio application into a production endpoint thanks to the clients' **ergonomic**, **transparent**, and **portable** design.
|
||||
|
||||
#### Ergonomic API 💆
|
||||
|
||||
**Stream From a Gradio app in 5 lines**
|
||||
|
||||
Use the `submit` method to get a job you can iterate over:
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("gradio/llm_stream")
|
||||
|
||||
for result in client.submit("What's the best UI framework in Python?"):
|
||||
print(result)
|
||||
```
|
||||
|
||||
```ts
|
||||
import { Client } from "@gradio/client";
|
||||
|
||||
const client = await Client.connect("gradio/llm_stream")
|
||||
const job = client.submit("/predict", {"text": "What's the best UI framework in Python?"})
|
||||
|
||||
for await (const msg of job) console.log(msg.data)
|
||||
```
|
||||
|
||||
**Use the same keyword arguments as the app**
|
||||
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("http://127.0.0.1:7860/")
|
||||
result = client.predict(
|
||||
message="Hello!!",
|
||||
system_prompt="You are helpful AI.",
|
||||
tokens=10,
|
||||
api_name="/chat"
|
||||
)
|
||||
print(result)
|
||||
```
|
||||
|
||||
```ts
|
||||
import { Client } from "@gradio/client";
|
||||
|
||||
const client = await Client.connect("http://127.0.0.1:7860/");
|
||||
const result = await client.predict("/chat", {
|
||||
message: "Hello!!",
|
||||
system_prompt: "Hello!!",
|
||||
tokens: 10,
|
||||
});
|
||||
|
||||
console.log(result.data);
|
||||
```
|
||||
|
||||
**Better Error Messages**
|
||||
|
||||
If something goes wrong in the upstream app, the client will raise the same exception as the app provided that `show_error=True` in the original app's `launch()` function, or it's a `gr.Error` exception.
|
||||
|
||||
#### Transparent Design 🪟
|
||||
|
||||
Anything you can do in the UI, you can do with the client:
|
||||
* 🔒 Authentication
|
||||
* 🛑 Job Cancelling
|
||||
* ℹ️ Access Queue Position and API
|
||||
* 📕 View the API information
|
||||
|
||||
Here's an example showing how to display the queue position of a pending job:
|
||||
|
||||
```python
|
||||
from gradio_client import Client
|
||||
|
||||
client = Client("gradio/diffusion_model")
|
||||
|
||||
job = client.submit("A cute cat")
|
||||
while not job.done():
|
||||
status = job.status()
|
||||
print(f"Current in position {status.rank} out of {status.queue_size}")
|
||||
```
|
||||
|
||||
#### Portable Design ⛺️
|
||||
|
||||
The client can run from pretty much any python and javascript environment (node, deno, the browser, Service Workers).
|
||||
|
||||
Here's an example using the client from a Flask server using gevent:
|
||||
|
||||
```python
|
||||
from gevent import monkey
|
||||
monkey.patch_all()
|
||||
|
||||
from gradio_client import Client
|
||||
from flask import Flask, send_file
|
||||
import time
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
imageclient = Client("gradio/diffusion_model")
|
||||
|
||||
@app.route("/gen")
|
||||
def gen():
|
||||
result = imageclient.predict(
|
||||
"A cute cat",
|
||||
api_name="/predict"
|
||||
)
|
||||
return send_file(result)
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host="0.0.0.0", port=5000)
|
||||
```
|
||||
|
||||
#### 1.0 Migration Guide and Breaking Changes
|
||||
|
||||
**Python**
|
||||
- The `serialize` argument of the `Client` class was removed. Has no effect.
|
||||
- The `upload_files` argument of the `Client` was removed.
|
||||
- All filepaths must be wrapped in the `handle_file` method. Example:
|
||||
```python
|
||||
from gradio_client import Client, handle_file
|
||||
|
||||
client = Client("gradio/image_captioner")
|
||||
client.predict(handle_file("cute_cat.jpg"))
|
||||
```
|
||||
- The `output_dir` argument was removed. It is not specified in the `download_files` argument.
|
||||
|
||||
|
||||
**Javascript**
|
||||
The client has been redesigned entirely. It was refactored from a function into a class. An instance can now be constructed by awaiting the `connect` method.
|
||||
|
||||
```js
|
||||
const app = await Client.connect("gradio/whisper")
|
||||
```
|
||||
The app variable has the same methods as the python class (`submit`, `predict`, `view_api`, `duplicate`).
|
||||
|
||||
|
||||
|
||||
#### Additional Changes
|
||||
|
||||
- [#8243](https://github.com/gradio-app/gradio/pull/8243) - Set orig_name in python client file uploads.
|
||||
- [#8264](https://github.com/gradio-app/gradio/pull/8264) - Make exceptions in the Client more specific.
|
||||
- [#8247](https://github.com/gradio-app/gradio/pull/8247) - Fix api recorder.
|
||||
- [#8276](https://github.com/gradio-app/gradio/pull/8276) - Fix bug where client could not connect to apps that had self signed certificates.
|
||||
- [#8245](https://github.com/gradio-app/gradio/pull/8245) - Cancel server progress from the python client.
|
||||
- [#8200](https://github.com/gradio-app/gradio/pull/8200) - Support custom components in gr.load
|
||||
- [#8182](https://github.com/gradio-app/gradio/pull/8182) - Convert sse calls in client from async to sync.
|
||||
- [#7732](https://github.com/gradio-app/gradio/pull/7732) - Adds support for kwargs and default arguments in the python client, and improves how parameter information is displayed in the "view API" page.
|
||||
- [#7888](https://github.com/gradio-app/gradio/pull/7888) - Cache view_api info in server and python client.
|
||||
- [#7575](https://github.com/gradio-app/gradio/pull/7575) - Files should now be supplied as `file(...)` in the Client, and some fixes to `gr.load()` as well.
|
||||
- [#8401](https://github.com/gradio-app/gradio/pull/8401) - Add CDN installation to JS docs.
|
||||
- [#8299](https://github.com/gradio-app/gradio/pull/8299) - Allow JS Client to work with authenticated spaces 🍪.
|
||||
- [#8408](https://github.com/gradio-app/gradio/pull/8408) - Connect heartbeat if state created in render. Also fix config cleanup bug #8407.
|
||||
- [#8258](https://github.com/gradio-app/gradio/pull/8258) - Improve URL handling in JS Client.
|
||||
- [#8322](https://github.com/gradio-app/gradio/pull/8322) - ensure the client correctly handles all binary data.
|
||||
- [#8296](https://github.com/gradio-app/gradio/pull/8296) - always create a jwt when connecting to a space if a hf_token is present.
|
||||
- [#8285](https://github.com/gradio-app/gradio/pull/8285) - use the correct query param to pass the jwt to the heartbeat event.
|
||||
- [#8272](https://github.com/gradio-app/gradio/pull/8272) - ensure client works for private spaces.
|
||||
- [#8197](https://github.com/gradio-app/gradio/pull/8197) - Add support for passing keyword args to `data` in JS client.
|
||||
- [#8252](https://github.com/gradio-app/gradio/pull/8252) - Client node fix.
|
||||
- [#8209](https://github.com/gradio-app/gradio/pull/8209) - Rename `eventSource_Factory` and `fetch_implementation`.
|
||||
- [#8109](https://github.com/gradio-app/gradio/pull/8109) - Implement JS Client tests.
|
||||
- [#8211](https://github.com/gradio-app/gradio/pull/8211) - remove redundant event source logic.
|
||||
- [#8179](https://github.com/gradio-app/gradio/pull/8179) - rework upload to be a class method + pass client into each component.
|
||||
- [#8181](https://github.com/gradio-app/gradio/pull/8181) - Ensure connectivity to private HF spaces with SSE protocol.
|
||||
- [#8169](https://github.com/gradio-app/gradio/pull/8169) - Only connect to heartbeat if needed.
|
||||
- [#8118](https://github.com/gradio-app/gradio/pull/8118) - Add eventsource polyfill for Node.js and browser environments.
|
||||
- [#7646](https://github.com/gradio-app/gradio/pull/7646) - Refactor JS Client.
|
||||
- [#7974](https://github.com/gradio-app/gradio/pull/7974) - Fix heartbeat in the js client to be Lite compatible.
|
||||
- [#7926](https://github.com/gradio-app/gradio/pull/7926) - Fixes streaming event race condition.
|
||||
|
||||
Thanks @freddyaboulton!
|
||||
|
||||
### Features
|
||||
|
||||
- [#8444](https://github.com/gradio-app/gradio/pull/8444) [`2cd02ff`](https://github.com/gradio-app/gradio/commit/2cd02ff3b7c57cd69635d111ff25643eba30b9b0) - Remove deprecated parameters from Python Client. Thanks @abidlabs!
|
||||
|
||||
## 0.17.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio_client",
|
||||
"version": "0.17.0",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"python": "true",
|
||||
"main_changeset": true
|
||||
|
@ -1,5 +1,23 @@
|
||||
# gradio
|
||||
|
||||
## 4.34.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#8370](https://github.com/gradio-app/gradio/pull/8370) [`48eeea4`](https://github.com/gradio-app/gradio/commit/48eeea4eaab7e24168688e3c3fbafb30e4e78d51) - Refactor Cancelling Logic To Use /cancel. Thanks @freddyaboulton!
|
||||
- [#8460](https://github.com/gradio-app/gradio/pull/8460) [`8628899`](https://github.com/gradio-app/gradio/commit/86288993d9589ceb7bcc3e4d10f0adb6419d4ac5) - Support Bash in Api Recorder. Thanks @aliabd!
|
||||
- [#8417](https://github.com/gradio-app/gradio/pull/8417) [`96d8de2`](https://github.com/gradio-app/gradio/commit/96d8de231270321da5f310768643363276df3204) - add delete event to `File` component. Thanks @pngwn!
|
||||
- [#8444](https://github.com/gradio-app/gradio/pull/8444) [`2cd02ff`](https://github.com/gradio-app/gradio/commit/2cd02ff3b7c57cd69635d111ff25643eba30b9b0) - Remove deprecated parameters from Python Client. Thanks @abidlabs!
|
||||
- [#8473](https://github.com/gradio-app/gradio/pull/8473) [`8ca93d4`](https://github.com/gradio-app/gradio/commit/8ca93d45dd9f8948cfe87fe16ef5943139e756a7) - Improve design of api recorder. Thanks @aliabd!
|
||||
- [#8445](https://github.com/gradio-app/gradio/pull/8445) [`5c8915b`](https://github.com/gradio-app/gradio/commit/5c8915b11308756c3b7279864d240ea85f5a0b4a) - Add cURL to view API Page and add a dedicated Guide. Thanks @abidlabs!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#8477](https://github.com/gradio-app/gradio/pull/8477) [`d5a9604`](https://github.com/gradio-app/gradio/commit/d5a960493017a4890685af61d78ce7d3b3b12e6b) - Fix js client bundle. Thanks @pngwn!
|
||||
- [#8451](https://github.com/gradio-app/gradio/pull/8451) [`9d2d605`](https://github.com/gradio-app/gradio/commit/9d2d6051caed5c8749a26a6fa7480a5ae6e6c4f3) - Change client submit API to be an AsyncIterable and support more platforms. Thanks @pngwn!
|
||||
- [#8462](https://github.com/gradio-app/gradio/pull/8462) [`6447dfa`](https://github.com/gradio-app/gradio/commit/6447dface4d46db1c69460e8325a1928d0476a46) - Improve file handling in JS Client. Thanks @hannahblair!
|
||||
- [#8439](https://github.com/gradio-app/gradio/pull/8439) [`63d36fb`](https://github.com/gradio-app/gradio/commit/63d36fbbf4bf6dc909be9a0ffc7b6bf6621d83e8) - Handle gradio apps using `state` in the JS Client. Thanks @hannahblair!
|
||||
|
||||
## 4.33.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradio",
|
||||
"version": "4.33.0",
|
||||
"version": "4.34.0",
|
||||
"description": "",
|
||||
"python": "true"
|
||||
}
|
||||
|
@ -4,6 +4,13 @@
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/form@0.1.18
|
||||
|
||||
## 0.0.1
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@0.20.1
|
||||
|
||||
## 0.0.1
|
||||
|
@ -1,5 +1,15 @@
|
||||
# website
|
||||
|
||||
## 0.31.3
|
||||
|
||||
### Features
|
||||
|
||||
- [#8471](https://github.com/gradio-app/gradio/pull/8471) [`a9e6595`](https://github.com/gradio-app/gradio/commit/a9e6595817b741c3dcf1eaedf58ee4f901784e57) - Tweak meta titles and descriptions for clients. Thanks @aliabd!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/code@0.6.9
|
||||
|
||||
## 0.31.2
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "website",
|
||||
"version": "0.31.2",
|
||||
"version": "0.31.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "pip install boto3 && python generate_jsons/generate.py && vite dev",
|
||||
|
@ -2,6 +2,13 @@
|
||||
|
||||
## 0.3.16
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/column@0.1.2
|
||||
|
||||
## 0.3.16
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#8284](https://github.com/gradio-app/gradio/pull/8284) [`2d705bc`](https://github.com/gradio-app/gradio/commit/2d705bcf7475eb46822358fed21dc081a800a73d) - Add body color to `gr.Accordion`. Thanks @hannahblair!
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/annotatedimage
|
||||
|
||||
## 0.6.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
|
||||
## 0.6.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/annotatedimage",
|
||||
"version": "0.6.7",
|
||||
"version": "0.6.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,69 @@
|
||||
# @gradio/app
|
||||
|
||||
## 1.36.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#8370](https://github.com/gradio-app/gradio/pull/8370) [`48eeea4`](https://github.com/gradio-app/gradio/commit/48eeea4eaab7e24168688e3c3fbafb30e4e78d51) - Refactor Cancelling Logic To Use /cancel. Thanks @freddyaboulton!
|
||||
- [#8460](https://github.com/gradio-app/gradio/pull/8460) [`8628899`](https://github.com/gradio-app/gradio/commit/86288993d9589ceb7bcc3e4d10f0adb6419d4ac5) - Support Bash in Api Recorder. Thanks @aliabd!
|
||||
- [#8444](https://github.com/gradio-app/gradio/pull/8444) [`2cd02ff`](https://github.com/gradio-app/gradio/commit/2cd02ff3b7c57cd69635d111ff25643eba30b9b0) - Remove deprecated parameters from Python Client. Thanks @abidlabs!
|
||||
- [#8473](https://github.com/gradio-app/gradio/pull/8473) [`8ca93d4`](https://github.com/gradio-app/gradio/commit/8ca93d45dd9f8948cfe87fe16ef5943139e756a7) - Improve design of api recorder. Thanks @aliabd!
|
||||
- [#8445](https://github.com/gradio-app/gradio/pull/8445) [`5c8915b`](https://github.com/gradio-app/gradio/commit/5c8915b11308756c3b7279864d240ea85f5a0b4a) - Add cURL to view API Page and add a dedicated Guide. Thanks @abidlabs!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#8451](https://github.com/gradio-app/gradio/pull/8451) [`9d2d605`](https://github.com/gradio-app/gradio/commit/9d2d6051caed5c8749a26a6fa7480a5ae6e6c4f3) - Change client submit API to be an AsyncIterable and support more platforms. Thanks @pngwn!
|
||||
- [#8439](https://github.com/gradio-app/gradio/pull/8439) [`63d36fb`](https://github.com/gradio-app/gradio/commit/63d36fbbf4bf6dc909be9a0ffc7b6bf6621d83e8) - Handle gradio apps using `state` in the JS Client. Thanks @hannahblair!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/code@0.6.9
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/file@0.8.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/annotatedimage@0.6.8
|
||||
- @gradio/audio@0.11.8
|
||||
- @gradio/button@0.2.41
|
||||
- @gradio/chatbot@0.10.9
|
||||
- @gradio/dataframe@0.8.8
|
||||
- @gradio/dataset@0.1.41
|
||||
- @gradio/downloadbutton@0.1.18
|
||||
- @gradio/fileexplorer@0.4.9
|
||||
- @gradio/gallery@0.10.8
|
||||
- @gradio/image@0.11.8
|
||||
- @gradio/imageeditor@0.7.8
|
||||
- @gradio/model3d@0.10.8
|
||||
- @gradio/multimodaltextbox@0.4.9
|
||||
- @gradio/simpleimage@0.5.8
|
||||
- @gradio/uploadbutton@0.6.9
|
||||
- @gradio/video@0.8.8
|
||||
- @gradio/accordion@0.3.16
|
||||
- @gradio/checkbox@0.3.6
|
||||
- @gradio/checkboxgroup@0.5.6
|
||||
- @gradio/colorpicker@0.3.6
|
||||
- @gradio/column@0.1.2
|
||||
- @gradio/dropdown@0.7.6
|
||||
- @gradio/fallback@0.3.6
|
||||
- @gradio/form@0.1.18
|
||||
- @gradio/group@0.1.1
|
||||
- @gradio/highlightedtext@0.7.0
|
||||
- @gradio/html@0.2.6
|
||||
- @gradio/json@0.2.6
|
||||
- @gradio/label@0.3.6
|
||||
- @gradio/markdown@0.7.6
|
||||
- @gradio/number@0.4.6
|
||||
- @gradio/paramviewer@0.4.15
|
||||
- @gradio/plot@0.4.6
|
||||
- @gradio/radio@0.5.6
|
||||
- @gradio/row@0.1.3
|
||||
- @gradio/simpledropdown@0.2.6
|
||||
- @gradio/simpletextbox@0.2.6
|
||||
- @gradio/slider@0.4.6
|
||||
- @gradio/tabitem@0.2.10
|
||||
- @gradio/tabs@0.2.9
|
||||
- @gradio/textbox@0.6.5
|
||||
|
||||
## 1.35.9
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/app",
|
||||
"version": "1.35.9",
|
||||
"version": "1.36.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/audio
|
||||
|
||||
## 0.11.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/button@0.2.41
|
||||
|
||||
## 0.11.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/audio",
|
||||
"version": "0.11.7",
|
||||
"version": "0.11.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/button
|
||||
|
||||
## 0.2.41
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
|
||||
## 0.2.40
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/button",
|
||||
"version": "0.2.40",
|
||||
"version": "0.2.41",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,17 @@
|
||||
# @gradio/chatbot
|
||||
|
||||
## 0.10.9
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/audio@0.11.8
|
||||
- @gradio/image@0.11.8
|
||||
- @gradio/video@0.8.8
|
||||
- @gradio/markdown@0.7.6
|
||||
|
||||
## 0.10.8
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/chatbot",
|
||||
"version": "0.10.8",
|
||||
"version": "0.10.9",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.3.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.3.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.5.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.5.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/code
|
||||
|
||||
## 0.6.9
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/upload@0.11.0
|
||||
|
||||
## 0.6.8
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/code",
|
||||
"version": "0.6.8",
|
||||
"version": "0.6.9",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.3.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.3.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -2,6 +2,12 @@
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Features
|
||||
|
||||
- [#8398](https://github.com/gradio-app/gradio/pull/8398) [`945ac83`](https://github.com/gradio-app/gradio/commit/945ac837e779b120790814ea6f6f81bd2712f5f8) - Improve rendering. Thanks @aliabid94!
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/dataframe
|
||||
|
||||
## 0.8.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/button@0.2.41
|
||||
- @gradio/markdown@0.7.6
|
||||
|
||||
## 0.8.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dataframe",
|
||||
"version": "0.8.7",
|
||||
"version": "0.8.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/dataset
|
||||
|
||||
## 0.1.41
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
|
||||
## 0.1.40
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/dataset",
|
||||
"version": "0.1.40",
|
||||
"version": "0.1.41",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# @gradio/downloadbutton
|
||||
|
||||
## 0.1.18
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/button@0.2.41
|
||||
|
||||
## 0.1.17
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/downloadbutton",
|
||||
"version": "0.1.17",
|
||||
"version": "0.1.18",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.7.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.7.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.3.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.3.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,5 +1,21 @@
|
||||
# @gradio/file
|
||||
|
||||
## 0.8.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#8417](https://github.com/gradio-app/gradio/pull/8417) [`96d8de2`](https://github.com/gradio-app/gradio/commit/96d8de231270321da5f310768643363276df3204) - add delete event to `File` component. Thanks @pngwn!
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#8451](https://github.com/gradio-app/gradio/pull/8451) [`9d2d605`](https://github.com/gradio-app/gradio/commit/9d2d6051caed5c8749a26a6fa7480a5ae6e6c4f3) - Change client submit API to be an AsyncIterable and support more platforms. Thanks @pngwn!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
|
||||
## 0.7.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/file",
|
||||
"version": "0.7.7",
|
||||
"version": "0.8.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/fileexplorer
|
||||
|
||||
## 0.4.9
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/file@0.8.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/checkbox@0.3.6
|
||||
|
||||
## 0.4.8
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/fileexplorer",
|
||||
"version": "0.4.8",
|
||||
"version": "0.4.9",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/gallery
|
||||
|
||||
## 0.10.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/file@0.8.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/image@0.11.8
|
||||
|
||||
## 0.10.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/gallery",
|
||||
"version": "0.10.7",
|
||||
"version": "0.10.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -2,6 +2,12 @@
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.7.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#8355](https://github.com/gradio-app/gradio/pull/8355) [`33e8bab`](https://github.com/gradio-app/gradio/commit/33e8babb17b2094327860bc1996ab855d6c22d46) - Enable hiding the inline category in HighlightedText with a `show_inline_category` argument. Thanks @xu-song!
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.2.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/image
|
||||
|
||||
## 0.11.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
|
||||
## 0.11.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/image",
|
||||
"version": "0.11.7",
|
||||
"version": "0.11.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/imageeditor
|
||||
|
||||
## 0.7.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/image@0.11.8
|
||||
|
||||
## 0.7.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/imageeditor",
|
||||
"version": "0.7.7",
|
||||
"version": "0.7.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.2.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.3.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.3.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/lite
|
||||
|
||||
## 4.34.0
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- gradio@4.34.0
|
||||
|
||||
## 4.33.0
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/lite",
|
||||
"version": "4.33.0",
|
||||
"version": "4.34.0",
|
||||
"description": "Serverless Gradio",
|
||||
"type": "module",
|
||||
"main": "dist/lite.js",
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.7.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.7.5
|
||||
|
||||
### Features
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/model3d
|
||||
|
||||
## 0.10.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
|
||||
## 0.10.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/model3d",
|
||||
"version": "0.10.7",
|
||||
"version": "0.10.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/multimodaltextbox
|
||||
|
||||
## 0.4.9
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/image@0.11.8
|
||||
|
||||
## 0.4.8
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/multimodaltextbox",
|
||||
"version": "0.4.8",
|
||||
"version": "0.4.9",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.4.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.4.15
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.4.14
|
||||
|
||||
### Dependency updates
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.4.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,5 +1,11 @@
|
||||
# @gradio/preview
|
||||
|
||||
## 0.9.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [#8439](https://github.com/gradio-app/gradio/pull/8439) [`63d36fb`](https://github.com/gradio-app/gradio/commit/63d36fbbf4bf6dc909be9a0ffc7b6bf6621d83e8) - Handle gradio apps using `state` in the JS Client. Thanks @hannahblair!
|
||||
|
||||
## 0.9.0
|
||||
|
||||
### Features
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/preview",
|
||||
"version": "0.9.0",
|
||||
"version": "0.9.1",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.5.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.5.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -2,6 +2,12 @@
|
||||
|
||||
## 0.1.3
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.1.3
|
||||
|
||||
### Features
|
||||
|
||||
- [#8398](https://github.com/gradio-app/gradio/pull/8398) [`945ac83`](https://github.com/gradio-app/gradio/commit/945ac837e779b120790814ea6f6f81bd2712f5f8) - Improve rendering. Thanks @aliabid94!
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.2.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/simpleimage
|
||||
|
||||
## 0.5.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
|
||||
## 0.5.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/simpleimage",
|
||||
"version": "0.5.7",
|
||||
"version": "0.5.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.2.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.2.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.4.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -4,6 +4,13 @@
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/column@0.1.2
|
||||
- @gradio/tabs@0.2.9
|
||||
|
||||
## 0.2.10
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/column@0.1.2
|
||||
|
||||
## 0.2.9
|
||||
|
@ -6,6 +6,12 @@
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.6.5
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.6.4
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,5 +1,15 @@
|
||||
# @gradio/tootils
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#8417](https://github.com/gradio-app/gradio/pull/8417) [`96d8de2`](https://github.com/gradio-app/gradio/commit/96d8de231270321da5f310768643363276df3204) - add delete event to `File` component. Thanks @pngwn!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
|
||||
## 0.4.5
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/tootils",
|
||||
"version": "0.4.5",
|
||||
"version": "0.5.0",
|
||||
"description": "Internal test utilities",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
|
@ -1,5 +1,16 @@
|
||||
# @gradio/upload
|
||||
|
||||
## 0.11.0
|
||||
|
||||
### Features
|
||||
|
||||
- [#8417](https://github.com/gradio-app/gradio/pull/8417) [`96d8de2`](https://github.com/gradio-app/gradio/commit/96d8de231270321da5f310768643363276df3204) - add delete event to `File` component. Thanks @pngwn!
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
|
||||
## 0.10.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/upload",
|
||||
"version": "0.10.7",
|
||||
"version": "0.11.0",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
|
@ -1,5 +1,13 @@
|
||||
# @gradio/uploadbutton
|
||||
|
||||
## 0.6.9
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/button@0.2.41
|
||||
|
||||
## 0.6.8
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/uploadbutton",
|
||||
"version": "0.6.8",
|
||||
"version": "0.6.9",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -1,5 +1,14 @@
|
||||
# @gradio/video
|
||||
|
||||
## 0.8.8
|
||||
|
||||
### Dependency updates
|
||||
|
||||
- @gradio/statustracker@0.6.0
|
||||
- @gradio/client@1.0.0
|
||||
- @gradio/upload@0.11.0
|
||||
- @gradio/image@0.11.8
|
||||
|
||||
## 0.8.7
|
||||
|
||||
### Dependency updates
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gradio/video",
|
||||
"version": "0.8.7",
|
||||
"version": "0.8.8",
|
||||
"description": "Gradio UI packages",
|
||||
"type": "module",
|
||||
"author": "",
|
||||
|
@ -2,7 +2,7 @@ aiofiles>=22.0,<24.0
|
||||
altair>=4.2.0,<6.0
|
||||
fastapi
|
||||
ffmpy
|
||||
gradio_client==0.17.0
|
||||
gradio_client==1.0.0
|
||||
httpx>=0.24.1
|
||||
huggingface_hub>=0.19.3
|
||||
importlib_resources>=1.3,<7.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user