This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support to audio/createSpeech API (#392)
- Loading branch information
1 parent
f1e587d
commit 0ec5a9e
Showing
4 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
api/src/main/java/com/theokanning/openai/audio/CreateSpeechRequest.java
This file contains 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,45 @@ | ||
package com.theokanning.openai.audio; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
import lombok.NonNull; | ||
|
||
@Builder | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@Data | ||
public class CreateSpeechRequest { | ||
|
||
/** | ||
* The name of the model to use. | ||
*/ | ||
@NonNull | ||
String model; | ||
|
||
/** | ||
* The text to generate audio for. The maximum length is 4096 characters. | ||
*/ | ||
@NonNull | ||
String input; | ||
|
||
/** | ||
* The voice to use when generating the audio. | ||
*/ | ||
@NonNull | ||
String voice; | ||
|
||
/** | ||
* The format to audio in. Supported formats are mp3, opus, aac, and flac. Defaults to mp3. | ||
*/ | ||
@JsonProperty("response_format") | ||
String responseFormat; | ||
|
||
/** | ||
* The speed of the generated audio. Select a value from 0.25 to 4.0. Defaults to 1.0. | ||
*/ | ||
Double speed; | ||
} |
This file contains 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 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 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