@purpleschool/ai-proxy 0.1.8 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/proto/ai-proxy.proto +3 -7
package/package.json
CHANGED
package/proto/ai-proxy.proto
CHANGED
|
@@ -138,16 +138,12 @@ message VideoEditorResponse {
|
|
|
138
138
|
// Speech To Text
|
|
139
139
|
message SpeechToTextRequest {
|
|
140
140
|
string model = 1;
|
|
141
|
-
string
|
|
142
|
-
string
|
|
143
|
-
string fileUrl = 4;
|
|
144
|
-
int32 durationInSeconds = 5;
|
|
145
|
-
string callbackUrl = 6;
|
|
141
|
+
string fileKey = 2;
|
|
142
|
+
string fileUrl = 3;
|
|
146
143
|
}
|
|
147
144
|
|
|
148
145
|
message SpeechToTextResponse {
|
|
149
|
-
|
|
150
|
-
optional SpeechToTextAiResponse aiResponse = 2;
|
|
146
|
+
SpeechToTextAiResponse aiResponse = 1;
|
|
151
147
|
}
|
|
152
148
|
|
|
153
149
|
message SpeechToTextAiResponse {
|