Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OpenAI] Refactor project structure #25986

Merged
merged 8 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Corrected documentation issue
  • Loading branch information
jpalvarezl committed Oct 5, 2023
commit debb441fe4c491322e261b0a36234b02bf2cdf12
3 changes: 2 additions & 1 deletion custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1639,6 +1639,7 @@ moodle
mooncake
mountainview
movere
mpga
mpls
mpns
mran
Expand Down Expand Up @@ -3742,4 +3743,4 @@ usedCPUMHz
totalCPUMHz
docon
DialOut
vectorizers
vectorizers
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The configuration information for an audio transcription request.
model AudioTranscriptionOptions {
@doc("""
The audio data to transcribe. This must be the binary content of a file in one of the supported media formats:
flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm.
flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm.
""")
@projectedName("csharp", "AudioData")
file: bytes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The configuration information for an audio translation request.
model AudioTranslationOptions {
@doc("""
The audio data to translate. This must be the binary content of a file in one of the supported media formats:
flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm.
flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm.
""")
@projectedName("csharp", "AudioData")
file: bytes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@
"file": {
"type": "string",
"format": "byte",
"description": "The audio data to transcribe. This must be the binary content of a file in one of the supported media formats:\nflac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm."
"description": "The audio data to transcribe. This must be the binary content of a file in one of the supported media formats:\n flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm."
},
"response_format": {
"$ref": "#/definitions/AudioTranscriptionFormat",
Expand Down Expand Up @@ -775,7 +775,7 @@
"file": {
"type": "string",
"format": "byte",
"description": "The audio data to translate. This must be the binary content of a file in one of the supported media formats:\nflac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm."
"description": "The audio data to translate. This must be the binary content of a file in one of the supported media formats:\n flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm."
},
"response_format": {
"$ref": "#/definitions/AudioTranslationFormat",
Expand Down Expand Up @@ -1945,7 +1945,7 @@
"AudioTranscriptionOptions.file": {
"name": "file",
"in": "formData",
"description": "The audio data to transcribe. This must be the binary content of a file in one of the supported media formats:\nflac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm.",
"description": "The audio data to transcribe. This must be the binary content of a file in one of the supported media formats:\n flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm.",
"required": true,
"type": "string",
"format": "byte",
Expand Down Expand Up @@ -2034,7 +2034,7 @@
"AudioTranslationOptions.file": {
"name": "file",
"in": "formData",
"description": "The audio data to translate. This must be the binary content of a file in one of the supported media formats:\nflac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm.",
"description": "The audio data to translate. This must be the binary content of a file in one of the supported media formats:\n flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, webm.",
"required": true,
"type": "string",
"format": "byte",
Expand Down