-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeech.go
239 lines (204 loc) · 6.15 KB
/
speech.go
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
package groq
import (
"bytes"
"encoding/json"
"fmt"
"io"
"mime/multipart"
"net/http"
"os"
"path/filepath"
)
type transcriptionSegment struct {
ID string `json:"id"`
Seek float64 `json:"seek"`
Start float64 `json:"start"`
End float64 `json:"end"`
Text string `json:"text"`
Tokens []int `json:"tokens"`
Temperature int `json:"temperature"`
AvgLogProb float64 `json:"avg_logprob"`
CompressionRation float64 `json:"compression_ratio"`
NoSpeechProb float64 `json:"no_speech_prob"`
}
// TranscriptionConfig houses configuration options for transcription requests
type TranscriptionConfig struct {
// What language the audio is in. if blank the model will guess it
Language string
// An optional text to guide the model's style or continue a previous audio segment. The prompt should match the audio language.
Prompt string
// The format of the transcript output, in one of these options: json, text, or verbose_json
ResponseFormat string
// The sampling temperature, between 0 and 1.
Temperature float64
}
// TranslationConfig houses configuration options for translation requests
type TranslationConfig struct {
// An optional text to guide the model's style or continue a previous audio segment. The prompt should match the audio language.
Prompt string
// The format of the transcript output, in one of these options: json, text, or verbose_json
ResponseFormat string
// The sampling temperature, between 0 and 1.
Temperature float64
}
// Transcription represents an audio transcription/translation result from one of Groq's models
type Transcription struct {
Task string `json:"task"`
Language string `json:"language"`
Duration float64 `json:"duration"`
Text string `json:"text"`
Segments []transcriptionSegment `json:"segments"`
XGroq struct {
ID string `json:"id"`
} `json:"x_groq"`
}
// Transcribes a given audio file using one of Groq's hosted Whipser models
func (g *GroqClient) TranscribeAudio(filename string, model string, config *TranscriptionConfig) (Transcription, error) {
req, err := createGroqRequest("audio/transcriptions", g.apiKey, "POST", nil)
if err != nil {
return Transcription{}, err
}
data, err := os.ReadFile(filename)
if err != nil {
return Transcription{}, err
}
body := &bytes.Buffer{}
writer := multipart.NewWriter(body)
part, err := writer.CreateFormFile("file", filepath.Base(filename))
if err != nil {
return Transcription{}, err
}
_, err = io.Copy(part, bytes.NewReader(data))
if err != nil {
return Transcription{}, err
}
err = writer.WriteField("model", model)
if err != nil {
return Transcription{}, err
}
if config != nil {
if config.Language != "" {
err = writer.WriteField("language", config.Language)
if err != nil {
return Transcription{}, err
}
}
if config.Prompt != "" {
err = writer.WriteField("prompt", config.Prompt)
if err != nil {
return Transcription{}, err
}
}
if config.ResponseFormat != "" {
err = writer.WriteField("response_format", config.ResponseFormat)
if err != nil {
return Transcription{}, err
}
}
if config.Temperature != 0 {
err = writer.WriteField("temperature", fmt.Sprintf("%f", config.Temperature))
if err != nil {
return Transcription{}, err
}
}
}
err = writer.Close()
if err != nil && err != io.EOF {
return Transcription{}, err
}
req.Body = io.NopCloser(body)
req.Header.Add("Content-Type", writer.FormDataContentType())
resp, err := http.DefaultClient.Do(req)
if err != nil {
return Transcription{}, err
}
if resp.StatusCode != http.StatusOK {
return Transcription{}, fmt.Errorf("request failed with status: %s", resp.Status)
}
var responseTranscription Transcription
if config != nil && config.ResponseFormat == "text" {
text, err := io.ReadAll(resp.Body)
if err != nil {
return Transcription{}, err
}
responseTranscription.Text = string(text)
} else {
err = json.NewDecoder(resp.Body).Decode(&responseTranscription)
if err != nil {
return Transcription{}, err
}
}
return responseTranscription, nil
}
// Translates a given audio file into English.
func (g *GroqClient) TranslateAudio(filename string, model string, config *TranslationConfig) (Transcription, error) {
req, err := createGroqRequest("audio/translations", g.apiKey, "POST", nil)
if err != nil {
return Transcription{}, err
}
data, err := os.ReadFile(filename)
if err != nil {
return Transcription{}, err
}
body := &bytes.Buffer{}
writer := multipart.NewWriter(body)
part, err := writer.CreateFormFile("file", filepath.Base(filename))
if err != nil {
return Transcription{}, err
}
_, err = io.Copy(part, bytes.NewReader(data))
if err != nil {
return Transcription{}, err
}
err = writer.WriteField("model", model)
if err != nil {
return Transcription{}, err
}
if config != nil {
if config.Prompt != "" {
err = writer.WriteField("prompt", config.Prompt)
if err != nil {
return Transcription{}, err
}
}
if config.ResponseFormat != "" {
err = writer.WriteField("response_format", config.ResponseFormat)
if err != nil {
return Transcription{}, err
}
}
if config.Temperature != 0 {
err = writer.WriteField("temperature", fmt.Sprintf("%f", config.Temperature))
if err != nil {
return Transcription{}, err
}
}
}
err = writer.Close()
if err != nil && err != io.EOF {
return Transcription{}, err
}
req.Body = io.NopCloser(body)
req.Header.Add("Content-Type", writer.FormDataContentType())
resp, err := http.DefaultClient.Do(req)
if err != nil {
return Transcription{}, err
}
if resp.StatusCode != http.StatusOK {
return Transcription{}, fmt.Errorf("request failed with status: %s", resp.Status)
}
var responseTranslation Transcription
if config != nil && config.ResponseFormat == "text" {
text, err := io.ReadAll(resp.Body)
if err != nil {
return Transcription{}, err
}
responseTranslation.Text = string(text)
} else {
err = json.NewDecoder(resp.Body).Decode(&responseTranslation)
if err != nil {
return Transcription{}, err
}
}
return responseTranslation, nil
}