aidx 1.0.1 → 1.0.2
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/dist/index.js +22 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15,7 +15,7 @@ const METADATA = {
|
|
|
15
15
|
name: "aidx",
|
|
16
16
|
description: "A CLI bridge between local code and LLMs.",
|
|
17
17
|
author: "rx76d",
|
|
18
|
-
version: "",
|
|
18
|
+
version: "1.0.2",
|
|
19
19
|
license: "MIT",
|
|
20
20
|
github: "https://github.com/rx76d/aidx"
|
|
21
21
|
};
|
|
@@ -98,14 +98,29 @@ program
|
|
|
98
98
|
console.log('\n' + chalk.bold('AI Model Context Limits (2025 Reference)'));
|
|
99
99
|
console.log(chalk.dim('--------------------------------------------------'));
|
|
100
100
|
const models = [
|
|
101
|
+
// HUGE (≈ 1M+ tokens)
|
|
101
102
|
{ name: "Gemini 3 Pro", limit: "2,000,000+", type: "Huge" },
|
|
103
|
+
{ name: "Gemini 2.5 Pro", limit: "1,000,000+", type: "Huge" },
|
|
102
104
|
{ name: "Gemini 2.5 Flash", limit: "1,000,000+", type: "Huge" },
|
|
103
|
-
{ name: "
|
|
104
|
-
{ name: "
|
|
105
|
-
{ name: "
|
|
106
|
-
{ name: "
|
|
107
|
-
|
|
108
|
-
{ name: "ChatGPT
|
|
105
|
+
{ name: "Llama 4 Scout", limit: "1,000,000+", type: "Huge" },
|
|
106
|
+
{ name: "Llama 4 Maverick", limit: "1,000,000+", type: "Huge" },
|
|
107
|
+
{ name: "Qwen 2.5 1M", limit: "1,000,000+", type: "Huge" },
|
|
108
|
+
{ name: "GPT-4.1", limit: "1,000,000+", type: "Huge" },
|
|
109
|
+
// LARGE (≈ 200K–500K tokens)
|
|
110
|
+
{ name: "ChatGPT-5", limit: "200,000+", type: "Large" },
|
|
111
|
+
{ name: "Claude 4.5 Sonnet", limit: "200,000+", type: "Large" },
|
|
112
|
+
{ name: "Claude 4.5 Opus", limit: "200,000+", type: "Large" },
|
|
113
|
+
{ name: "Grok 4", limit: "256,000", type: "Large" },
|
|
114
|
+
{ name: "Cohere Command A", limit: "256,000", type: "Large" },
|
|
115
|
+
// MEDIUM (≈ 100K–150K tokens)
|
|
116
|
+
{ name: "GPT-4o", limit: "128,000", type: "Medium" },
|
|
117
|
+
{ name: "Llama 4 405B", limit: "128,000", type: "Medium" },
|
|
118
|
+
{ name: "DeepSeek V3", limit: "128,000", type: "Medium" },
|
|
119
|
+
{ name: "Grok 3", limit: "128,000", type: "Medium" },
|
|
120
|
+
{ name: "GPT-5 Mini", limit: "128,000", type: "Medium" },
|
|
121
|
+
// SMALL (< 50K tokens)
|
|
122
|
+
{ name: "ChatGPT (Free)", limit: "~8,000", type: "Small" },
|
|
123
|
+
{ name: "Claude Haiku", limit: "~16,000", type: "Small" },
|
|
109
124
|
];
|
|
110
125
|
console.log(chalk.cyan('Model Name'.padEnd(20)) + chalk.yellow('Max Tokens'.padEnd(15)) + chalk.white('Category'));
|
|
111
126
|
console.log(chalk.dim('--------------------------------------------------'));
|