File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
HeroSection/PipelinesCarousel Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff 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")
3131image = 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")
4337print(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' ,
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments