@just-every/ensemble 0.2.262 → 0.2.264
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 +2 -0
- package/dist/cjs/core/ensemble_embed.cjs +6 -5
- package/dist/cjs/core/ensemble_embed.d.ts.map +1 -1
- package/dist/cjs/core/ensemble_embed.js.map +1 -1
- package/dist/cjs/data/model_data.cjs +162 -12
- package/dist/cjs/data/model_data.d.ts.map +1 -1
- package/dist/cjs/data/model_data.js.map +1 -1
- package/dist/cjs/model_providers/fal.cjs +209 -2
- package/dist/cjs/model_providers/fal.d.ts +3 -0
- package/dist/cjs/model_providers/fal.d.ts.map +1 -1
- package/dist/cjs/model_providers/fal.js.map +1 -1
- package/dist/cjs/model_providers/gemini.cjs +6 -2
- package/dist/cjs/model_providers/gemini.d.ts.map +1 -1
- package/dist/cjs/model_providers/gemini.js.map +1 -1
- package/dist/cjs/model_providers/model_provider.cjs +22 -1
- package/dist/cjs/model_providers/model_provider.d.ts.map +1 -1
- package/dist/cjs/model_providers/model_provider.js.map +1 -1
- package/dist/cjs/model_providers/openai.cjs +12 -2
- package/dist/cjs/model_providers/openai.d.ts.map +1 -1
- package/dist/cjs/model_providers/openai.js.map +1 -1
- package/dist/cjs/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/cjs/types/types.d.ts +1 -0
- package/dist/cjs/types/types.d.ts.map +1 -1
- package/dist/core/ensemble_embed.d.ts.map +1 -1
- package/dist/core/ensemble_embed.js +6 -5
- package/dist/core/ensemble_embed.js.map +1 -1
- package/dist/data/model_data.d.ts.map +1 -1
- package/dist/data/model_data.js +162 -12
- package/dist/data/model_data.js.map +1 -1
- package/dist/model_providers/fal.d.ts +3 -0
- package/dist/model_providers/fal.d.ts.map +1 -1
- package/dist/model_providers/fal.js +209 -2
- package/dist/model_providers/fal.js.map +1 -1
- package/dist/model_providers/gemini.d.ts.map +1 -1
- package/dist/model_providers/gemini.js +6 -2
- package/dist/model_providers/gemini.js.map +1 -1
- package/dist/model_providers/model_provider.d.ts.map +1 -1
- package/dist/model_providers/model_provider.js +22 -1
- package/dist/model_providers/model_provider.js.map +1 -1
- package/dist/model_providers/openai.d.ts.map +1 -1
- package/dist/model_providers/openai.js +12 -2
- package/dist/model_providers/openai.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/types.d.ts +1 -0
- package/dist/types/types.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -474,6 +474,8 @@ New providers added
|
|
|
474
474
|
- Recraft v3 – via FAL.ai (supports text-to-vector and vector-style outputs).
|
|
475
475
|
- Recraft Crisp Upscale – via FAL.ai (`fal-ai/recraft/upscale/crisp`, one source image per request).
|
|
476
476
|
- Ideogram V3 – via FAL.ai (`fal-ai/ideogram/v3` for creation and `fal-ai/ideogram/v3/edit` for masked editing).
|
|
477
|
+
- Ideogram V4 – via FAL.ai (`ideogram/v4/instant` and `ideogram/v4/fast` for text-to-image).
|
|
478
|
+
- Seedream 5.0 Pro/Lite – via FAL.ai (`bytedance/seedream/v5/pro` and `bytedance/seedream/v5/lite`, aliasing to FAL's text-to-image endpoints).
|
|
477
479
|
- Ideogram remove background – via FAL.ai (`fal-ai/ideogram/remove-background`, one source image per request).
|
|
478
480
|
- Image outpaint – via FAL.ai (`fal-ai/image-apps-v2/outpaint`, one source image per request, directional expansion).
|
|
479
481
|
- FLUX.2 Pro outpaint – via FAL.ai (`fal-ai/flux-2-pro/outpaint`, one source image per request, directional expansion up to 2048px).
|
|
@@ -29,7 +29,10 @@ async function ensembleEmbed(text, agent, options) {
|
|
|
29
29
|
},
|
|
30
30
|
});
|
|
31
31
|
try {
|
|
32
|
-
const
|
|
32
|
+
const model = agent.model || 'text-embedding-3-small';
|
|
33
|
+
const modelInfo = (0, model_data_js_1.findModel)(model);
|
|
34
|
+
const dimensions = options?.dimensions ?? modelInfo?.dim ?? 1536;
|
|
35
|
+
const providerOptions = options?.dimensions === undefined ? options : { ...options, dimensions };
|
|
33
36
|
const cacheKey = `${agent.model || agent.modelClass}:${text}:${dimensions}`;
|
|
34
37
|
const cached = embeddingCache.get(cacheKey);
|
|
35
38
|
if (cached) {
|
|
@@ -43,12 +46,10 @@ async function ensembleEmbed(text, agent, options) {
|
|
|
43
46
|
}
|
|
44
47
|
embeddingCache.delete(cacheKey);
|
|
45
48
|
}
|
|
46
|
-
const model = agent.model || 'text-embedding-3-small';
|
|
47
49
|
const provider = (0, model_provider_js_1.getModelProvider)(model);
|
|
48
50
|
if (!provider.createEmbedding) {
|
|
49
51
|
throw new Error(`Provider for model ${model} does not support embeddings`);
|
|
50
52
|
}
|
|
51
|
-
const modelInfo = (0, model_data_js_1.findModel)(model);
|
|
52
53
|
const inputTokenLimit = modelInfo?.features?.input_token_limit;
|
|
53
54
|
const MAX_CHARS_PER_CHUNK = inputTokenLimit ? inputTokenLimit * 4 * 0.9 : Infinity;
|
|
54
55
|
const needsChunking = inputTokenLimit && text.length > MAX_CHARS_PER_CHUNK;
|
|
@@ -58,7 +59,7 @@ async function ensembleEmbed(text, agent, options) {
|
|
|
58
59
|
for (let i = 0; i < text.length; i += MAX_CHARS_PER_CHUNK) {
|
|
59
60
|
chunks.push(text.slice(i, i + MAX_CHARS_PER_CHUNK));
|
|
60
61
|
}
|
|
61
|
-
const result = await provider.createEmbedding(chunks, model, agent,
|
|
62
|
+
const result = await provider.createEmbedding(chunks, model, agent, providerOptions);
|
|
62
63
|
const embeddings = result;
|
|
63
64
|
embedding = new Array(dimensions).fill(0);
|
|
64
65
|
for (const vec of embeddings) {
|
|
@@ -68,7 +69,7 @@ async function ensembleEmbed(text, agent, options) {
|
|
|
68
69
|
}
|
|
69
70
|
}
|
|
70
71
|
else {
|
|
71
|
-
const result = await provider.createEmbedding(text, model, agent,
|
|
72
|
+
const result = await provider.createEmbedding(text, model, agent, providerOptions);
|
|
72
73
|
embedding = Array.isArray(result[0]) ? result[0] : result;
|
|
73
74
|
}
|
|
74
75
|
if (embeddingCache.size >= EMBEDDING_CACHE_MAX) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ensemble_embed.d.ts","sourceRoot":"","sources":["../../../core/ensemble_embed.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAiEpE,wBAAsB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"ensemble_embed.d.ts","sourceRoot":"","sources":["../../../core/ensemble_embed.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAiEpE,wBAAsB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CA2HhH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ensemble_embed.js","sourceRoot":"","sources":["../../../core/ensemble_embed.ts"],"names":[],"mappings":";;AAiEA,
|
|
1
|
+
{"version":3,"file":"ensemble_embed.js","sourceRoot":"","sources":["../../../core/ensemble_embed.ts"],"names":[],"mappings":"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"}
|
|
@@ -149,7 +149,7 @@ exports.MODEL_CLASSES = {
|
|
|
149
149
|
embedding: {
|
|
150
150
|
models: [
|
|
151
151
|
'text-embedding-3-large',
|
|
152
|
-
'
|
|
152
|
+
'gemini-embedding-2',
|
|
153
153
|
],
|
|
154
154
|
description: 'Vector embedding models for semantic search and RAG',
|
|
155
155
|
},
|
|
@@ -306,6 +306,50 @@ exports.MODEL_REGISTRY = [
|
|
|
306
306
|
class: 'image_generation',
|
|
307
307
|
description: 'Ideogram V3 image editing via FAL.ai. Inpaints one source image with a same-dimension mask. TURBO is $0.03/image, BALANCED is $0.06/image, and QUALITY is $0.09/image.',
|
|
308
308
|
},
|
|
309
|
+
{
|
|
310
|
+
id: 'ideogram/v4/instant',
|
|
311
|
+
aliases: ['fal-ideogram-v4-instant', 'ideogram-v4-instant'],
|
|
312
|
+
provider: 'fal',
|
|
313
|
+
cost: { per_image: 0.0075 },
|
|
314
|
+
features: { input_modality: ['text'], output_modality: ['image'] },
|
|
315
|
+
class: 'image_generation',
|
|
316
|
+
description: 'Ideogram V4 instant text-to-image via FAL.ai. Pricing is per megapixel: $0.00375 TURBO, $0.0075 BALANCED, or $0.0125 QUALITY.',
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
id: 'ideogram/v4/fast',
|
|
320
|
+
aliases: ['fal-ideogram-v4-fast', 'ideogram-v4-fast'],
|
|
321
|
+
provider: 'fal',
|
|
322
|
+
cost: { per_image: 0.0105 },
|
|
323
|
+
features: { input_modality: ['text'], output_modality: ['image'] },
|
|
324
|
+
class: 'image_generation',
|
|
325
|
+
description: 'Ideogram V4 fast text-to-image via FAL.ai. Pricing is per megapixel: $0.00525 TURBO, $0.0105 BALANCED, or $0.0175 QUALITY.',
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
id: 'bytedance/seedream/v5/pro/text-to-image',
|
|
329
|
+
aliases: [
|
|
330
|
+
'bytedance/seedream/v5/pro',
|
|
331
|
+
'fal-ai/bytedance/seedream/v5/pro',
|
|
332
|
+
'fal-ai/bytedance/seedream/v5/pro/text-to-image',
|
|
333
|
+
],
|
|
334
|
+
provider: 'fal',
|
|
335
|
+
cost: { per_image: 0.135 },
|
|
336
|
+
features: { input_modality: ['text'], output_modality: ['image'] },
|
|
337
|
+
class: 'image_generation',
|
|
338
|
+
description: 'ByteDance Seedream 5.0 Pro text-to-image via FAL.ai. Tentative pricing is $0.0675/image up to 1536x1536 total area and $0.135/image above that up to 2048x2048.',
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
id: 'fal-ai/bytedance/seedream/v5/lite/text-to-image',
|
|
342
|
+
aliases: [
|
|
343
|
+
'bytedance/seedream/v5/lite',
|
|
344
|
+
'bytedance/seedream/v5/lite/text-to-image',
|
|
345
|
+
'fal-ai/bytedance/seedream/v5/lite',
|
|
346
|
+
],
|
|
347
|
+
provider: 'fal',
|
|
348
|
+
cost: { per_image: 0.035 },
|
|
349
|
+
features: { input_modality: ['text'], output_modality: ['image'] },
|
|
350
|
+
class: 'image_generation',
|
|
351
|
+
description: 'ByteDance Seedream 5.0 Lite text-to-image via FAL.ai. Pricing is $0.035/image with up to 6 requested generations per call.',
|
|
352
|
+
},
|
|
309
353
|
{
|
|
310
354
|
id: 'fal-ai/image-apps-v2/outpaint',
|
|
311
355
|
aliases: ['fal-image-apps-v2-outpaint', 'fal-ai-image-apps-v2-outpaint'],
|
|
@@ -368,38 +412,38 @@ exports.MODEL_REGISTRY = [
|
|
|
368
412
|
description: "OpenAI's large embedding model, good balance of performance and cost",
|
|
369
413
|
},
|
|
370
414
|
{
|
|
371
|
-
id: '
|
|
372
|
-
provider: '
|
|
415
|
+
id: 'text-embedding-ada-002',
|
|
416
|
+
provider: 'openai',
|
|
373
417
|
cost: {
|
|
374
|
-
input_per_million: 0,
|
|
418
|
+
input_per_million: 0.1,
|
|
375
419
|
output_per_million: 0,
|
|
376
420
|
},
|
|
377
421
|
features: {
|
|
378
422
|
input_modality: ['text'],
|
|
379
423
|
output_modality: ['embedding'],
|
|
380
|
-
input_token_limit:
|
|
424
|
+
input_token_limit: 8192,
|
|
381
425
|
},
|
|
382
426
|
embedding: true,
|
|
383
|
-
dim:
|
|
427
|
+
dim: 1536,
|
|
384
428
|
class: 'embedding',
|
|
385
|
-
description: "
|
|
429
|
+
description: "OpenAI's older, still-supported text embedding model",
|
|
386
430
|
},
|
|
387
431
|
{
|
|
388
|
-
id: '
|
|
432
|
+
id: 'gemini-embedding-2',
|
|
389
433
|
provider: 'google',
|
|
390
434
|
cost: {
|
|
391
|
-
input_per_million: 0,
|
|
435
|
+
input_per_million: 0.2,
|
|
392
436
|
output_per_million: 0,
|
|
393
437
|
},
|
|
394
438
|
features: {
|
|
395
439
|
input_modality: ['text'],
|
|
396
440
|
output_modality: ['embedding'],
|
|
397
|
-
input_token_limit:
|
|
441
|
+
input_token_limit: 8192,
|
|
398
442
|
},
|
|
399
443
|
embedding: true,
|
|
400
|
-
dim:
|
|
444
|
+
dim: 3072,
|
|
401
445
|
class: 'embedding',
|
|
402
|
-
description: "Google's
|
|
446
|
+
description: "Google's current embedding model; this text API supports its text-embedding capability",
|
|
403
447
|
},
|
|
404
448
|
{
|
|
405
449
|
id: 'meta-llama/llama-4-maverick',
|
|
@@ -965,6 +1009,112 @@ exports.MODEL_REGISTRY = [
|
|
|
965
1009
|
class: 'standard',
|
|
966
1010
|
description: 'Latest premium GPT model from OpenAI',
|
|
967
1011
|
},
|
|
1012
|
+
{
|
|
1013
|
+
id: 'gpt-5.6-sol',
|
|
1014
|
+
aliases: ['gpt-5.6'],
|
|
1015
|
+
provider: 'openai',
|
|
1016
|
+
cost: {
|
|
1017
|
+
input_per_million: {
|
|
1018
|
+
threshold_tokens: 272000,
|
|
1019
|
+
price_below_threshold_per_million: 5.0,
|
|
1020
|
+
price_above_threshold_per_million: 10.0,
|
|
1021
|
+
tier_basis: 'input_tokens',
|
|
1022
|
+
},
|
|
1023
|
+
cached_input_per_million: {
|
|
1024
|
+
threshold_tokens: 272000,
|
|
1025
|
+
price_below_threshold_per_million: 0.5,
|
|
1026
|
+
price_above_threshold_per_million: 1.0,
|
|
1027
|
+
tier_basis: 'input_tokens',
|
|
1028
|
+
},
|
|
1029
|
+
output_per_million: {
|
|
1030
|
+
threshold_tokens: 272000,
|
|
1031
|
+
price_below_threshold_per_million: 30.0,
|
|
1032
|
+
price_above_threshold_per_million: 45.0,
|
|
1033
|
+
tier_basis: 'input_tokens',
|
|
1034
|
+
},
|
|
1035
|
+
},
|
|
1036
|
+
features: {
|
|
1037
|
+
context_length: 1050000,
|
|
1038
|
+
max_output_tokens: 128000,
|
|
1039
|
+
input_modality: ['text', 'image'],
|
|
1040
|
+
output_modality: ['text'],
|
|
1041
|
+
tool_use: true,
|
|
1042
|
+
streaming: true,
|
|
1043
|
+
json_output: true,
|
|
1044
|
+
},
|
|
1045
|
+
class: 'reasoning',
|
|
1046
|
+
description: 'GPT-5.6 flagship model for complex reasoning, coding, and professional work (1.05M/128k).',
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
id: 'gpt-5.6-terra',
|
|
1050
|
+
provider: 'openai',
|
|
1051
|
+
cost: {
|
|
1052
|
+
input_per_million: {
|
|
1053
|
+
threshold_tokens: 272000,
|
|
1054
|
+
price_below_threshold_per_million: 2.5,
|
|
1055
|
+
price_above_threshold_per_million: 5.0,
|
|
1056
|
+
tier_basis: 'input_tokens',
|
|
1057
|
+
},
|
|
1058
|
+
cached_input_per_million: {
|
|
1059
|
+
threshold_tokens: 272000,
|
|
1060
|
+
price_below_threshold_per_million: 0.25,
|
|
1061
|
+
price_above_threshold_per_million: 0.5,
|
|
1062
|
+
tier_basis: 'input_tokens',
|
|
1063
|
+
},
|
|
1064
|
+
output_per_million: {
|
|
1065
|
+
threshold_tokens: 272000,
|
|
1066
|
+
price_below_threshold_per_million: 15.0,
|
|
1067
|
+
price_above_threshold_per_million: 22.5,
|
|
1068
|
+
tier_basis: 'input_tokens',
|
|
1069
|
+
},
|
|
1070
|
+
},
|
|
1071
|
+
features: {
|
|
1072
|
+
context_length: 1050000,
|
|
1073
|
+
max_output_tokens: 128000,
|
|
1074
|
+
input_modality: ['text', 'image'],
|
|
1075
|
+
output_modality: ['text'],
|
|
1076
|
+
tool_use: true,
|
|
1077
|
+
streaming: true,
|
|
1078
|
+
json_output: true,
|
|
1079
|
+
},
|
|
1080
|
+
class: 'standard',
|
|
1081
|
+
description: 'GPT-5.6 model balancing intelligence and cost for production work (1.05M/128k).',
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
id: 'gpt-5.6-luna',
|
|
1085
|
+
provider: 'openai',
|
|
1086
|
+
cost: {
|
|
1087
|
+
input_per_million: {
|
|
1088
|
+
threshold_tokens: 272000,
|
|
1089
|
+
price_below_threshold_per_million: 1.0,
|
|
1090
|
+
price_above_threshold_per_million: 2.0,
|
|
1091
|
+
tier_basis: 'input_tokens',
|
|
1092
|
+
},
|
|
1093
|
+
cached_input_per_million: {
|
|
1094
|
+
threshold_tokens: 272000,
|
|
1095
|
+
price_below_threshold_per_million: 0.1,
|
|
1096
|
+
price_above_threshold_per_million: 0.2,
|
|
1097
|
+
tier_basis: 'input_tokens',
|
|
1098
|
+
},
|
|
1099
|
+
output_per_million: {
|
|
1100
|
+
threshold_tokens: 272000,
|
|
1101
|
+
price_below_threshold_per_million: 6.0,
|
|
1102
|
+
price_above_threshold_per_million: 9.0,
|
|
1103
|
+
tier_basis: 'input_tokens',
|
|
1104
|
+
},
|
|
1105
|
+
},
|
|
1106
|
+
features: {
|
|
1107
|
+
context_length: 1050000,
|
|
1108
|
+
max_output_tokens: 128000,
|
|
1109
|
+
input_modality: ['text', 'image'],
|
|
1110
|
+
output_modality: ['text'],
|
|
1111
|
+
tool_use: true,
|
|
1112
|
+
streaming: true,
|
|
1113
|
+
json_output: true,
|
|
1114
|
+
},
|
|
1115
|
+
class: 'mini',
|
|
1116
|
+
description: 'GPT-5.6 model optimized for efficient, high-volume workloads (1.05M/128k).',
|
|
1117
|
+
},
|
|
968
1118
|
{
|
|
969
1119
|
id: 'gpt-5.5',
|
|
970
1120
|
aliases: ['gpt-5.5-2026-04-23'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model_data.d.ts","sourceRoot":"","sources":["../../../data/model_data.ts"],"names":[],"mappings":"AAYA,OAAO,EACH,YAAY,EACZ,eAAe,EACf,WAAW,EACX,cAAc,EACd,aAAa,EACb,SAAS,EACT,aAAa,EACb,UAAU,EACV,UAAU,EACV,UAAU,EACb,MAAM,mBAAmB,CAAC;AAM3B,YAAY,EACR,YAAY,EACZ,eAAe,EACf,WAAW,EACX,cAAc,EACd,aAAa,EACb,SAAS,EACT,aAAa,EACb,UAAU,EACV,UAAU,EACV,UAAU,GACb,CAAC;AAOF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0MzB,CAAC;AAGF,eAAO,MAAM,cAAc,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"model_data.d.ts","sourceRoot":"","sources":["../../../data/model_data.ts"],"names":[],"mappings":"AAYA,OAAO,EACH,YAAY,EACZ,eAAe,EACf,WAAW,EACX,cAAc,EACd,aAAa,EACb,SAAS,EACT,aAAa,EACb,UAAU,EACV,UAAU,EACV,UAAU,EACb,MAAM,mBAAmB,CAAC;AAM3B,YAAY,EACR,YAAY,EACZ,eAAe,EACf,WAAW,EACX,cAAc,EACd,aAAa,EACb,SAAS,EACT,aAAa,EACb,UAAU,EACV,UAAU,EACV,UAAU,GACb,CAAC;AAOF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0MzB,CAAC;AAGF,eAAO,MAAM,cAAc,EAAE,UAAU,EAs7HtC,CAAC;AAQF,wBAAgB,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,UAAU,GAAG,SAAS,CAuBjE"}
|