@blockrun/llm 1.8.1 → 1.10.1

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 CHANGED
@@ -274,6 +274,7 @@ All models below have been tested end-to-end via the TypeScript SDK (Feb 2026):
274
274
  |-------|-------|
275
275
  | `openai/dall-e-3` | $0.04-0.08/image |
276
276
  | `openai/gpt-image-1` | $0.02-0.04/image |
277
+ | `openai/gpt-image-2` | $0.06-0.12/image (reasoning-driven, multilingual text rendering, character consistency) |
277
278
  | `google/nano-banana` | $0.05/image |
278
279
  | `google/nano-banana-pro` | $0.10-0.15/image |
279
280
  | `black-forest/flux-1.1-pro` | $0.04/image |
@@ -281,10 +282,15 @@ All models below have been tested end-to-end via the TypeScript SDK (Feb 2026):
281
282
  | `xai/grok-imagine-image-pro` | $0.07/image |
282
283
  | `zai/cogview-4` | $0.015/image |
283
284
 
285
+ Image editing (`client.edit`): `openai/gpt-image-1` and `openai/gpt-image-2` both support the `/v1/images/image2image` endpoint.
286
+
284
287
  ### Video Generation
285
288
  | Model | Price |
286
289
  |-------|-------|
287
290
  | `xai/grok-imagine-video` | $0.05/sec (8s default → $0.42/clip) |
291
+ | `bytedance/seedance-1.5-pro` | $0.03/sec (5s default, up to 10s, 720p) |
292
+ | `bytedance/seedance-2.0-fast` | $0.15/sec (~60-80s gen, sweet-spot price/quality) |
293
+ | `bytedance/seedance-2.0` | $0.30/sec (720p Pro) |
288
294
 
289
295
  ```ts
290
296
  import { VideoClient } from '@blockrun/llm';
package/dist/index.cjs CHANGED
@@ -1685,7 +1685,7 @@ var import_accounts3 = require("viem/accounts");
1685
1685
  var DEFAULT_API_URL2 = "https://blockrun.ai/api";
1686
1686
  var DEFAULT_MODEL = "google/nano-banana";
1687
1687
  var DEFAULT_SIZE = "1024x1024";
1688
- var DEFAULT_TIMEOUT2 = 12e4;
1688
+ var DEFAULT_TIMEOUT2 = 2e5;
1689
1689
  var ImageClient = class {
1690
1690
  account;
1691
1691
  privateKey;
package/dist/index.js CHANGED
@@ -1596,7 +1596,7 @@ import { privateKeyToAccount as privateKeyToAccount2 } from "viem/accounts";
1596
1596
  var DEFAULT_API_URL2 = "https://blockrun.ai/api";
1597
1597
  var DEFAULT_MODEL = "google/nano-banana";
1598
1598
  var DEFAULT_SIZE = "1024x1024";
1599
- var DEFAULT_TIMEOUT2 = 12e4;
1599
+ var DEFAULT_TIMEOUT2 = 2e5;
1600
1600
  var ImageClient = class {
1601
1601
  account;
1602
1602
  privateKey;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockrun/llm",
3
- "version": "1.8.1",
3
+ "version": "1.10.1",
4
4
  "type": "module",
5
5
  "description": "BlockRun SDK - Pay-per-request AI (LLM, Image, Video, Music) via x402 on Base and Solana",
6
6
  "main": "dist/index.cjs",