@agi-cli/sdk 0.1.83 → 0.1.85

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agi-cli/sdk",
3
- "version": "0.1.83",
3
+ "version": "0.1.85",
4
4
  "description": "AI agent SDK for building intelligent assistants - tree-shakable and comprehensive",
5
5
  "author": "ntishxyz",
6
6
  "license": "MIT",
@@ -366,6 +366,11 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
366
366
  releaseDate: '2025-09-15',
367
367
  lastUpdated: '2025-09-15',
368
368
  openWeights: false,
369
+ cost: {
370
+ input: 1.25,
371
+ output: 10,
372
+ cacheRead: 0.125,
373
+ },
369
374
  limit: {
370
375
  context: 400000,
371
376
  output: 128000,
@@ -1101,6 +1106,56 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
1101
1106
  output: 65536,
1102
1107
  },
1103
1108
  },
1109
+ {
1110
+ id: 'gemini-2.5-flash-image',
1111
+ label: 'Gemini 2.5 Flash Image',
1112
+ modalities: {
1113
+ input: ['text', 'image'],
1114
+ output: ['text', 'image'],
1115
+ },
1116
+ toolCall: false,
1117
+ reasoning: true,
1118
+ attachment: true,
1119
+ temperature: true,
1120
+ knowledge: '2025-06',
1121
+ releaseDate: '2025-08-26',
1122
+ lastUpdated: '2025-08-26',
1123
+ openWeights: false,
1124
+ cost: {
1125
+ input: 0.3,
1126
+ output: 30,
1127
+ cacheRead: 0.075,
1128
+ },
1129
+ limit: {
1130
+ context: 32768,
1131
+ output: 32768,
1132
+ },
1133
+ },
1134
+ {
1135
+ id: 'gemini-2.5-flash-image-preview',
1136
+ label: 'Gemini 2.5 Flash Image (Preview)',
1137
+ modalities: {
1138
+ input: ['text', 'image'],
1139
+ output: ['text', 'image'],
1140
+ },
1141
+ toolCall: false,
1142
+ reasoning: true,
1143
+ attachment: true,
1144
+ temperature: true,
1145
+ knowledge: '2025-06',
1146
+ releaseDate: '2025-08-26',
1147
+ lastUpdated: '2025-08-26',
1148
+ openWeights: false,
1149
+ cost: {
1150
+ input: 0.3,
1151
+ output: 30,
1152
+ cacheRead: 0.075,
1153
+ },
1154
+ limit: {
1155
+ context: 32768,
1156
+ output: 32768,
1157
+ },
1158
+ },
1104
1159
  {
1105
1160
  id: 'gemini-2.5-flash-lite',
1106
1161
  label: 'Gemini 2.5 Flash Lite',
@@ -1251,6 +1306,30 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
1251
1306
  output: 65536,
1252
1307
  },
1253
1308
  },
1309
+ {
1310
+ id: 'gemini-2.5-flash-preview-tts',
1311
+ label: 'Gemini 2.5 Flash Preview TTS',
1312
+ modalities: {
1313
+ input: ['text'],
1314
+ output: ['audio'],
1315
+ },
1316
+ toolCall: false,
1317
+ reasoning: false,
1318
+ attachment: false,
1319
+ temperature: false,
1320
+ knowledge: '2025-01',
1321
+ releaseDate: '2025-05-01',
1322
+ lastUpdated: '2025-05-01',
1323
+ openWeights: false,
1324
+ cost: {
1325
+ input: 0.5,
1326
+ output: 10,
1327
+ },
1328
+ limit: {
1329
+ context: 8000,
1330
+ output: 16000,
1331
+ },
1332
+ },
1254
1333
  {
1255
1334
  id: 'gemini-2.5-pro',
1256
1335
  label: 'Gemini 2.5 Pro',
@@ -1326,6 +1405,30 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
1326
1405
  output: 65536,
1327
1406
  },
1328
1407
  },
1408
+ {
1409
+ id: 'gemini-2.5-pro-preview-tts',
1410
+ label: 'Gemini 2.5 Pro Preview TTS',
1411
+ modalities: {
1412
+ input: ['text'],
1413
+ output: ['audio'],
1414
+ },
1415
+ toolCall: false,
1416
+ reasoning: false,
1417
+ attachment: false,
1418
+ temperature: false,
1419
+ knowledge: '2025-01',
1420
+ releaseDate: '2025-05-01',
1421
+ lastUpdated: '2025-05-01',
1422
+ openWeights: false,
1423
+ cost: {
1424
+ input: 1,
1425
+ output: 20,
1426
+ },
1427
+ limit: {
1428
+ context: 8000,
1429
+ output: 16000,
1430
+ },
1431
+ },
1329
1432
  {
1330
1433
  id: 'gemini-flash-latest',
1331
1434
  label: 'Gemini Flash Latest',
@@ -1376,6 +1479,30 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
1376
1479
  output: 65536,
1377
1480
  },
1378
1481
  },
1482
+ {
1483
+ id: 'gemini-live-2.5-flash',
1484
+ label: 'Gemini Live 2.5 Flash',
1485
+ modalities: {
1486
+ input: ['text', 'image', 'audio', 'video'],
1487
+ output: ['text', 'audio'],
1488
+ },
1489
+ toolCall: true,
1490
+ reasoning: true,
1491
+ attachment: true,
1492
+ temperature: true,
1493
+ knowledge: '2025-01',
1494
+ releaseDate: '2025-09-01',
1495
+ lastUpdated: '2025-09-01',
1496
+ openWeights: false,
1497
+ cost: {
1498
+ input: 0.5,
1499
+ output: 2,
1500
+ },
1501
+ limit: {
1502
+ context: 128000,
1503
+ output: 8000,
1504
+ },
1505
+ },
1379
1506
  {
1380
1507
  id: 'gemini-live-2.5-flash-preview-native-audio',
1381
1508
  label: 'Gemini Live 2.5 Flash Preview Native Audio',
@@ -3271,7 +3398,7 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
3271
3398
  input: ['text'],
3272
3399
  output: ['text'],
3273
3400
  },
3274
- toolCall: false,
3401
+ toolCall: true,
3275
3402
  reasoning: false,
3276
3403
  attachment: false,
3277
3404
  temperature: true,
@@ -3284,8 +3411,32 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
3284
3411
  output: 0.8,
3285
3412
  },
3286
3413
  limit: {
3287
- context: 131072,
3288
- output: 33000,
3414
+ context: 262000,
3415
+ output: 262000,
3416
+ },
3417
+ },
3418
+ {
3419
+ id: 'qwen/qwen3-30b-a3b-thinking-2507',
3420
+ label: 'Qwen3 30B A3B Thinking 2507',
3421
+ modalities: {
3422
+ input: ['text'],
3423
+ output: ['text'],
3424
+ },
3425
+ toolCall: true,
3426
+ reasoning: true,
3427
+ attachment: false,
3428
+ temperature: true,
3429
+ knowledge: '2025-04',
3430
+ releaseDate: '2025-07-29',
3431
+ lastUpdated: '2025-07-29',
3432
+ openWeights: true,
3433
+ cost: {
3434
+ input: 0.2,
3435
+ output: 0.8,
3436
+ },
3437
+ limit: {
3438
+ context: 262000,
3439
+ output: 262000,
3289
3440
  },
3290
3441
  },
3291
3442
  {
@@ -3455,6 +3606,30 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
3455
3606
  output: 262144,
3456
3607
  },
3457
3608
  },
3609
+ {
3610
+ id: 'qwen/qwen3-next-80b-a3b-thinking',
3611
+ label: 'Qwen3 Next 80B A3B Thinking',
3612
+ modalities: {
3613
+ input: ['text'],
3614
+ output: ['text'],
3615
+ },
3616
+ toolCall: true,
3617
+ reasoning: true,
3618
+ attachment: false,
3619
+ temperature: true,
3620
+ knowledge: '2025-04',
3621
+ releaseDate: '2025-09-11',
3622
+ lastUpdated: '2025-09-11',
3623
+ openWeights: true,
3624
+ cost: {
3625
+ input: 0.14,
3626
+ output: 1.4,
3627
+ },
3628
+ limit: {
3629
+ context: 262144,
3630
+ output: 262144,
3631
+ },
3632
+ },
3458
3633
  {
3459
3634
  id: 'qwen/qwq-32b:free',
3460
3635
  label: 'QwQ 32B (free)',
@@ -4000,6 +4175,54 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
4000
4175
  output: 64000,
4001
4176
  },
4002
4177
  },
4178
+ {
4179
+ id: 'code-g1x',
4180
+ label: 'Code G1X (alpha)',
4181
+ modalities: {
4182
+ input: ['text'],
4183
+ output: ['text'],
4184
+ },
4185
+ toolCall: true,
4186
+ reasoning: true,
4187
+ attachment: false,
4188
+ temperature: true,
4189
+ knowledge: '2025-01',
4190
+ releaseDate: '2025-07-30',
4191
+ lastUpdated: '2025-07-30',
4192
+ openWeights: true,
4193
+ cost: {
4194
+ input: 0.5,
4195
+ output: 2,
4196
+ },
4197
+ limit: {
4198
+ context: 200000,
4199
+ output: 128000,
4200
+ },
4201
+ },
4202
+ {
4203
+ id: 'code-g8x',
4204
+ label: 'Code G8X (alpha)',
4205
+ modalities: {
4206
+ input: ['text'],
4207
+ output: ['text'],
4208
+ },
4209
+ toolCall: true,
4210
+ reasoning: true,
4211
+ attachment: false,
4212
+ temperature: true,
4213
+ knowledge: '2025-01',
4214
+ releaseDate: '2025-07-30',
4215
+ lastUpdated: '2025-07-30',
4216
+ openWeights: true,
4217
+ cost: {
4218
+ input: 0.5,
4219
+ output: 2,
4220
+ },
4221
+ limit: {
4222
+ context: 200000,
4223
+ output: 128000,
4224
+ },
4225
+ },
4003
4226
  {
4004
4227
  id: 'code-supernova',
4005
4228
  label: 'Code Supernova 1M',
@@ -4026,7 +4249,7 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
4026
4249
  },
4027
4250
  {
4028
4251
  id: 'glm-4.6',
4029
- label: 'GLM-4.6',
4252
+ label: 'GLM-4.6 (beta)',
4030
4253
  modalities: {
4031
4254
  input: ['text'],
4032
4255
  output: ['text'],
@@ -4041,8 +4264,7 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
4041
4264
  openWeights: true,
4042
4265
  cost: {
4043
4266
  input: 0.6,
4044
- output: 2.2,
4045
- cacheRead: 0.11,
4267
+ output: 1.9,
4046
4268
  },
4047
4269
  limit: {
4048
4270
  context: 204800,
@@ -4172,30 +4394,6 @@ export const catalog: Record<ProviderId, { models: ModelInfo[] }> = {
4172
4394
  output: 65536,
4173
4395
  },
4174
4396
  },
4175
- {
4176
- id: 'qwen3-max',
4177
- label: 'Qwen3 Max',
4178
- modalities: {
4179
- input: ['text'],
4180
- output: ['text'],
4181
- },
4182
- toolCall: true,
4183
- reasoning: true,
4184
- attachment: false,
4185
- temperature: true,
4186
- knowledge: '2025-04',
4187
- releaseDate: '2025-09-05',
4188
- lastUpdated: '2025-09-05',
4189
- openWeights: true,
4190
- cost: {
4191
- input: 1.6,
4192
- output: 6.4,
4193
- },
4194
- limit: {
4195
- context: 262144,
4196
- output: 65536,
4197
- },
4198
- },
4199
4397
  ],
4200
4398
  },
4201
4399
  } as const satisfies Record<ProviderId, { models: ModelInfo[] }>;