Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ public partial interface IVoicesClient
/// <remarks>
/// curl --request POST \<br/>
/// --url https://api.ultravox.ai/api/voices \<br/>
/// --header 'Content-Type: application/json' \<br/>
/// --header 'Content-Type: multipart/form-data' \<br/>
/// --header 'X-API-Key: &lt;your-api-key&gt;' \<br/>
/// -d '{"name": "My Custom Voice", "description": "Example ElevenLabs voice", "definition": {"elevenLabs": {"voiceId": "21m00Tcm4TlvDq8ikWAM", "model": "eleven_turbo_v2_5"}} }'
/// --form 'file=@/path/to/voice.mp3' \<br/>
/// --form 'name=My Custom Voice' \<br/>
/// --form 'description=Voice recorded on Jan 1, 2024'
/// </remarks>
global::System.Threading.Tasks.Task<global::Ultravox.Voice> VoicesCreateAsync(

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ partial void ProcessVoicesCreateResponseContent(
/// <remarks>
/// curl --request POST \<br/>
/// --url https://api.ultravox.ai/api/voices \<br/>
/// --header 'Content-Type: application/json' \<br/>
/// --header 'Content-Type: multipart/form-data' \<br/>
/// --header 'X-API-Key: &lt;your-api-key&gt;' \<br/>
/// -d '{"name": "My Custom Voice", "description": "Example ElevenLabs voice", "definition": {"elevenLabs": {"voiceId": "21m00Tcm4TlvDq8ikWAM", "model": "eleven_turbo_v2_5"}} }'
/// --form 'file=@/path/to/voice.mp3' \<br/>
/// --form 'name=My Custom Voice' \<br/>
/// --form 'description=Voice recorded on Jan 1, 2024'
/// </remarks>
public async global::System.Threading.Tasks.Task<global::Ultravox.Voice> VoicesCreateAsync(

Expand Down