@node-llm/core 1.6.2 → 1.8.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.
Files changed (105) hide show
  1. package/README.md +9 -8
  2. package/dist/aliases.d.ts +215 -0
  3. package/dist/aliases.d.ts.map +1 -1
  4. package/dist/aliases.js +241 -26
  5. package/dist/chat/Chat.d.ts +12 -3
  6. package/dist/chat/Chat.d.ts.map +1 -1
  7. package/dist/chat/Chat.js +35 -5
  8. package/dist/chat/ChatOptions.d.ts +2 -1
  9. package/dist/chat/ChatOptions.d.ts.map +1 -1
  10. package/dist/chat/ChatResponse.d.ts +9 -2
  11. package/dist/chat/ChatResponse.d.ts.map +1 -1
  12. package/dist/chat/ChatResponse.js +12 -3
  13. package/dist/chat/ChatStream.d.ts.map +1 -1
  14. package/dist/chat/ChatStream.js +15 -1
  15. package/dist/chat/Content.d.ts +7 -0
  16. package/dist/chat/Content.d.ts.map +1 -1
  17. package/dist/config.d.ts +28 -0
  18. package/dist/config.d.ts.map +1 -1
  19. package/dist/config.js +50 -0
  20. package/dist/index.d.ts +1 -0
  21. package/dist/index.d.ts.map +1 -1
  22. package/dist/llm.d.ts.map +1 -1
  23. package/dist/llm.js +3 -2
  24. package/dist/models/models.d.ts +321 -76
  25. package/dist/models/models.d.ts.map +1 -1
  26. package/dist/models/models.js +7804 -2885
  27. package/dist/providers/Provider.d.ts +37 -0
  28. package/dist/providers/Provider.d.ts.map +1 -1
  29. package/dist/providers/anthropic/Capabilities.d.ts +1 -0
  30. package/dist/providers/anthropic/Capabilities.d.ts.map +1 -1
  31. package/dist/providers/anthropic/Capabilities.js +8 -5
  32. package/dist/providers/anthropic/Chat.d.ts.map +1 -1
  33. package/dist/providers/anthropic/Chat.js +23 -1
  34. package/dist/providers/anthropic/Streaming.d.ts.map +1 -1
  35. package/dist/providers/anthropic/Streaming.js +15 -0
  36. package/dist/providers/anthropic/types.d.ts +7 -1
  37. package/dist/providers/anthropic/types.d.ts.map +1 -1
  38. package/dist/providers/bedrock/BedrockProvider.d.ts +53 -0
  39. package/dist/providers/bedrock/BedrockProvider.d.ts.map +1 -0
  40. package/dist/providers/bedrock/BedrockProvider.js +107 -0
  41. package/dist/providers/bedrock/Capabilities.d.ts +50 -0
  42. package/dist/providers/bedrock/Capabilities.d.ts.map +1 -0
  43. package/dist/providers/bedrock/Capabilities.js +233 -0
  44. package/dist/providers/bedrock/Chat.d.ts +26 -0
  45. package/dist/providers/bedrock/Chat.d.ts.map +1 -0
  46. package/dist/providers/bedrock/Chat.js +170 -0
  47. package/dist/providers/bedrock/Embeddings.d.ts +22 -0
  48. package/dist/providers/bedrock/Embeddings.d.ts.map +1 -0
  49. package/dist/providers/bedrock/Embeddings.js +100 -0
  50. package/dist/providers/bedrock/Image.d.ts +33 -0
  51. package/dist/providers/bedrock/Image.d.ts.map +1 -0
  52. package/dist/providers/bedrock/Image.js +154 -0
  53. package/dist/providers/bedrock/Models.d.ts +34 -0
  54. package/dist/providers/bedrock/Models.d.ts.map +1 -0
  55. package/dist/providers/bedrock/Models.js +131 -0
  56. package/dist/providers/bedrock/Moderation.d.ts +23 -0
  57. package/dist/providers/bedrock/Moderation.d.ts.map +1 -0
  58. package/dist/providers/bedrock/Moderation.js +138 -0
  59. package/dist/providers/bedrock/Streaming.d.ts +21 -0
  60. package/dist/providers/bedrock/Streaming.d.ts.map +1 -0
  61. package/dist/providers/bedrock/Streaming.js +240 -0
  62. package/dist/providers/bedrock/config.d.ts +57 -0
  63. package/dist/providers/bedrock/config.d.ts.map +1 -0
  64. package/dist/providers/bedrock/config.js +33 -0
  65. package/dist/providers/bedrock/index.d.ts +8 -0
  66. package/dist/providers/bedrock/index.d.ts.map +1 -0
  67. package/dist/providers/bedrock/index.js +30 -0
  68. package/dist/providers/bedrock/mapper.d.ts +37 -0
  69. package/dist/providers/bedrock/mapper.d.ts.map +1 -0
  70. package/dist/providers/bedrock/mapper.js +204 -0
  71. package/dist/providers/bedrock/types.d.ts +179 -0
  72. package/dist/providers/bedrock/types.d.ts.map +1 -0
  73. package/dist/providers/bedrock/types.js +7 -0
  74. package/dist/providers/deepseek/Capabilities.d.ts +3 -2
  75. package/dist/providers/deepseek/Capabilities.d.ts.map +1 -1
  76. package/dist/providers/deepseek/Capabilities.js +19 -5
  77. package/dist/providers/deepseek/Chat.d.ts.map +1 -1
  78. package/dist/providers/deepseek/Chat.js +9 -2
  79. package/dist/providers/deepseek/Streaming.d.ts.map +1 -1
  80. package/dist/providers/deepseek/Streaming.js +3 -2
  81. package/dist/providers/gemini/Capabilities.d.ts +1 -0
  82. package/dist/providers/gemini/Capabilities.d.ts.map +1 -1
  83. package/dist/providers/gemini/Capabilities.js +9 -6
  84. package/dist/providers/gemini/Chat.d.ts.map +1 -1
  85. package/dist/providers/gemini/Chat.js +4 -5
  86. package/dist/providers/gemini/Streaming.d.ts.map +1 -1
  87. package/dist/providers/gemini/Streaming.js +17 -2
  88. package/dist/providers/gemini/types.d.ts +4 -0
  89. package/dist/providers/gemini/types.d.ts.map +1 -1
  90. package/dist/providers/ollama/Capabilities.d.ts.map +1 -1
  91. package/dist/providers/ollama/Capabilities.js +4 -1
  92. package/dist/providers/openai/Capabilities.d.ts +1 -0
  93. package/dist/providers/openai/Capabilities.d.ts.map +1 -1
  94. package/dist/providers/openai/Capabilities.js +14 -11
  95. package/dist/providers/openai/Chat.d.ts.map +1 -1
  96. package/dist/providers/openai/Chat.js +18 -3
  97. package/dist/providers/openai/Streaming.d.ts.map +1 -1
  98. package/dist/providers/openai/Streaming.js +11 -3
  99. package/dist/providers/registry.d.ts +2 -1
  100. package/dist/providers/registry.d.ts.map +1 -1
  101. package/dist/providers/registry.js +2 -1
  102. package/dist/utils/AwsSigV4.d.ts +51 -0
  103. package/dist/utils/AwsSigV4.d.ts.map +1 -0
  104. package/dist/utils/AwsSigV4.js +209 -0
  105. package/package.json +1 -1
package/README.md CHANGED
@@ -29,14 +29,15 @@
29
29
 
30
30
  ## 📋 Supported Providers
31
31
 
32
- | Provider | Supported Features |
33
- | :------------- | :--------------------------------------------------------------- |
34
- | **OpenAI** | Chat, Streaming, Tools, Vision, Audio, Images, Reasoning (o1/o3) |
35
- | **Anthropic** | Chat, Streaming, Tools, Vision, PDF Support (Claude 3.5) |
36
- | **Gemini** | Chat, Streaming, Tools, Vision, Audio, Video, Embeddings |
37
- | **DeepSeek** | Chat (V3), Reasoning (R1), Streaming + Tools |
38
- | **OpenRouter** | 540+ models via a single API with automatic capability detection |
39
- | **Ollama** | Local LLM inference with full Tool and Vision support |
32
+ | Provider | Supported Features |
33
+ | :----------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------- |
34
+ | <img src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/openai.svg" height="18"> **OpenAI** | Chat, Streaming, Tools, Vision, Audio, Images, Transcription, **Reasoning** |
35
+ | <img src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/anthropic-text.svg" height="12"> **Anthropic** | Chat, Streaming, Tools, Vision, PDF, Structured Output, **Extended Thinking (Claude 3.7)** |
36
+ | <img src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/gemini-color.svg" height="18"> **Gemini** | Chat, Streaming, Tools, Vision, Audio, Video, Embeddings |
37
+ | <img src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/deepseek-color.svg" height="18"> **DeepSeek** | Chat (V3), **Extended Thinking (R1)**, Streaming, Tools |
38
+ | <img src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/bedrock-color.svg" height="18"> **Bedrock** | Chat, Streaming, Tools, Image Gen (Titan/SD), Embeddings, **Prompt Caching** |
39
+ | <img src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/openrouter.svg" height="18"> **OpenRouter** | 540+ models, Chat, Streaming, Tools, Vision, Embeddings, **Reasoning** |
40
+ | <img src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/ollama.svg" height="18"> **Ollama** | **Local Inference**, Chat, Streaming, Tools, Vision, Embeddings |
40
41
 
41
42
  ---
42
43
 
package/dist/aliases.d.ts CHANGED
@@ -1,22 +1,51 @@
1
1
  declare const _default: {
2
+ readonly "claude-2": {
3
+ readonly bedrock: "anthropic.claude-v2";
4
+ };
5
+ readonly "claude-2.1": {
6
+ readonly bedrock: "anthropic.claude-v2:1";
7
+ };
2
8
  readonly "claude-3-5-haiku": {
3
9
  readonly anthropic: "claude-3-5-haiku-20241022";
4
10
  readonly openrouter: "anthropic/claude-3.5-haiku";
11
+ readonly bedrock: "anthropic.claude-3-5-haiku-20241022-v1:0";
5
12
  };
6
13
  readonly "claude-3-5-sonnet": {
7
14
  readonly anthropic: "claude-3-5-sonnet-20241022";
8
15
  readonly openrouter: "anthropic/claude-3.5-sonnet";
16
+ readonly bedrock: "anthropic.claude-3-5-sonnet-20241022-v2:0";
9
17
  };
10
18
  readonly "claude-3-7-sonnet": {
11
19
  readonly anthropic: "claude-3-7-sonnet-20250219";
12
20
  readonly openrouter: "anthropic/claude-3.7-sonnet";
21
+ readonly bedrock: "anthropic.claude-3-7-sonnet-20250219-v1:0";
22
+ };
23
+ readonly "claude-4-1-opus": {
24
+ readonly bedrock: "anthropic.claude-opus-4-1-20250805-v1:0";
25
+ };
26
+ readonly "claude-4-5-haiku": {
27
+ readonly bedrock: "anthropic.claude-haiku-4-5-20251001-v1:0";
28
+ };
29
+ readonly "claude-4-5-opus": {
30
+ readonly bedrock: "anthropic.claude-opus-4-5-20251101-v1:0";
31
+ };
32
+ readonly "claude-4-5-sonnet": {
33
+ readonly bedrock: "anthropic.claude-sonnet-4-5-20250929-v1:0";
34
+ };
35
+ readonly "claude-4-opus": {
36
+ readonly bedrock: "anthropic.claude-opus-4-20250514-v1:0";
37
+ };
38
+ readonly "claude-4-sonnet": {
39
+ readonly bedrock: "anthropic.claude-sonnet-4-20250514-v1:0";
13
40
  };
14
41
  readonly "claude-haiku-3": {
15
42
  readonly anthropic: "claude-3-haiku-20240307";
43
+ readonly bedrock: "anthropic.claude-3-haiku-20240307-v1:0";
16
44
  };
17
45
  readonly "claude-haiku-3.5": {
18
46
  readonly openrouter: "anthropic/claude-3.5-haiku";
19
47
  readonly anthropic: "claude-3-5-haiku-20241022";
48
+ readonly bedrock: "anthropic.claude-3-5-haiku-20241022-v1:0";
20
49
  };
21
50
  readonly "claude-haiku-3.5-latest": {
22
51
  readonly anthropic: "claude-3-5-haiku-latest";
@@ -24,16 +53,22 @@ declare const _default: {
24
53
  readonly "claude-haiku-4.5": {
25
54
  readonly openrouter: "anthropic/claude-haiku-4.5";
26
55
  readonly anthropic: "claude-haiku-4-5-20251001";
56
+ readonly bedrock: "anthropic.claude-haiku-4-5-20251001-v1:0";
27
57
  };
28
58
  readonly "claude-haiku-4.5-latest": {
29
59
  readonly anthropic: "claude-haiku-4-5";
30
60
  };
61
+ readonly "claude-instant": {
62
+ readonly bedrock: "anthropic.claude-instant-v1";
63
+ };
31
64
  readonly "claude-opus-3": {
32
65
  readonly anthropic: "claude-3-opus-20240229";
66
+ readonly bedrock: "anthropic.claude-3-opus-20240229-v1:0";
33
67
  };
34
68
  readonly "claude-opus-4": {
35
69
  readonly openrouter: "anthropic/claude-opus-4";
36
70
  readonly anthropic: "claude-opus-4-20250514";
71
+ readonly bedrock: "anthropic.claude-opus-4-20250514-v1:0";
37
72
  };
38
73
  readonly "claude-opus-4-latest": {
39
74
  readonly anthropic: "claude-opus-4-0";
@@ -41,6 +76,7 @@ declare const _default: {
41
76
  readonly "claude-opus-4.1": {
42
77
  readonly openrouter: "anthropic/claude-opus-4.1";
43
78
  readonly anthropic: "claude-opus-4-1-20250805";
79
+ readonly bedrock: "anthropic.claude-opus-4-1-20250805-v1:0";
44
80
  };
45
81
  readonly "claude-opus-4.1-latest": {
46
82
  readonly anthropic: "claude-opus-4-1";
@@ -48,19 +84,26 @@ declare const _default: {
48
84
  readonly "claude-opus-4.5": {
49
85
  readonly openrouter: "anthropic/claude-opus-4.5";
50
86
  readonly anthropic: "claude-opus-4-5-20251101";
87
+ readonly bedrock: "anthropic.claude-opus-4-5-20251101-v1:0";
88
+ };
89
+ readonly "claude-opus-4.5-global": {
90
+ readonly bedrock: "global.anthropic.claude-opus-4-5-20251101-v1:0";
51
91
  };
52
92
  readonly "claude-opus-4.5-latest": {
53
93
  readonly anthropic: "claude-opus-4-5";
54
94
  };
55
95
  readonly "claude-sonnet-3": {
56
96
  readonly anthropic: "claude-3-sonnet-20240229";
97
+ readonly bedrock: "anthropic.claude-3-sonnet-20240229-v1:0";
57
98
  };
58
99
  readonly "claude-sonnet-3.5": {
59
100
  readonly anthropic: "claude-3-5-sonnet-20240620";
101
+ readonly bedrock: "anthropic.claude-3-5-sonnet-20241022-v2:0";
60
102
  };
61
103
  readonly "claude-sonnet-3.7": {
62
104
  readonly openrouter: "anthropic/claude-3.7-sonnet";
63
105
  readonly anthropic: "claude-3-7-sonnet-20250219";
106
+ readonly bedrock: "anthropic.claude-3-7-sonnet-20250219-v1:0";
64
107
  };
65
108
  readonly "claude-sonnet-3.7-latest": {
66
109
  readonly anthropic: "claude-3-7-sonnet-latest";
@@ -68,6 +111,7 @@ declare const _default: {
68
111
  readonly "claude-sonnet-4": {
69
112
  readonly openrouter: "anthropic/claude-sonnet-4";
70
113
  readonly anthropic: "claude-sonnet-4-20250514";
114
+ readonly bedrock: "anthropic.claude-sonnet-4-20250514-v1:0";
71
115
  };
72
116
  readonly "claude-sonnet-4-latest": {
73
117
  readonly anthropic: "claude-sonnet-4-0";
@@ -75,6 +119,7 @@ declare const _default: {
75
119
  readonly "claude-sonnet-4.5": {
76
120
  readonly openrouter: "anthropic/claude-sonnet-4.5";
77
121
  readonly anthropic: "claude-sonnet-4-5-20250929";
122
+ readonly bedrock: "anthropic.claude-sonnet-4-5-20250929-v1:0";
78
123
  };
79
124
  readonly "claude-sonnet-4.5-latest": {
80
125
  readonly anthropic: "claude-sonnet-4-5";
@@ -85,12 +130,25 @@ declare const _default: {
85
130
  readonly "codex-mini": {
86
131
  readonly openai: "codex-mini-latest";
87
132
  };
133
+ readonly command: {
134
+ readonly bedrock: "cohere.command-text-v14";
135
+ };
136
+ readonly "command-light": {
137
+ readonly bedrock: "cohere.command-light-text-v14";
138
+ };
139
+ readonly "command-r": {
140
+ readonly bedrock: "cohere.command-r-v1:0";
141
+ };
88
142
  readonly "deephermes-3-llama-3-8b-preview": {
89
143
  readonly openrouter: "nousresearch/deephermes-3-llama-3-8b-preview";
90
144
  };
91
145
  readonly "deepseek-chat": {
92
146
  readonly deepseek: "deepseek-chat";
93
147
  readonly openrouter: "deepseek/deepseek-chat";
148
+ readonly bedrock: "deepseek.v3-v1:0";
149
+ };
150
+ readonly "deepseek-r1": {
151
+ readonly bedrock: "deepseek.r1-v1:0";
94
152
  };
95
153
  readonly "deepseek-r1-0528-qwen3-8b-free": {
96
154
  readonly openrouter: "deepseek/deepseek-r1-0528-qwen3-8b:free";
@@ -107,6 +165,7 @@ declare const _default: {
107
165
  readonly "deepseek-reasoner": {
108
166
  readonly deepseek: "deepseek-reasoner";
109
167
  readonly openrouter: "deepseek/deepseek-reasoner";
168
+ readonly bedrock: "deepseek.r1-v1:0";
110
169
  };
111
170
  readonly "deepseek-v3-0324": {
112
171
  readonly openrouter: "deepseek/deepseek-chat-v3-0324";
@@ -116,6 +175,7 @@ declare const _default: {
116
175
  };
117
176
  readonly "deepseek-v3.1": {
118
177
  readonly openrouter: "deepseek/deepseek-chat-v3.1";
178
+ readonly bedrock: "deepseek.v3-v1:0";
119
179
  };
120
180
  readonly "deepseek-v3.1-terminus": {
121
181
  readonly openrouter: "deepseek/deepseek-v3.1-terminus";
@@ -254,6 +314,9 @@ declare const _default: {
254
314
  readonly "gemma-3-27b-it": {
255
315
  readonly openrouter: "google/gemma-3-27b-it";
256
316
  };
317
+ readonly "gemma-3-4b-it": {
318
+ readonly bedrock: "google.gemma-3-4b-it";
319
+ };
257
320
  readonly "gemma-3n-4b-free": {
258
321
  readonly openrouter: "google/gemma-3n-e4b-it:free";
259
322
  };
@@ -279,11 +342,18 @@ declare const _default: {
279
342
  readonly openrouter: "z-ai/glm-4.6:exacto";
280
343
  };
281
344
  readonly "glm-4.7": {
345
+ readonly gemini: "zai-org/glm-4.7-maas";
282
346
  readonly openrouter: "z-ai/glm-4.7";
283
347
  };
284
348
  readonly "glm-z1-32b-free": {
285
349
  readonly openrouter: "thudm/glm-z1-32b:free";
286
350
  };
351
+ readonly "google-gemma-3-12b": {
352
+ readonly bedrock: "google.gemma-3-12b-it";
353
+ };
354
+ readonly "google-gemma-3-27b-instruct": {
355
+ readonly bedrock: "google.gemma-3-27b-it";
356
+ };
287
357
  readonly "gpt-3.5-turbo": {
288
358
  readonly openai: "gpt-3.5-turbo";
289
359
  };
@@ -362,6 +432,7 @@ declare const _default: {
362
432
  };
363
433
  readonly "gpt-5.1-codex-max": {
364
434
  readonly openai: "gpt-5.1-codex-max";
435
+ readonly openrouter: "openai/gpt-5.1-codex-max";
365
436
  };
366
437
  readonly "gpt-5.1-codex-mini": {
367
438
  readonly openai: "gpt-5.1-codex-mini";
@@ -386,6 +457,7 @@ declare const _default: {
386
457
  readonly "gpt-oss-120b": {
387
458
  readonly gemini: "openai/gpt-oss-120b-maas";
388
459
  readonly openrouter: "openai/gpt-oss-120b";
460
+ readonly bedrock: "openai.gpt-oss-120b-1:0";
389
461
  };
390
462
  readonly "gpt-oss-120b-exacto": {
391
463
  readonly openrouter: "openai/gpt-oss-120b:exacto";
@@ -393,9 +465,14 @@ declare const _default: {
393
465
  readonly "gpt-oss-20b": {
394
466
  readonly gemini: "openai/gpt-oss-20b-maas";
395
467
  readonly openrouter: "openai/gpt-oss-20b";
468
+ readonly bedrock: "openai.gpt-oss-20b-1:0";
469
+ };
470
+ readonly "gpt-oss-safeguard-120b": {
471
+ readonly bedrock: "openai.gpt-oss-safeguard-120b";
396
472
  };
397
473
  readonly "gpt-oss-safeguard-20b": {
398
474
  readonly openrouter: "openai/gpt-oss-safeguard-20b";
475
+ readonly bedrock: "openai.gpt-oss-safeguard-20b";
399
476
  };
400
477
  readonly "grok-3": {
401
478
  readonly openrouter: "x-ai/grok-3";
@@ -427,6 +504,12 @@ declare const _default: {
427
504
  readonly "hermes-4-70b": {
428
505
  readonly openrouter: "nousresearch/hermes-4-70b";
429
506
  };
507
+ readonly "jamba-1.5-large": {
508
+ readonly bedrock: "ai21.jamba-1-5-large-v1:0";
509
+ };
510
+ readonly "jamba-1.5-mini": {
511
+ readonly bedrock: "ai21.jamba-1-5-mini-v1:0";
512
+ };
430
513
  readonly "kat-coder-pro-free": {
431
514
  readonly openrouter: "kwaipilot/kat-coder-pro:free";
432
515
  };
@@ -447,13 +530,81 @@ declare const _default: {
447
530
  };
448
531
  readonly "kimi-k2-thinking": {
449
532
  readonly openrouter: "moonshotai/kimi-k2-thinking";
533
+ readonly bedrock: "moonshot.kimi-k2-thinking";
534
+ };
535
+ readonly "llama-3-1-70b": {
536
+ readonly bedrock: "meta.llama3-1-70b-instruct-v1:0";
537
+ readonly openrouter: "meta-llama/llama-3.1-70b-instruct";
538
+ };
539
+ readonly "llama-3-1-7b": {
540
+ readonly bedrock: "meta.llama3-1-8b-instruct-v1:0";
541
+ readonly openrouter: "meta-llama/llama-3.1-8b-instruct";
542
+ };
543
+ readonly "llama-3-2-11b": {
544
+ readonly bedrock: "meta.llama3-2-11b-instruct-v1:0";
545
+ readonly openrouter: "meta-llama/llama-3.2-11b-instruct";
546
+ };
547
+ readonly "llama-3-2-1b": {
548
+ readonly bedrock: "meta.llama3-2-1b-instruct-v1:0";
549
+ readonly openrouter: "meta-llama/llama-3.2-1b-instruct";
550
+ };
551
+ readonly "llama-3-2-3b": {
552
+ readonly bedrock: "meta.llama3-2-3b-instruct-v1:0";
553
+ readonly openrouter: "meta-llama/llama-3.2-3b-instruct";
554
+ };
555
+ readonly "llama-3-2-90b": {
556
+ readonly bedrock: "meta.llama3-2-90b-instruct-v1:0";
557
+ readonly openrouter: "meta-llama/llama-3.2-90b-instruct";
558
+ };
559
+ readonly "llama-3-3-70b": {
560
+ readonly bedrock: "meta.llama3-3-70b-instruct-v1:0";
561
+ readonly openrouter: "meta-llama/llama-3.3-70b-instruct";
562
+ };
563
+ readonly "llama-3-70b-instruct": {
564
+ readonly bedrock: "meta.llama3-70b-instruct-v1:0";
565
+ };
566
+ readonly "llama-3-8b-instruct": {
567
+ readonly bedrock: "meta.llama3-8b-instruct-v1:0";
568
+ };
569
+ readonly "llama-3.1-70b-instruct": {
570
+ readonly bedrock: "meta.llama3-1-70b-instruct-v1:0";
571
+ };
572
+ readonly "llama-3.1-8b-instruct": {
573
+ readonly bedrock: "meta.llama3-1-8b-instruct-v1:0";
574
+ };
575
+ readonly "llama-3.2-11b-instruct": {
576
+ readonly bedrock: "meta.llama3-2-11b-instruct-v1:0";
450
577
  };
451
578
  readonly "llama-3.2-11b-vision-instruct": {
452
579
  readonly openrouter: "meta-llama/llama-3.2-11b-vision-instruct";
453
580
  };
581
+ readonly "llama-3.2-1b-instruct": {
582
+ readonly bedrock: "meta.llama3-2-1b-instruct-v1:0";
583
+ };
584
+ readonly "llama-3.2-3b-instruct": {
585
+ readonly bedrock: "meta.llama3-2-3b-instruct-v1:0";
586
+ };
587
+ readonly "llama-3.2-90b-instruct": {
588
+ readonly bedrock: "meta.llama3-2-90b-instruct-v1:0";
589
+ };
590
+ readonly "llama-3.3-70b-instruct": {
591
+ readonly bedrock: "meta.llama3-3-70b-instruct-v1:0";
592
+ };
454
593
  readonly "llama-3.3-70b-instruct-free": {
455
594
  readonly openrouter: "meta-llama/llama-3.3-70b-instruct:free";
456
595
  };
596
+ readonly "llama-4-maverick": {
597
+ readonly bedrock: "meta.llama4-maverick-17b-instruct-v1:0";
598
+ };
599
+ readonly "llama-4-maverick-17b-instruct": {
600
+ readonly bedrock: "meta.llama4-maverick-17b-instruct-v1:0";
601
+ };
602
+ readonly "llama-4-scout": {
603
+ readonly bedrock: "meta.llama4-scout-17b-instruct-v1:0";
604
+ };
605
+ readonly "llama-4-scout-17b-instruct": {
606
+ readonly bedrock: "meta.llama4-scout-17b-instruct-v1:0";
607
+ };
457
608
  readonly "llama-4-scout-free": {
458
609
  readonly openrouter: "meta-llama/llama-4-scout:free";
459
610
  };
@@ -468,13 +619,30 @@ declare const _default: {
468
619
  };
469
620
  readonly "minimax-m2": {
470
621
  readonly openrouter: "minimax/minimax-m2";
622
+ readonly bedrock: "minimax.minimax-m2";
471
623
  };
472
624
  readonly "minimax-m2.1": {
473
625
  readonly openrouter: "minimax/minimax-m2.1";
474
626
  };
627
+ readonly "ministral-14b-3.0": {
628
+ readonly bedrock: "mistral.ministral-3-14b-instruct";
629
+ };
630
+ readonly "ministral-3-8b": {
631
+ readonly bedrock: "mistral.ministral-3-8b-instruct";
632
+ };
475
633
  readonly "mistral-7b-instruct-free": {
476
634
  readonly openrouter: "mistralai/mistral-7b-instruct:free";
477
635
  };
636
+ readonly "mistral-7b-instruct-v0.3": {
637
+ readonly bedrock: "mistral.mistral-7b-instruct-v0:2";
638
+ };
639
+ readonly "mistral-large": {
640
+ readonly bedrock: "mistral.mistral-large-2402-v1:0";
641
+ readonly openrouter: "mistralai/mistral-large";
642
+ };
643
+ readonly "mistral-large-24.02": {
644
+ readonly bedrock: "mistral.mistral-large-2402-v1:0";
645
+ };
478
646
  readonly "mistral-medium-3": {
479
647
  readonly openrouter: "mistralai/mistral-medium-3";
480
648
  };
@@ -493,8 +661,30 @@ declare const _default: {
493
661
  readonly "mistral-small-3.2-24b-instruct": {
494
662
  readonly openrouter: "mistralai/mistral-small-3.2-24b-instruct";
495
663
  };
664
+ readonly "mixtral-8x7b-instruct-v0.1": {
665
+ readonly bedrock: "mistral.mixtral-8x7b-instruct-v0:1";
666
+ };
667
+ readonly "nova-2-lite": {
668
+ readonly bedrock: "amazon.nova-2-lite-v1:0";
669
+ };
670
+ readonly "nova-lite": {
671
+ readonly bedrock: "amazon.nova-lite-v1:0";
672
+ };
673
+ readonly "nova-micro": {
674
+ readonly bedrock: "amazon.nova-micro-v1:0";
675
+ };
676
+ readonly "nova-premier": {
677
+ readonly bedrock: "amazon.nova-premier-v1:0";
678
+ };
679
+ readonly "nova-pro": {
680
+ readonly bedrock: "amazon.nova-pro-v1:0";
681
+ };
682
+ readonly "nvidia-nemotron-nano-12b-v2-vl-bf16": {
683
+ readonly bedrock: "nvidia.nemotron-nano-12b-v2";
684
+ };
496
685
  readonly "nvidia-nemotron-nano-9b": {
497
686
  readonly openrouter: "nvidia/nemotron-nano-9b-v2";
687
+ readonly bedrock: "nvidia.nemotron-nano-9b-v2";
498
688
  };
499
689
  readonly o1: {
500
690
  readonly openai: "o1";
@@ -541,6 +731,9 @@ declare const _default: {
541
731
  readonly "qwen3-14b-free": {
542
732
  readonly openrouter: "qwen/qwen3-14b:free";
543
733
  };
734
+ readonly "qwen3-235b-a22b-2507": {
735
+ readonly bedrock: "qwen.qwen3-235b-a22b-2507-v1:0";
736
+ };
544
737
  readonly "qwen3-235b-a22b-free": {
545
738
  readonly openrouter: "qwen/qwen3-235b-a22b:free";
546
739
  };
@@ -562,6 +755,9 @@ declare const _default: {
562
755
  readonly "qwen3-30b-a3b-thinking-2507": {
563
756
  readonly openrouter: "qwen/qwen3-30b-a3b-thinking-2507";
564
757
  };
758
+ readonly "qwen3-32b-dense": {
759
+ readonly bedrock: "qwen.qwen3-32b-v1:0";
760
+ };
565
761
  readonly "qwen3-32b-free": {
566
762
  readonly openrouter: "qwen/qwen3-32b:free";
567
763
  };
@@ -573,6 +769,10 @@ declare const _default: {
573
769
  };
574
770
  readonly "qwen3-coder-30b-a3b-instruct": {
575
771
  readonly openrouter: "qwen/qwen3-coder-30b-a3b-instruct";
772
+ readonly bedrock: "qwen.qwen3-coder-30b-a3b-v1:0";
773
+ };
774
+ readonly "qwen3-coder-480b-a35b-instruct": {
775
+ readonly bedrock: "qwen.qwen3-coder-480b-a35b-v1:0";
576
776
  };
577
777
  readonly "qwen3-coder-480b-a35b-instruct-free": {
578
778
  readonly openrouter: "qwen/qwen3-coder:free";
@@ -592,6 +792,12 @@ declare const _default: {
592
792
  readonly "qwen3-next-80b-a3b-thinking": {
593
793
  readonly openrouter: "qwen/qwen3-next-80b-a3b-thinking";
594
794
  };
795
+ readonly "qwenqwen3-next-80b-a3b-instruct": {
796
+ readonly bedrock: "qwen.qwen3-next-80b-a3b";
797
+ };
798
+ readonly "qwenqwen3-vl-235b-a22b-instruct": {
799
+ readonly bedrock: "qwen.qwen3-vl-235b-a22b";
800
+ };
595
801
  readonly "qwerky-72b": {
596
802
  readonly openrouter: "featherless/qwerky-72b";
597
803
  };
@@ -625,6 +831,15 @@ declare const _default: {
625
831
  readonly "text-embedding-ada-002": {
626
832
  readonly openai: "text-embedding-ada-002";
627
833
  };
834
+ readonly "titan-text-g1---express": {
835
+ readonly bedrock: "amazon.titan-text-express-v1";
836
+ };
837
+ readonly "voxtral-mini-3b-2507": {
838
+ readonly bedrock: "mistral.voxtral-mini-3b-2507";
839
+ };
840
+ readonly "voxtral-small-24b-2507": {
841
+ readonly bedrock: "mistral.voxtral-small-24b-2507";
842
+ };
628
843
  };
629
844
  export default _default;
630
845
  //# sourceMappingURL=aliases.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"aliases.d.ts","sourceRoot":"","sources":["../src/aliases.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAmnBW"}
1
+ {"version":3,"file":"aliases.d.ts","sourceRoot":"","sources":["../src/aliases.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA00BW"}