@purpleschool/ai-proxy 0.5.27 → 0.5.29
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 +8 -0
package/package.json
CHANGED
package/proto/ai-proxy.proto
CHANGED
|
@@ -155,6 +155,12 @@ message VideoEditorRequest {
|
|
|
155
155
|
string prompt = 2;
|
|
156
156
|
string callbackUrl = 3;
|
|
157
157
|
string inputVideoUrl = 4;
|
|
158
|
+
VideoEditorParams params = 5;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
message VideoEditorParams {
|
|
162
|
+
optional string duration = 1;
|
|
163
|
+
optional string resolution = 2;
|
|
158
164
|
}
|
|
159
165
|
|
|
160
166
|
message VideoEditorResponse {
|
|
@@ -177,6 +183,8 @@ message SpeechToTextResponse {
|
|
|
177
183
|
message SpeechToTextAiResponse {
|
|
178
184
|
google.protobuf.Struct raw = 1;
|
|
179
185
|
string md = 2;
|
|
186
|
+
string txtJson = 3;
|
|
187
|
+
string srtJson = 4;
|
|
180
188
|
}
|
|
181
189
|
|
|
182
190
|
// Text To Speech
|