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