@purpleschool/ai-proxy 0.5.28 → 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 +6 -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 {
|