-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Video updates #18204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Video updates #18204
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
52bfa16
adding open ai relay and devtalk episode 2 to tutorial list
jason-cf 0b79aa8
adding workers rpc to docs
jason-cf e89758d
add support for removing text beneath each video pointing to YT
jason-cf aa66d19
moving nextjs video to static asset frameworks
jason-cf c3b0562
image generation updates
jason-cf 1e3d830
static assets home page update
jason-cf 558f4c7
updating video list. adding back the react video that was removed fro…
jason-cf b7c9da4
Merge branch 'production' into new-videos
jason-cf d27bbfa
Update src/content/docs/workers-ai/tutorials/image-generation-playgro…
jason-cf 4dbbc01
Update src/content/docs/workers/runtime-apis/rpc/index.mdx
jason-cf 0bd61de
Update src/content/docs/workers-ai/tutorials/image-generation-playgro…
jason-cf 3b1f3bf
Apply suggestions from code review
jason-cf 87f4bd2
updating thumbnail timestamps
jason-cf 4f19537
conflict resolution
jason-cf 539bb4e
removing duplicate listing
jason-cf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
...ers-ai/tutorials/image-generation-playground/image-generator-flux-newmodels.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| --- | ||
| updated: 2024-10-17 | ||
| difficulty: Beginner | ||
| content_type: 🎥 Video | ||
| pcx_content_type: video | ||
| title: Add New AI Models to your Playground (Part 2) | ||
| sidebar: | ||
| order: 2 | ||
| products: | ||
| - Workers | ||
| tags: | ||
| - AI | ||
| - Workers | ||
| languages: | ||
| - Typescript | ||
| prev: true | ||
|
|
||
| --- | ||
|
|
||
| import { Details, DirectoryListing, Stream } from "~/components" | ||
|
|
||
| In part 2, Kristian expands upon the existing environment built in part 1, by showing you how to integrate new AI models and introduce new parameters that allow you to customize how images are generated. | ||
|
|
||
| <Stream videoId="167ba3a7a86f966650f3315e6cb02e0d" videoTitle="Add New AI Models to your Playground (Part 2)" thumbnailTimeOrURL="13.5s" moreVideosLink="false" /> | ||
jason-cf marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| Refer to the AI Image Playground [GitHub repository](https://github.com/kristianfreeman/workers-ai-image-playground) to follow along locally. | ||
|
|
||
| <Details header="Video series" open> | ||
|
|
||
| <DirectoryListing folder="workers-ai/tutorials/image-generation-playground" /> | ||
|
|
||
| </Details> | ||
35 changes: 35 additions & 0 deletions
35
.../docs/workers-ai/tutorials/image-generation-playground/image-generator-flux.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| --- | ||
| updated: 2024-10-17 | ||
| difficulty: Beginner | ||
| content_type: 🎥 Video | ||
| pcx_content_type: video | ||
| title: Build an AI Image Generator Playground (Part 1) | ||
| tableOfContents: false | ||
| sidebar: | ||
| order: 1 | ||
| products: | ||
| - Workers | ||
| tags: | ||
| - AI | ||
| - Workers | ||
| languages: | ||
| - Typescript | ||
| next: true | ||
|
|
||
| --- | ||
|
|
||
| import { Details, DirectoryListing, Stream } from "~/components" | ||
|
|
||
| The new flux models on Workers AI are our most powerful text-to-image AI models yet. In this video, we show you how to deploy your own Workers AI Image Playground in just a few minutes. | ||
|
|
||
| There are many businesses being built on top of AI image generation models. Using Workers AI, you can get access to the best models in the industry without having to worry about inference, ops, or deployment. We provide the API for AI image generation, and in a couple of seconds get an image back. | ||
|
|
||
| <Stream videoId="aeafae151e84a81be19c52c2348e9bab" videoTitle="Build an AI Image Generator Playground (Part 1)" thumbnailTimeOrURL="2.5s" moreVideosLink="false" /> | ||
|
|
||
| Refer to the AI Image Playground [GitHub repository](https://github.com/kristianfreeman/workers-ai-image-playground) to follow along locally. | ||
|
|
||
| <Details header="Video series" open> | ||
|
|
||
| <DirectoryListing folder="workers-ai/tutorials/image-generation-playground" /> | ||
|
|
||
| </Details> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,8 @@ import { | |
| Tabs, | ||
| Feature, | ||
| LinkButton, | ||
| Stream, | ||
| Flex, | ||
| } from "~/components"; | ||
|
|
||
| <Description> | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.