@jjlmoya/utils-developer 1.20.0 → 1.21.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-developer",
3
- "version": "1.20.0",
3
+ "version": "1.21.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -9,91 +9,75 @@ export interface LLMModel {
9
9
 
10
10
  export const LLM_MODELS: LLMModel[] = [
11
11
  {
12
- id: 'gpt-5.4-pro',
13
- name: 'GPT-5.4 Pro',
12
+ id: 'gpt-5.5-pro',
13
+ name: 'GPT-5.5 Pro',
14
14
  input: 30.0,
15
15
  output: 180.0,
16
16
  group: 'OpenAI',
17
- description: 'Deep reasoning with specialized hardware for critical tasks.',
17
+ description: 'Flagship para flujos de trabajo agenteicos y orquestación compleja.',
18
18
  },
19
19
  {
20
- id: 'gpt-5.4-standard',
21
- name: 'GPT-5.4 Standard',
22
- input: 2.5,
23
- output: 15.0,
20
+ id: 'gpt-5.5-standard',
21
+ name: 'GPT-5.5 Standard',
22
+ input: 5.0,
23
+ output: 30.0,
24
24
  group: 'OpenAI',
25
- description: 'The gold standard in intelligence for general-purpose applications.',
25
+ description: 'Equilibrio de alto rendimiento para tareas multimodales.',
26
26
  },
27
27
  {
28
- id: 'gpt-5.2-reasoning',
29
- name: 'GPT-5.2 Reasoning',
30
- input: 1.75,
31
- output: 14.0,
32
- group: 'OpenAI',
33
- description: 'Optimized for complex logic and structured thinking.',
28
+ id: 'claude-fable-5',
29
+ name: 'Claude Fable 5',
30
+ input: 10.0,
31
+ output: 50.0,
32
+ group: 'Anthropic',
33
+ description: 'El modelo más capaz de Anthropic, optimizado para razonamiento profundo.',
34
34
  },
35
35
  {
36
- id: 'claude-4.6-opus',
37
- name: 'Claude 4.6 Opus',
36
+ id: 'claude-opus-4.7',
37
+ name: 'Claude Opus 4.7',
38
38
  input: 5.0,
39
39
  output: 25.0,
40
40
  group: 'Anthropic',
41
- description: 'Leader in linguistic nuance and complex ethical reasoning.',
41
+ description: 'Referencia en precisión, análisis legal y reducción de alucinaciones.',
42
42
  },
43
43
  {
44
- id: 'claude-4.6-sonnet',
45
- name: 'Claude 4.6 Sonnet',
44
+ id: 'claude-sonnet-5',
45
+ name: 'Claude Sonnet 5',
46
46
  input: 3.0,
47
47
  output: 15.0,
48
48
  group: 'Anthropic',
49
- description: 'Unmatched speed and technical precision for developers.',
49
+ description: 'El estándar de oro para coding y agentes técnicos.',
50
50
  },
51
51
  {
52
- id: 'claude-4.6-haiku',
53
- name: 'Claude 4.6 Haiku',
54
- input: 1.0,
55
- output: 5.0,
56
- group: 'Anthropic',
57
- description: 'Sub-second efficiency for massive automation workloads.',
52
+ id: 'gemini-3.5-flash',
53
+ name: 'Gemini 3.5 Flash',
54
+ input: 1.5,
55
+ output: 9.0,
56
+ group: 'Google',
57
+ description: 'Eficiencia extrema y velocidad, ideal para tareas de alta escala.',
58
58
  },
59
59
  {
60
- id: 'gemini-3-pro',
61
- name: 'Gemini 3 Pro',
60
+ id: 'gemini-3.1-pro',
61
+ name: 'Gemini 3.1 Pro',
62
62
  input: 2.0,
63
63
  output: 12.0,
64
64
  group: 'Google',
65
- description: 'Multimodal context window of 2M+ tokens.',
66
- },
67
- {
68
- id: 'gemini-3-flash',
69
- name: 'Gemini 3 Flash',
70
- input: 0.1,
71
- output: 0.4,
72
- group: 'Google',
73
- description: 'Ultra-fast inference at the lowest market cost.',
65
+ description: 'Contexto masivo de hasta 10M de tokens para repositorios completos.',
74
66
  },
75
67
  {
76
- id: 'llama-4-maverick',
77
- name: 'Llama 4 Maverick (405B)',
78
- input: 0.15,
79
- output: 0.6,
80
- group: 'Meta',
81
- description: 'Enterprise-grade open source power.',
68
+ id: 'deepseek-v4-pro',
69
+ name: 'DeepSeek-V4 Pro',
70
+ input: 0.44,
71
+ output: 0.87,
72
+ group: 'DeepSeek',
73
+ description: 'Modelo open-weight líder en eficiencia de costes para desarrollo.',
82
74
  },
83
75
  {
84
76
  id: 'llama-4-scout',
85
- name: 'Llama 4 Scout (70B)',
86
- input: 0.08,
87
- output: 0.3,
77
+ name: 'Llama 4 Scout',
78
+ input: 0.11,
79
+ output: 0.34,
88
80
  group: 'Meta',
89
- description: 'Balanced efficiency for local deployments and APIs.',
90
- },
91
- {
92
- id: 'deepseek-v4',
93
- name: 'DeepSeek-V4',
94
- input: 0.1,
95
- output: 0.2,
96
- group: 'DeepSeek',
97
- description: 'Extreme optimization for coding and mathematics.',
81
+ description: 'Optimizado para despliegue masivo y análisis de contexto ultra-largo.',
98
82
  },
99
- ];
83
+ ];