Skip to content

Commit 10ca8f3

Browse files
authored
Merge pull request #8449 from ovh/mb-ai-endpoints-audio-models
[AI Endpoints] - Audio models endpoint
2 parents f15ba37 + 99424a0 commit 10ca8f3

File tree

6 files changed

+1311
-8
lines changed

6 files changed

+1311
-8
lines changed

pages/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,6 +1213,7 @@
12131213
+ [AI Endpoints - Structured Output](public_cloud/ai_machine_learning/endpoints_guide_05_structured_output)
12141214
+ [AI Endpoints - Function Calling](public_cloud/ai_machine_learning/endpoints_guide_06_function_calling)
12151215
+ [AI Endpoints - Virtual Models](public_cloud/ai_machine_learning/endpoints_guide_07_virtual_models)
1216+
+ [AI Endpoints - Speech to Text](public_cloud/ai_machine_learning/endpoints_guide_08_audio_transcriptions)
12161217
+ [Tutorials](public-cloud-ai-and-machine-learning-ai-endpointstutorials)
12171218
+ [AI Endpoints - Create your own audio summarizer](public_cloud/ai_machine_learning/endpoints_tuto_01_audio_summarizer)
12181219
+ [AI Endpoints - Create your own voice assistant](public_cloud/ai_machine_learning/endpoints_tuto_02_voice_virtual_assistant)

pages/public_cloud/ai_machine_learning/endpoints_guide_05_structured_output/guide.en-gb.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The examples provided during this guide can be used with one of the following en
4343
>> pip install openai pydantic
4444
>> ```
4545
>>
46-
>> **Javascript**
46+
>> **JavaScript**
4747
>>
4848
>> A [Node.js](https://nodejs.org/en) environment with the [request](https://www.npmjs.com/package/request) library.
4949
>> Request can be installed using [NPM](https://www.npmjs.com/):
@@ -208,7 +208,7 @@ The following code samples provide a simple example on how to specify a JSON sch
208208
>>
209209
>> As we can see, the response is matching the expected JSON schema!
210210
>>
211-
> **Javascript**
211+
> **JavaScript**
212212
>>
213213
>> ```javascript
214214
>> const request = require('request');
@@ -303,7 +303,7 @@ The following code samples provide a simple example on how to specify a JSON sch
303303
>> Java is the n°3 most popular language (https://www.java.com/)
304304
>> ```
305305
>>
306-
>> This example shows us how to use the JSON schema response format with Javascript.
306+
>> This example shows us how to use the JSON schema response format with JavaScript.
307307
>>
308308
309309
### JSON object
@@ -398,7 +398,7 @@ The following code samples provide a simple example on how to use the legacy JSO
398398
>> {"id":"chatcmpl-dfdbf074ab864199bac48ec929179fed","object":"chat.completion","created":1750773314,"model":"Meta-Llama-3_3-70B-Instruct","choices":[{"index":0,"message":{"role":"assistant","content":"{\"rank\": [\n {\"position\": 1, \"language\": \"JavaScript\", \"popularity\": \"94.5%\"},\n {\"position\": 2, \"language\": \"HTML/CSS\", \"popularity\": \"93.2%\"},\n {\"position\": 3, \"language\": \"Python\", \"popularity\": \"87.3%\"}\n]}"},"finish_reason":"stop","logprobs":null}],"usage":{"prompt_tokens":65,"completion_tokens":77,"total_tokens":142}}%
399399
>> ```
400400
>>
401-
> **Javascript**
401+
> **JavaScript**
402402
>>
403403
>> ```javascript
404404
>> const request = require('request');
@@ -558,8 +558,6 @@ In this guide, we have explained how to use Structured Output with the [AI Endpo
558558
559559
Browse the full [AI Endpoints documentation](/products/public-cloud-ai-and-machine-learning-ai-endpoints) to further understand the main concepts and get started.
560560
561-
To discover how to build complete and powerful applications using AI Endpoints, explore our dedicated [AI Endpoints guides](/products/public-cloud-ai-and-machine-learning-ai-endpoints).
562-
563561
If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](/links/professional-services) to get a quote and ask our Professional Services experts for a custom analysis of your project.
564562
565563
## Feedback

pages/public_cloud/ai_machine_learning/endpoints_guide_06_function_calling/guide.en-gb.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,8 +737,6 @@ We have provided a comprehensive overview of the feature which can help you perf
737737

738738
Browse the full [AI Endpoints documentation](/products/public-cloud-ai-and-machine-learning-ai-endpoints) to further understand the main concepts and get started.
739739

740-
To discover how to build complete and powerful applications using AI Endpoints, explore our dedicated [AI Endpoints guides](/products/public-cloud-ai-and-machine-learning-ai-endpoints).
741-
742740
If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](/links/professional-services) to get a quote and ask our Professional Services experts for a custom analysis of your project.
743741

744742
## Feedback

0 commit comments

Comments
 (0)