mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
Update "How to Embed" doc (#2698)
* update Embedding doc * changelog Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
This commit is contained in:
parent
b5f22671a2
commit
7719fae341
@ -50,7 +50,9 @@ io = gr.Interface(echo, "textbox", "textbox").launch()
|
||||
No changes to highlight.
|
||||
|
||||
## Documentation Changes:
|
||||
No changes to highlight.
|
||||
* Updated documentation for embedding Gradio demos on Spaces as web components by
|
||||
[@abidlabs](https://github.com/abidlabs) in [PR 2698](https://github.com/gradio-app/gradio/pull/2698)
|
||||
|
||||
|
||||
## Testing and Infrastructure Changes:
|
||||
No changes to highlight.
|
||||
|
@ -28,7 +28,9 @@ You can either drag and drop a folder containing your Gradio model and all relat
|
||||
|
||||
Once you have hosted your app on Hugging Face Spaces, you may want to embed the demo on a different website, such as your blog or your portfolio. Embedding an interactive demo allows people to try out the machine learning model that you have built, without needing to download or install anything — right in their browser! The best part is that you can embed interative demos even in static websites, such as GitHub pages.
|
||||
|
||||
There are two ways to embed your Gradio demos, hosted on Hugging Face Spaces.
|
||||
There are two ways to embed your Gradio demos, hosted on Hugging Face Spaces. You can find quick links to both options directly on the Space page, in the "Embed this Space" dropdown option:
|
||||
|
||||

|
||||
|
||||
### Embedding with Web Components
|
||||
|
||||
@ -44,12 +46,12 @@ src="https://gradio.s3-us-west-2.amazonaws.com/{GRADIO_VERSION}/gradio.js">
|
||||
|
||||
2. Add
|
||||
```html
|
||||
<gradio-app space="$user/$space_name"></gradio-app>
|
||||
<gradio-app src="https://$your_space_host.hf.space"></gradio-app>
|
||||
```
|
||||
element where you want to place the app. Set the `space=` attribute with your user and space name. For example:
|
||||
element where you want to place the app. Set the `src=` attribute to your Space's embed URL, which you can find in the Embed this Space button. For example:
|
||||
|
||||
```html
|
||||
<gradio-app space="abidlabs/pytorch-image-classifier"></gradio-app>
|
||||
<gradio-app src="https://abidlabs-pytorch-image-classifier.hf.space"></gradio-app>
|
||||
```
|
||||
|
||||
<script>
|
||||
@ -67,13 +69,13 @@ fetch("https://pypi.org/pypi/gradio/json"
|
||||
To embed with IFrames instead, simply add this element:
|
||||
|
||||
```html
|
||||
<iframe src="https://hf.space/embed/$user/$space_name/+"></iframe>
|
||||
<iframe src="https://$your_space_host.hf.space"></iframe>
|
||||
```
|
||||
|
||||
For example:
|
||||
|
||||
```html
|
||||
<iframe src="https://hf.space/embed/abidlabs/pytorch-image-classifier/+"></iframe>
|
||||
<iframe src="https://abidlabs-pytorch-image-classifier.hf.space"></iframe>
|
||||
```
|
||||
|
||||
## API Page
|
||||
|
BIN
guides/assets/embed_this_space.png
Normal file
BIN
guides/assets/embed_this_space.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 65 KiB |
Loading…
x
Reference in New Issue
Block a user