@apicity/alibaba 0.1.0-alpha.0 → 0.2.0-alpha.0
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/README.md +1 -1
- package/dist/src/zod.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/src/zod.js
CHANGED
|
@@ -252,7 +252,7 @@ export const AlibabaImageGenerationRequestSchema = z.object({
|
|
|
252
252
|
// reference images embedded in `input.messages[0].content` alongside the text
|
|
253
253
|
// prompt. That messages-shape makes a direct `.max()` impossible on the
|
|
254
254
|
// request schema, so this sibling array schema exists purely for Zod
|
|
255
|
-
// introspection by UI layers (e.g.
|
|
255
|
+
// introspection by UI layers (e.g. videocity's readSlotConstraints). It is
|
|
256
256
|
// not used to validate outgoing requests — enforcement of the 9-slot cap
|
|
257
257
|
// happens in callers that pack the messages payload.
|
|
258
258
|
export const AlibabaImageReferenceSlotsSchema = z.array(z.string()).max(9);
|
package/package.json
CHANGED