components: schemas: InternalServerError: description: Internal Server Error properties: msg: title: Message type: string type: title: Error Type type: string required: - msg - type title: InternalServerError type: object InvalidArgument: description: Bad Request properties: msg: title: Message type: string type: title: Error Type type: string required: - msg - type title: InvalidArgument type: object NotFound: description: Not Found properties: msg: title: Message type: string type: title: Error Type type: string required: - msg - type title: NotFound type: object info: contact: email: contact@bentoml.com name: BentoML Team description: "# speech_to_text_pipeline:None\n\n[![pypi_status](https://img.shields.io/badge/BentoML-1.0.20-informational)](https://pypi.org/project/BentoML)\n\ [![documentation_status](https://readthedocs.org/projects/bentoml/badge/?version=latest)](https://docs.bentoml.org/)\n\ [![join_slack](https://badgen.net/badge/Join/BentoML%20Slack/cyan?icon=slack)](https://l.bentoml.com/join-slack-swagger)\n\ [![BentoML GitHub Repo](https://img.shields.io/github/stars/bentoml/bentoml?style=social)](https://github.com/bentoml/BentoML)\n\ [![Twitter Follow](https://img.shields.io/twitter/follow/bentomlai?label=Follow%20BentoML&style=social)](https://twitter.com/bentomlai)\n\ \nThis is a Machine Learning Service created with BentoML.\n| InferenceAPI | Input\ \ | Output |\n| ------------ | ----- | ------ |\n| POST [`/process_uploaded_file`](#operations-Service_APIs-speech_to_text_pipeline__process_uploaded_file)\ \ | BytesIOFile | JSON |\n| POST [`/zip_transcription`](#operations-Service_APIs-speech_to_text_pipeline__zip_transcription)\ \ | JSON | BytesIOFile |\n\n\n\n\n## Help\n\n* [\U0001F4D6 Documentation](https://docs.bentoml.org/en/latest/):\ \ Learn how to use BentoML.\n* [\U0001F4AC Community](https://l.bentoml.com/join-slack-swagger):\ \ Join the BentoML Slack community.\n* [\U0001F41B GitHub Issues](https://github.com/bentoml/BentoML/issues):\ \ Report bugs and feature requests.\n* Tip: you can also [customize this README](https://docs.bentoml.org/en/latest/concepts/bento.html#description).\n" title: speech_to_text_pipeline version: None openapi: 3.0.2 paths: /healthz: get: description: Health check endpoint. Expecting an empty response with status code 200 when the service is in health state. The /healthz endpoint is deprecated. (since Kubernetes v1.16) responses: '200': description: Successful Response tags: - Infrastructure /livez: get: description: Health check endpoint for Kubernetes. Healthy endpoint responses with a 200 OK status. responses: '200': description: Successful Response tags: - Infrastructure /metrics: get: description: Prometheus metrics endpoint. The /metrics responses with a 200. The output can then be used by a Prometheus sidecar to scrape the metrics of the service. responses: '200': description: Successful Response tags: - Infrastructure /process_uploaded_file: post: consumes: - null description: '' operationId: speech_to_text_pipeline__process_uploaded_file produces: - application/json requestBody: content: '*/*': schema: format: binary type: string required: true x-bentoml-io-descriptor: args: kind: binaryio mime_type: null id: bentoml.io.File responses: 200: content: application/json: schema: type: object description: Successful Response x-bentoml-io-descriptor: args: has_json_encoder: true has_pydantic_model: false id: bentoml.io.JSON 400: content: application/json: schema: $ref: '#/components/schemas/InvalidArgument' description: Bad Request 404: content: application/json: schema: $ref: '#/components/schemas/NotFound' description: Not Found 500: content: application/json: schema: $ref: '#/components/schemas/InternalServerError' description: Internal Server Error summary: "InferenceAPI(BytesIOFile \u2192 JSON)" tags: - Service APIs x-bentoml-name: process_uploaded_file /readyz: get: description: A 200 OK status from /readyz endpoint indicated the service is ready to accept traffic. From that point and onward, Kubernetes will use /livez endpoint to perform periodic health checks. responses: '200': description: Successful Response tags: - Infrastructure /zip_transcription: post: consumes: - application/json description: '' operationId: speech_to_text_pipeline__zip_transcription produces: - null requestBody: content: application/json: schema: type: object required: true x-bentoml-io-descriptor: args: has_json_encoder: true has_pydantic_model: false id: bentoml.io.JSON responses: 200: content: '*/*': schema: format: binary type: string description: Successful Response x-bentoml-io-descriptor: args: kind: binaryio mime_type: null id: bentoml.io.File 400: content: application/json: schema: $ref: '#/components/schemas/InvalidArgument' description: Bad Request 404: content: application/json: schema: $ref: '#/components/schemas/NotFound' description: Not Found 500: content: application/json: schema: $ref: '#/components/schemas/InternalServerError' description: Internal Server Error summary: "InferenceAPI(JSON \u2192 BytesIOFile)" tags: - Service APIs x-bentoml-name: zip_transcription servers: - url: . tags: - description: BentoML Service API endpoints for inference. name: Service APIs - description: Common infrastructure endpoints for observability. name: Infrastructure