Skip to content

Commit

Permalink
Update descriptions of transcription endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
ekrojo77 committed Dec 13, 2024
1 parent 5cdb331 commit d6e64b2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ trait TranscriptionController {

def postTranscription: ServerEndpoint[Any, Eff] = endpoint.post
.summary("Transcribe video")
.description("Transcribes a video to a specific language, and uploads the transcription to S3.")
.description("Transcribes a video and uploads the transcription to S3.")
.in(videoId)
.in(language)
.in(maxSpeaker)
Expand All @@ -78,7 +78,7 @@ trait TranscriptionController {
}

def getTranscription: ServerEndpoint[Any, Eff] = endpoint.get
.summary("Get transcription")
.summary("Get the transcription status of a video")
.description("Get the transcription of a video.")
.in(videoId)
.in(language)
Expand Down

0 comments on commit d6e64b2

Please sign in to comment.