@juspay/neurolink 11.3.1 → 11.4.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 (132) hide show
  1. package/CHANGELOG.md +3 -3
  2. package/dist/constants/enums.d.ts +1 -0
  3. package/dist/constants/enums.js +5 -1
  4. package/dist/lib/constants/enums.d.ts +1 -0
  5. package/dist/lib/constants/enums.js +5 -1
  6. package/dist/lib/models/manifestRegistry.d.ts +33 -0
  7. package/dist/lib/models/manifestRegistry.js +174 -0
  8. package/dist/lib/models/manifests/anthropic.d.ts +9 -0
  9. package/dist/lib/models/manifests/anthropic.js +346 -0
  10. package/dist/lib/models/manifests/azure.d.ts +2 -0
  11. package/dist/lib/models/manifests/azure.js +87 -0
  12. package/dist/lib/models/manifests/bedrock.d.ts +2 -0
  13. package/dist/lib/models/manifests/bedrock.js +75 -0
  14. package/dist/lib/models/manifests/cloudflare.d.ts +8 -0
  15. package/dist/lib/models/manifests/cloudflare.js +19 -0
  16. package/dist/lib/models/manifests/cohere.d.ts +8 -0
  17. package/dist/lib/models/manifests/cohere.js +19 -0
  18. package/dist/lib/models/manifests/deepseek.d.ts +8 -0
  19. package/dist/lib/models/manifests/deepseek.js +19 -0
  20. package/dist/lib/models/manifests/fireworks.d.ts +8 -0
  21. package/dist/lib/models/manifests/fireworks.js +19 -0
  22. package/dist/lib/models/manifests/google-ai.d.ts +2 -0
  23. package/dist/lib/models/manifests/google-ai.js +28 -0
  24. package/dist/lib/models/manifests/groq.d.ts +8 -0
  25. package/dist/lib/models/manifests/groq.js +19 -0
  26. package/dist/lib/models/manifests/huggingface.d.ts +8 -0
  27. package/dist/lib/models/manifests/huggingface.js +19 -0
  28. package/dist/lib/models/manifests/ideogram.d.ts +8 -0
  29. package/dist/lib/models/manifests/ideogram.js +19 -0
  30. package/dist/lib/models/manifests/jina.d.ts +8 -0
  31. package/dist/lib/models/manifests/jina.js +19 -0
  32. package/dist/lib/models/manifests/litellm.d.ts +8 -0
  33. package/dist/lib/models/manifests/litellm.js +19 -0
  34. package/dist/lib/models/manifests/llamacpp.d.ts +8 -0
  35. package/dist/lib/models/manifests/llamacpp.js +19 -0
  36. package/dist/lib/models/manifests/lm-studio.d.ts +8 -0
  37. package/dist/lib/models/manifests/lm-studio.js +19 -0
  38. package/dist/lib/models/manifests/mistral.d.ts +2 -0
  39. package/dist/lib/models/manifests/mistral.js +50 -0
  40. package/dist/lib/models/manifests/nvidia-nim.d.ts +8 -0
  41. package/dist/lib/models/manifests/nvidia-nim.js +19 -0
  42. package/dist/lib/models/manifests/ollama.d.ts +2 -0
  43. package/dist/lib/models/manifests/ollama.js +72 -0
  44. package/dist/lib/models/manifests/openai-compatible.d.ts +8 -0
  45. package/dist/lib/models/manifests/openai-compatible.js +19 -0
  46. package/dist/lib/models/manifests/openai.d.ts +11 -0
  47. package/dist/lib/models/manifests/openai.js +560 -0
  48. package/dist/lib/models/manifests/openrouter.d.ts +8 -0
  49. package/dist/lib/models/manifests/openrouter.js +19 -0
  50. package/dist/lib/models/manifests/perplexity.d.ts +8 -0
  51. package/dist/lib/models/manifests/perplexity.js +19 -0
  52. package/dist/lib/models/manifests/recraft.d.ts +8 -0
  53. package/dist/lib/models/manifests/recraft.js +19 -0
  54. package/dist/lib/models/manifests/replicate.d.ts +8 -0
  55. package/dist/lib/models/manifests/replicate.js +19 -0
  56. package/dist/lib/models/manifests/sagemaker.d.ts +8 -0
  57. package/dist/lib/models/manifests/sagemaker.js +19 -0
  58. package/dist/lib/models/manifests/stability.d.ts +8 -0
  59. package/dist/lib/models/manifests/stability.js +19 -0
  60. package/dist/lib/models/manifests/together-ai.d.ts +8 -0
  61. package/dist/lib/models/manifests/together-ai.js +19 -0
  62. package/dist/lib/models/manifests/vertex.d.ts +8 -0
  63. package/dist/lib/models/manifests/vertex.js +19 -0
  64. package/dist/lib/models/manifests/voyage.d.ts +8 -0
  65. package/dist/lib/models/manifests/voyage.js +19 -0
  66. package/dist/lib/models/manifests/xai.d.ts +8 -0
  67. package/dist/lib/models/manifests/xai.js +19 -0
  68. package/dist/lib/types/model.d.ts +77 -0
  69. package/dist/models/manifestRegistry.d.ts +33 -0
  70. package/dist/models/manifestRegistry.js +173 -0
  71. package/dist/models/manifests/anthropic.d.ts +9 -0
  72. package/dist/models/manifests/anthropic.js +345 -0
  73. package/dist/models/manifests/azure.d.ts +2 -0
  74. package/dist/models/manifests/azure.js +86 -0
  75. package/dist/models/manifests/bedrock.d.ts +2 -0
  76. package/dist/models/manifests/bedrock.js +74 -0
  77. package/dist/models/manifests/cloudflare.d.ts +8 -0
  78. package/dist/models/manifests/cloudflare.js +18 -0
  79. package/dist/models/manifests/cohere.d.ts +8 -0
  80. package/dist/models/manifests/cohere.js +18 -0
  81. package/dist/models/manifests/deepseek.d.ts +8 -0
  82. package/dist/models/manifests/deepseek.js +18 -0
  83. package/dist/models/manifests/fireworks.d.ts +8 -0
  84. package/dist/models/manifests/fireworks.js +18 -0
  85. package/dist/models/manifests/google-ai.d.ts +2 -0
  86. package/dist/models/manifests/google-ai.js +27 -0
  87. package/dist/models/manifests/groq.d.ts +8 -0
  88. package/dist/models/manifests/groq.js +18 -0
  89. package/dist/models/manifests/huggingface.d.ts +8 -0
  90. package/dist/models/manifests/huggingface.js +18 -0
  91. package/dist/models/manifests/ideogram.d.ts +8 -0
  92. package/dist/models/manifests/ideogram.js +18 -0
  93. package/dist/models/manifests/jina.d.ts +8 -0
  94. package/dist/models/manifests/jina.js +18 -0
  95. package/dist/models/manifests/litellm.d.ts +8 -0
  96. package/dist/models/manifests/litellm.js +18 -0
  97. package/dist/models/manifests/llamacpp.d.ts +8 -0
  98. package/dist/models/manifests/llamacpp.js +18 -0
  99. package/dist/models/manifests/lm-studio.d.ts +8 -0
  100. package/dist/models/manifests/lm-studio.js +18 -0
  101. package/dist/models/manifests/mistral.d.ts +2 -0
  102. package/dist/models/manifests/mistral.js +49 -0
  103. package/dist/models/manifests/nvidia-nim.d.ts +8 -0
  104. package/dist/models/manifests/nvidia-nim.js +18 -0
  105. package/dist/models/manifests/ollama.d.ts +2 -0
  106. package/dist/models/manifests/ollama.js +71 -0
  107. package/dist/models/manifests/openai-compatible.d.ts +8 -0
  108. package/dist/models/manifests/openai-compatible.js +18 -0
  109. package/dist/models/manifests/openai.d.ts +11 -0
  110. package/dist/models/manifests/openai.js +559 -0
  111. package/dist/models/manifests/openrouter.d.ts +8 -0
  112. package/dist/models/manifests/openrouter.js +18 -0
  113. package/dist/models/manifests/perplexity.d.ts +8 -0
  114. package/dist/models/manifests/perplexity.js +18 -0
  115. package/dist/models/manifests/recraft.d.ts +8 -0
  116. package/dist/models/manifests/recraft.js +18 -0
  117. package/dist/models/manifests/replicate.d.ts +8 -0
  118. package/dist/models/manifests/replicate.js +18 -0
  119. package/dist/models/manifests/sagemaker.d.ts +8 -0
  120. package/dist/models/manifests/sagemaker.js +18 -0
  121. package/dist/models/manifests/stability.d.ts +8 -0
  122. package/dist/models/manifests/stability.js +18 -0
  123. package/dist/models/manifests/together-ai.d.ts +8 -0
  124. package/dist/models/manifests/together-ai.js +18 -0
  125. package/dist/models/manifests/vertex.d.ts +8 -0
  126. package/dist/models/manifests/vertex.js +18 -0
  127. package/dist/models/manifests/voyage.d.ts +8 -0
  128. package/dist/models/manifests/voyage.js +18 -0
  129. package/dist/models/manifests/xai.d.ts +8 -0
  130. package/dist/models/manifests/xai.js +18 -0
  131. package/dist/types/model.d.ts +77 -0
  132. package/package.json +3 -2
@@ -0,0 +1,87 @@
1
+ export const azureManifest = {
2
+ defaultContextWindow: 128000,
3
+ models: {
4
+ "gpt-5.1": {
5
+ aliases: ["azure-gpt-5.1", "gpt51-azure", "azure-flagship"],
6
+ displayName: "GPT-5.1 (Azure)",
7
+ contextWindow: 300000,
8
+ maxOutputTokens: 64000,
9
+ pricingPerMTok: { input: 0.625, output: 5 },
10
+ vision: true,
11
+ functionCalling: true,
12
+ reasoning: true,
13
+ jsonMode: true,
14
+ },
15
+ "gpt-5.1-chat": {
16
+ aliases: ["azure-gpt-5.1-chat", "gpt51-chat-azure"],
17
+ displayName: "GPT-5.1 Chat (Azure)",
18
+ contextWindow: 300000,
19
+ maxOutputTokens: 32000,
20
+ pricingPerMTok: { input: 0.625, output: 5 },
21
+ vision: true,
22
+ functionCalling: true,
23
+ reasoning: true,
24
+ jsonMode: true,
25
+ },
26
+ "gpt-5.1-codex": {
27
+ aliases: ["azure-gpt-5.1-codex", "gpt51-codex-azure", "azure-code"],
28
+ displayName: "GPT-5.1 Codex (Azure)",
29
+ contextWindow: 300000,
30
+ maxOutputTokens: 64000,
31
+ pricingPerMTok: { input: 1.25, output: 10 },
32
+ vision: true,
33
+ functionCalling: true,
34
+ reasoning: true,
35
+ jsonMode: true,
36
+ },
37
+ "gpt-5.1-codex-mini": {
38
+ aliases: ["azure-gpt-5.1-codex-mini", "gpt51-codex-mini-azure"],
39
+ displayName: "GPT-5.1 Codex Mini (Azure)",
40
+ contextWindow: 200000,
41
+ maxOutputTokens: 32000,
42
+ pricingPerMTok: { input: 1.25, output: 10 },
43
+ vision: true,
44
+ functionCalling: true,
45
+ reasoning: true,
46
+ jsonMode: true,
47
+ },
48
+ "gpt-5.1-codex-max": {
49
+ aliases: [
50
+ "azure-gpt-5.1-codex-max",
51
+ "gpt51-codex-max-azure",
52
+ "azure-enterprise",
53
+ ],
54
+ displayName: "GPT-5.1 Codex Max (Azure)",
55
+ contextWindow: 500000,
56
+ maxOutputTokens: 128000,
57
+ pricingPerMTok: { input: 1.25, output: 10 },
58
+ vision: true,
59
+ functionCalling: true,
60
+ reasoning: true,
61
+ jsonMode: true,
62
+ },
63
+ "gpt-5-pro": {
64
+ aliases: ["azure-gpt-5-pro", "gpt5-pro-azure"],
65
+ displayName: "GPT-5 Pro (Azure)",
66
+ contextWindow: 256000,
67
+ maxOutputTokens: 64000,
68
+ pricingPerMTok: { input: 1.25, output: 10 },
69
+ vision: true,
70
+ functionCalling: true,
71
+ reasoning: true,
72
+ jsonMode: true,
73
+ },
74
+ "gpt-5-turbo": {
75
+ aliases: ["azure-gpt-5-turbo", "gpt5-turbo-azure"],
76
+ displayName: "GPT-5 Turbo (Azure)",
77
+ contextWindow: 200000,
78
+ maxOutputTokens: 32768,
79
+ pricingPerMTok: { input: 1.25, output: 10 },
80
+ vision: true,
81
+ functionCalling: true,
82
+ reasoning: true,
83
+ jsonMode: true,
84
+ },
85
+ },
86
+ };
87
+ //# sourceMappingURL=azure.js.map
@@ -0,0 +1,2 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ export declare const bedrockManifest: ProviderModelManifest;
@@ -0,0 +1,75 @@
1
+ // The capability and limit fields below come from that model's AWS Bedrock
2
+ // model card (docs.aws.amazon.com/bedrock/latest/userguide/model-card-*.html):
3
+ // the Model Details block for contextWindow and maxOutputTokens, and the
4
+ // "Features supported using bedrock-runtime endpoint" table for jsonMode (AWS
5
+ // calls it "Structured outputs") and functionCalling ("Client-side tool
6
+ // calling"). `reasoning` is true only where the card states "Reasoning:
7
+ // Supported"; the card omits the line entirely for models that do not.
8
+ //
9
+ // `pricingPerMTok` is NOT from the model cards — they link out to
10
+ // aws.amazon.com/bedrock/pricing rather than carrying rates. Entries here
11
+ // either omit it or carry a rate verified separately, so do not assume the
12
+ // card backs a pricing figure.
13
+ export const bedrockManifest = {
14
+ defaultContextWindow: 200000,
15
+ models: {
16
+ "amazon.nova-premier-v1:0": {
17
+ aliases: ["nova-premier", "aws-flagship"],
18
+ displayName: "Amazon Nova Premier",
19
+ contextWindow: 1000000,
20
+ maxOutputTokens: 25000,
21
+ // pricingPerMTok omitted: hasPricing() reports no verified rate
22
+ vision: true,
23
+ functionCalling: true,
24
+ reasoning: true,
25
+ jsonMode: false,
26
+ },
27
+ "amazon.nova-pro-v1:0": {
28
+ aliases: ["nova-pro", "aws-balanced"],
29
+ displayName: "Amazon Nova Pro",
30
+ contextWindow: 300000,
31
+ maxOutputTokens: 5000,
32
+ // pricingPerMTok omitted: hasPricing() reports no verified rate
33
+ vision: true,
34
+ functionCalling: true,
35
+ reasoning: false,
36
+ jsonMode: false,
37
+ },
38
+ "amazon.nova-lite-v1:0": {
39
+ aliases: ["nova-lite", "aws-lite", "aws-cheap"],
40
+ displayName: "Amazon Nova Lite",
41
+ contextWindow: 300000,
42
+ maxOutputTokens: 5000,
43
+ // pricingPerMTok omitted: hasPricing() reports no verified rate
44
+ vision: true,
45
+ functionCalling: true,
46
+ reasoning: false,
47
+ jsonMode: false,
48
+ },
49
+ // 20251101, not the 20251124 launch date — AWS issues the ID from the
50
+ // model snapshot date. See the model card's Programmatic Access table.
51
+ "anthropic.claude-opus-4-5-20251101-v1:0": {
52
+ aliases: ["bedrock-claude-4.5-opus", "bedrock-claude-flagship"],
53
+ displayName: "Claude 4.5 Opus (Bedrock)",
54
+ contextWindow: 200000,
55
+ maxOutputTokens: 64000,
56
+ pricingPerMTok: { input: 5, output: 25 },
57
+ vision: true,
58
+ functionCalling: true,
59
+ reasoning: true,
60
+ jsonMode: true,
61
+ },
62
+ "meta.llama4-maverick-17b-instruct-v1:0": {
63
+ aliases: ["bedrock-llama4", "bedrock-llama-maverick"],
64
+ displayName: "Llama 4 Maverick (Bedrock)",
65
+ contextWindow: 1000000,
66
+ maxOutputTokens: 8192,
67
+ // pricingPerMTok omitted: hasPricing() reports no verified rate
68
+ vision: true,
69
+ functionCalling: true,
70
+ reasoning: false,
71
+ jsonMode: false,
72
+ },
73
+ },
74
+ };
75
+ //# sourceMappingURL=bedrock.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: cloudflare has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const cloudflareManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: cloudflare has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const cloudflareManifest = {
8
+ defaultContextWindow: 8192,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 8192,
13
+ maxOutputTokens: 8192,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=cloudflare.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: cohere has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const cohereManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: cohere has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const cohereManifest = {
8
+ defaultContextWindow: 128000,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 128000,
13
+ maxOutputTokens: 64000,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=cohere.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: deepseek has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const deepseekManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: deepseek has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const deepseekManifest = {
8
+ defaultContextWindow: 64000,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 64000,
13
+ maxOutputTokens: 64000,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=deepseek.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: fireworks has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const fireworksManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: fireworks has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const fireworksManifest = {
8
+ defaultContextWindow: 128000,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 128000,
13
+ maxOutputTokens: 64000,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=fireworks.js.map
@@ -0,0 +1,2 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ export declare const googleAiManifest: ProviderModelManifest;
@@ -0,0 +1,28 @@
1
+ export const googleAiManifest = {
2
+ defaultContextWindow: 1048576,
3
+ models: {
4
+ "gemini-2.5-pro": {
5
+ aliases: ["gemini-pro", "google-flagship", "best-analysis"],
6
+ displayName: "Gemini 2.5 Pro",
7
+ contextWindow: 2097152,
8
+ maxOutputTokens: 8192,
9
+ pricingPerMTok: { input: 1.25, output: 10 },
10
+ vision: true,
11
+ functionCalling: true,
12
+ reasoning: true,
13
+ jsonMode: true,
14
+ },
15
+ "gemini-2.5-flash": {
16
+ aliases: ["gemini-flash", "google-fast", "best-value"],
17
+ displayName: "Gemini 2.5 Flash",
18
+ contextWindow: 1048576,
19
+ maxOutputTokens: 8192,
20
+ pricingPerMTok: { input: 0.3, output: 2.5 },
21
+ vision: true,
22
+ functionCalling: true,
23
+ reasoning: true,
24
+ jsonMode: true,
25
+ },
26
+ },
27
+ };
28
+ //# sourceMappingURL=google-ai.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: groq has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const groqManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: groq has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const groqManifest = {
8
+ defaultContextWindow: 128000,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 128000,
13
+ maxOutputTokens: 64000,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=groq.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: huggingface has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const huggingfaceManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: huggingface has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const huggingfaceManifest = {
8
+ defaultContextWindow: 32000,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 32000,
13
+ maxOutputTokens: 32000,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=huggingface.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: ideogram has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const ideogramManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: ideogram has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const ideogramManifest = {
8
+ defaultContextWindow: 2000,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 2000,
13
+ maxOutputTokens: 2000,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=ideogram.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: jina has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const jinaManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: jina has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const jinaManifest = {
8
+ defaultContextWindow: 8192,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 8192,
13
+ maxOutputTokens: 8192,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=jina.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: litellm has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const litellmManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: litellm has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const litellmManifest = {
8
+ defaultContextWindow: 128000,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 128000,
13
+ maxOutputTokens: 128000,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=litellm.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: llamacpp has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const llamacppManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: llamacpp has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const llamacppManifest = {
8
+ defaultContextWindow: 8192,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 8192,
13
+ maxOutputTokens: 8192,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=llamacpp.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: lm-studio has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const lmStudioManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: lm-studio has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const lmStudioManifest = {
8
+ defaultContextWindow: 8192,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 8192,
13
+ maxOutputTokens: 8192,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=lm-studio.js.map
@@ -0,0 +1,2 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ export declare const mistralManifest: ProviderModelManifest;
@@ -0,0 +1,50 @@
1
+ export const mistralManifest = {
2
+ defaultContextWindow: 128000,
3
+ models: {
4
+ "mistral-large-latest": {
5
+ aliases: ["mistral-large", "mistral-flagship"],
6
+ displayName: "Mistral Large",
7
+ contextWindow: 131072,
8
+ maxOutputTokens: 8192,
9
+ pricingPerMTok: { input: 2, output: 6 },
10
+ vision: true,
11
+ functionCalling: true,
12
+ reasoning: true,
13
+ jsonMode: true,
14
+ },
15
+ "mistral-small-latest": {
16
+ aliases: ["mistral-small", "mistral-cheap"],
17
+ displayName: "Mistral Small",
18
+ contextWindow: 32768,
19
+ maxOutputTokens: 8192,
20
+ pricingPerMTok: { input: 0.2, output: 0.6 },
21
+ vision: true,
22
+ functionCalling: true,
23
+ reasoning: true,
24
+ jsonMode: true,
25
+ },
26
+ "codestral-latest": {
27
+ aliases: ["codestral", "mistral-code"],
28
+ displayName: "Codestral",
29
+ contextWindow: 32768,
30
+ maxOutputTokens: 8192,
31
+ pricingPerMTok: { input: 0.3, output: 0.9 },
32
+ vision: false,
33
+ functionCalling: true,
34
+ reasoning: true,
35
+ jsonMode: true,
36
+ },
37
+ "pixtral-large": {
38
+ aliases: ["pixtral", "mistral-vision"],
39
+ displayName: "Pixtral Large",
40
+ contextWindow: 131072,
41
+ maxOutputTokens: 8192,
42
+ // pricingPerMTok omitted: hasPricing() reports no verified rate
43
+ vision: true,
44
+ functionCalling: true,
45
+ reasoning: true,
46
+ jsonMode: true,
47
+ },
48
+ },
49
+ };
50
+ //# sourceMappingURL=mistral.js.map
@@ -0,0 +1,8 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ /**
3
+ * Minimal manifest: nvidia-nim has no MODEL_REGISTRY entries today, so
4
+ * only the provider-wide fallback is known. Named models can be added here
5
+ * incrementally without touching any consumer — see Task 5 of the model
6
+ * metadata consolidation plan.
7
+ */
8
+ export declare const nvidiaNimManifest: ProviderModelManifest;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Minimal manifest: nvidia-nim has no MODEL_REGISTRY entries today, so
3
+ * only the provider-wide fallback is known. Named models can be added here
4
+ * incrementally without touching any consumer — see Task 5 of the model
5
+ * metadata consolidation plan.
6
+ */
7
+ export const nvidiaNimManifest = {
8
+ defaultContextWindow: 128000,
9
+ models: {
10
+ _default: {
11
+ aliases: [],
12
+ contextWindow: 128000,
13
+ maxOutputTokens: 64000,
14
+ vision: false,
15
+ functionCalling: false,
16
+ },
17
+ },
18
+ };
19
+ //# sourceMappingURL=nvidia-nim.js.map
@@ -0,0 +1,2 @@
1
+ import type { ProviderModelManifest } from "../../types/index.js";
2
+ export declare const ollamaManifest: ProviderModelManifest;