utilitas 1999.1.24 → 1999.1.25
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/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/alan.mjs +3 -2
- package/lib/manifest.mjs +1 -1
- package/package.json +1 -1
package/lib/alan.mjs
CHANGED
|
@@ -180,11 +180,12 @@ const MODELS = {
|
|
|
180
180
|
[JINA_CLIP]: {
|
|
181
181
|
maxInputTokens: k(8), maxImageSize: 512 * 512, dimension: k(1),
|
|
182
182
|
},
|
|
183
|
-
[CLOUD_37_SONNET]: {
|
|
183
|
+
[CLOUD_37_SONNET]: {
|
|
184
184
|
contextWindow: kT(200), maxOutputTokens: kT(64),
|
|
185
185
|
documentCostTokens: 3000 * 100, maxDocumentFile: m(32),
|
|
186
186
|
maxDocumentPages: 100, imageCostTokens: ~~(v8k / 750),
|
|
187
|
-
maxImagePerPrompt: 100,
|
|
187
|
+
maxImagePerPrompt: Math.min(/*Anthropic:*/100, /*Vertex:*/20),
|
|
188
|
+
maxFileSize: /*Vertex*/m(5), maxImageSize: 2000 * 2000,
|
|
188
189
|
supportedMimeTypes: [png, jpeg, gif, webp, pdf],
|
|
189
190
|
json: true, reasoning: true, tools: true, vision: true,
|
|
190
191
|
defaultProvider: [ANTHROPIC, VERTEX_ANTHROPIC],
|
package/lib/manifest.mjs
CHANGED