* output dirs * remove * remove * remove * changelog * format * add tests * docstring * changelog * client * blocks * fix test
6.1 KiB
Upcoming Release
New Features:
No changes to highlight.
Bug Fixes:
No changes to highlight.
Breaking Changes:
No changes to highlight.
Full Changelog:
No changes to highlight.
0.2.7
New Features:
- The output directory for files downloaded via the Client can now be set by the
output_dir
parameter inClient
by @abidlabs in PR 4501
Bug Fixes:
- The output directory for files downloaded via the Client are now set to a temporary directory by default (instead of the working directory in some cases) by @abidlabs in PR 4501
Breaking Changes:
No changes to highlight.
Full Changelog:
No changes to highlight.
0.2.6
New Features:
No changes to highlight.
Bug Fixes:
- Fixed bug file deserialization didn't preserve all file extensions by @freddyaboulton in PR 4440
- Fixed bug where mounted apps could not be called via the client by @freddyaboulton in PR 4435
Breaking Changes:
No changes to highlight.
Full Changelog:
No changes to highlight.
0.2.5
New Features:
No changes to highlight.
Bug Fixes:
- Fixes parameter names not showing underscores by @abidlabs in PR 4230
- Fixes issue in which state was not handled correctly if
serialize=False
by @abidlabs in PR 4230
Breaking Changes:
No changes to highlight.
Full Changelog:
No changes to highlight.
0.2.4
Bug Fixes:
- Fixes missing serialization classes for several components:
Barplot
,Lineplot
,Scatterplot
,AnnotatedImage
,Interpretation
by @abidlabs in PR 4167
Documentation Changes:
No changes to highlight.
Testing and Infrastructure Changes:
No changes to highlight.
Breaking Changes:
No changes to highlight.
Full Changelog:
No changes to highlight.
Contributors Shoutout:
No changes to highlight.
0.2.3
New Features:
No changes to highlight.
Bug Fixes:
- Fix example inputs for
gr.File(file_count='multiple')
output components by @freddyaboulton in PR 4153
Documentation Changes:
No changes to highlight.
Testing and Infrastructure Changes:
No changes to highlight.
Breaking Changes:
No changes to highlight.
Full Changelog:
No changes to highlight.
Contributors Shoutout:
No changes to highlight.
0.2.2
New Features:
No changes to highlight.
Bug Fixes:
- Only send request to
/info
route if demo version is above3.28.3
by @freddyaboulton in PR 4109
Other Changes:
- Fix bug in test from gradio 3.29.0 refactor by @freddyaboulton in PR 4138
Breaking Changes:
No changes to highlight.
0.2.1
New Features:
No changes to highlight.
Bug Fixes:
Removes extraneous State
component info from the Client.view_api()
method by @abidlabs in PR 4107
Documentation Changes:
No changes to highlight.
Testing and Infrastructure Changes:
Separates flaky tests from non-flaky tests by @abidlabs in PR 4107
Breaking Changes:
No changes to highlight.
Full Changelog:
No changes to highlight.
Contributors Shoutout:
No changes to highlight.
0.1.4
New Features:
- Progress Updates from
gr.Progress()
can be accessed viajob.status().progress_data
by @freddyaboulton](https://github.com/freddyaboulton) in PR 3924
Bug Fixes:
- Fixed bug where unnamed routes where displayed with
api_name
instead offn_index
inview_api
by @freddyaboulton in PR 3972
Documentation Changes:
No changes to highlight.
Testing and Infrastructure Changes:
No changes to highlight.
Breaking Changes:
No changes to highlight.
Full Changelog:
No changes to highlight.
Contributors Shoutout:
No changes to highlight.
0.1.3
New Features:
No changes to highlight.
Bug Fixes:
- Fixed bug where
Video
components in latest gradio were not able to be deserialized by @freddyaboulton in PR 3860
Documentation Changes:
No changes to highlight.
Testing and Infrastructure Changes:
No changes to highlight.
Breaking Changes:
No changes to highlight.
Full Changelog:
No changes to highlight.
Contributors Shoutout:
No changes to highlight.
0.1.2
First public release of the Gradio Client library! The gradio_client
Python library that makes it very easy to use any Gradio app as an API.
As an example, consider this Hugging Face Space that transcribes audio files that are recorded from the microphone.
Using the gradio_client
library, we can easily use the Gradio as an API to transcribe audio files programmatically.
Here's the entire code to do it:
from gradio_client import Client
client = Client("abidlabs/whisper")
client.predict("audio_sample.wav")
>> "This is a test of the whisper speech recognition model."
Read more about how to use the gradio_client
library here: https://gradio.app/getting-started-with-the-python-client/