Skip to content

Commit 58facc5

Browse files
committed
Reorder use cases on home page
1 parent 1873dad commit 58facc5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

site/src/pages/_sections/HeroSection/PipelinesCarousel/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@ print(ov_pipe.generate("The Sun is yellow because"))`,
2929
Icon: ImageIcon,
3030
code: `ov_pipe = ov_genai.Text2ImagePipeline("Flux")
3131
image = ov_pipe.generate("Create beautiful Sun")`,
32-
},
33-
{
34-
title: 'Speech Recognition API',
35-
Icon: SoundIcon,
36-
code: `ov_pipe = ov_genai.WhisperPipeline("whisper-base")
37-
print(ov_pipe.generate(read_wav("sample.wav")))`,
3832
},
3933
{
4034
title: 'Image Processing API',
4135
Icon: ImageIcon,
4236
code: `ov_pipe = ov_genai.VLMPipeline("LLaVA")
4337
print(ov_pipe.generate("Describe images", images))`,
38+
},
39+
{
40+
title: 'Speech Recognition API',
41+
Icon: SoundIcon,
42+
code: `ov_pipe = ov_genai.WhisperPipeline("whisper-base")
43+
print(ov_pipe.generate(read_wav("sample.wav")))`,
4444
},
4545
{
4646
title: 'Speech Generation API',

site/src/pages/_sections/UseCasesSection/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ export const UseCasesSection = () => (
1919
<div className={styles.sectionContent}>
2020
<TextGeneration />
2121
<ImageGeneration />
22+
<ImageProcessing />
2223
<SpeechRecognition />
2324
<SpeechGeneration />
24-
<ImageProcessing />
2525
<TextEmbedding />
2626
<TextRerank />
2727
</div>

0 commit comments

Comments
 (0)