@purpleschool/ai-proxy 0.1.15 → 0.1.17
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 -1
package/package.json
CHANGED
package/proto/ai-proxy.proto
CHANGED
|
@@ -73,7 +73,8 @@ message TextGenerationUnaryRequest {
|
|
|
73
73
|
repeated Message messages = 2;
|
|
74
74
|
repeated string features = 3;
|
|
75
75
|
WebSearchParams webSearchParams = 4;
|
|
76
|
-
string responseSchema = 5;
|
|
76
|
+
optional string responseSchema = 5;
|
|
77
|
+
optional string reasoningEffort = 6;
|
|
77
78
|
}
|
|
78
79
|
|
|
79
80
|
message TextGenerationUnaryResponse {
|
|
@@ -116,6 +117,7 @@ message VideoParams {
|
|
|
116
117
|
int32 duration = 2;
|
|
117
118
|
optional string aspectRatio = 3;
|
|
118
119
|
optional string quality = 4;
|
|
120
|
+
optional string resolution = 5;
|
|
119
121
|
}
|
|
120
122
|
|
|
121
123
|
message VideoGenerationResponse {
|