@purpleschool/ai-proxy 0.1.11 → 0.1.13
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 +4 -7
package/package.json
CHANGED
package/proto/ai-proxy.proto
CHANGED
|
@@ -120,9 +120,8 @@ message VideoParams {
|
|
|
120
120
|
|
|
121
121
|
message VideoGenerationResponse {
|
|
122
122
|
string jobId = 1;
|
|
123
|
-
optional string
|
|
124
|
-
optional string
|
|
125
|
-
optional string error = 4;
|
|
123
|
+
optional string videoUrl = 2;
|
|
124
|
+
optional string error = 3;
|
|
126
125
|
}
|
|
127
126
|
|
|
128
127
|
// Video Editor
|
|
@@ -131,14 +130,12 @@ message VideoEditorRequest {
|
|
|
131
130
|
string prompt = 2;
|
|
132
131
|
string callbackUrl = 3;
|
|
133
132
|
string inputVideoUrl = 4;
|
|
134
|
-
int32 duration = 5;
|
|
135
133
|
}
|
|
136
134
|
|
|
137
135
|
message VideoEditorResponse {
|
|
138
136
|
string jobId = 1;
|
|
139
|
-
optional string
|
|
140
|
-
optional string
|
|
141
|
-
optional string error = 4;
|
|
137
|
+
optional string videoUrl = 2;
|
|
138
|
+
optional string error = 3;
|
|
142
139
|
}
|
|
143
140
|
|
|
144
141
|
// Speech To Text
|