diff --git a/litellm/proxy/_lazy_openapi_snapshot.json b/litellm/proxy/_lazy_openapi_snapshot.json index e8205f232d2..5412426dfdd 100644 --- a/litellm/proxy/_lazy_openapi_snapshot.json +++ b/litellm/proxy/_lazy_openapi_snapshot.json @@ -20400,7 +20400,7 @@ }, "/transcribe/{operation}": { "post": { - "description": "Pass-through for the Amazon Transcribe API, e.g. `POST /transcribe/StartTranscriptionJob`.\n\nThe request body is forwarded as-is to the AWS JSON 1.1 API and signed with SigV4\nusing the proxy's AWS credentials. Streaming transcription (`transcribestreaming`)\nuses a separate HTTP/2 event-stream protocol and is not served by this route.\n\n[Docs](https://docs.litellm.ai/docs/pass_through/transcribe)", + "description": "Pass-through for the Amazon Transcribe API, e.g. `POST /transcribe/StartTranscriptionJob`.\n\nThe request body is forwarded to the AWS JSON 1.1 API and signed with SigV4 using the\nproxy's AWS credentials. Standard jobs are tagged with the calling key's owner so that\nonly that owner (or a proxy admin) can read or delete them; account-wide operations\nsuch as ListTranscriptionJobs are limited to proxy admins. Streaming transcription\n(`transcribestreaming`) uses a separate HTTP/2 event-stream protocol and is not served\nby this route.\n\n[Docs](https://docs.litellm.ai/docs/pass_through/transcribe)", "operationId": "transcribe_proxy_route_transcribe__operation__post", "parameters": [ { diff --git a/ui/litellm-dashboard/src/lib/http/schema.d.ts b/ui/litellm-dashboard/src/lib/http/schema.d.ts index f50e30a0010..69f62f2ce96 100644 --- a/ui/litellm-dashboard/src/lib/http/schema.d.ts +++ b/ui/litellm-dashboard/src/lib/http/schema.d.ts @@ -16513,9 +16513,12 @@ export interface paths { * Transcribe Proxy Route * @description Pass-through for the Amazon Transcribe API, e.g. `POST /transcribe/StartTranscriptionJob`. * - * The request body is forwarded as-is to the AWS JSON 1.1 API and signed with SigV4 - * using the proxy's AWS credentials. Streaming transcription (`transcribestreaming`) - * uses a separate HTTP/2 event-stream protocol and is not served by this route. + * The request body is forwarded to the AWS JSON 1.1 API and signed with SigV4 using the + * proxy's AWS credentials. Standard jobs are tagged with the calling key's owner so that + * only that owner (or a proxy admin) can read or delete them; account-wide operations + * such as ListTranscriptionJobs are limited to proxy admins. Streaming transcription + * (`transcribestreaming`) uses a separate HTTP/2 event-stream protocol and is not served + * by this route. * * [Docs](https://docs.litellm.ai/docs/pass_through/transcribe) */