-
Notifications
You must be signed in to change notification settings - Fork 259
/
Copy pathwhisperswagger.json
55 lines (55 loc) · 1.11 KB
/
whisperswagger.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
swagger: '2.0'
info:
title: Whisper
description: ''
version: '1.0'
host: api.openai.com
basePath: /
schemes:
- https
consumes: []
produces: []
paths:
/v1/audio/transcriptions:
post:
responses:
default:
description: default
schema:
type: object
properties:
text:
type: string
description: text
summary: Speech to Text
operationId: Speech2Text
consumes:
- multipart/form-data
parameters:
- name: Content-Type
in: header
required: false
type: string
- name: file
in: formData
type: file
required: true
- name: filename
in: formData
type: string
required: true
- name: model
in: formData
type: string
required: true
definitions: {}
parameters: {}
responses: {}
securityDefinitions:
API Key:
type: apiKey
in: header
name: Authorization
security:
- API Key: []
tags: []