@everworker/oneringai 0.4.5 → 0.4.7

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.
@@ -13,6 +13,8 @@ interface ILLMDescription {
13
13
  description?: string;
14
14
  /** Whether the model is currently available for use */
15
15
  isActive: boolean;
16
+ /** Whether this model is a preferred/recommended choice for its vendor */
17
+ preferred?: boolean;
16
18
  /** Release date (YYYY-MM-DD format) */
17
19
  releaseDate?: string;
18
20
  /** Knowledge cutoff date */
@@ -90,15 +92,25 @@ interface ILLMDescription {
90
92
  }
91
93
  /**
92
94
  * Model name constants organized by vendor
93
- * Updated: January 2026 - Contains only verified, currently available models
95
+ * Updated: March 2026 - Contains only verified, currently available models
94
96
  */
95
97
  declare const LLM_MODELS: {
96
98
  readonly openai: {
99
+ readonly GPT_5_3_CODEX: "gpt-5.3-codex";
100
+ readonly GPT_5_3_CHAT: "gpt-5.3-chat-latest";
97
101
  readonly GPT_5_2: "gpt-5.2";
98
102
  readonly GPT_5_2_PRO: "gpt-5.2-pro";
103
+ readonly GPT_5_2_CODEX: "gpt-5.2-codex";
104
+ readonly GPT_5_2_CHAT: "gpt-5.2-chat-latest";
105
+ readonly GPT_5_1: "gpt-5.1";
106
+ readonly GPT_5_1_CODEX: "gpt-5.1-codex";
107
+ readonly GPT_5_1_CODEX_MAX: "gpt-5.1-codex-max";
108
+ readonly GPT_5_1_CODEX_MINI: "gpt-5.1-codex-mini";
109
+ readonly GPT_5_1_CHAT: "gpt-5.1-chat-latest";
99
110
  readonly GPT_5: "gpt-5";
100
111
  readonly GPT_5_MINI: "gpt-5-mini";
101
112
  readonly GPT_5_NANO: "gpt-5-nano";
113
+ readonly GPT_5_CHAT: "gpt-5-chat-latest";
102
114
  readonly GPT_4_1: "gpt-4.1";
103
115
  readonly GPT_4_1_MINI: "gpt-4.1-mini";
104
116
  readonly GPT_4_1_NANO: "gpt-4.1-nano";
@@ -108,15 +120,21 @@ declare const LLM_MODELS: {
108
120
  readonly O1: "o1";
109
121
  };
110
122
  readonly anthropic: {
123
+ readonly CLAUDE_OPUS_4_6: "claude-opus-4-6";
124
+ readonly CLAUDE_SONNET_4_6: "claude-sonnet-4-6";
111
125
  readonly CLAUDE_OPUS_4_5: "claude-opus-4-5-20251101";
112
126
  readonly CLAUDE_SONNET_4_5: "claude-sonnet-4-5-20250929";
113
127
  readonly CLAUDE_HAIKU_4_5: "claude-haiku-4-5-20251001";
114
128
  readonly CLAUDE_OPUS_4_1: "claude-opus-4-1-20250805";
129
+ readonly CLAUDE_OPUS_4: "claude-opus-4-20250514";
115
130
  readonly CLAUDE_SONNET_4: "claude-sonnet-4-20250514";
116
131
  readonly CLAUDE_SONNET_3_7: "claude-3-7-sonnet-20250219";
117
132
  readonly CLAUDE_HAIKU_3: "claude-3-haiku-20240307";
118
133
  };
119
134
  readonly google: {
135
+ readonly GEMINI_3_1_PRO_PREVIEW: "gemini-3.1-pro-preview";
136
+ readonly GEMINI_3_1_FLASH_LITE_PREVIEW: "gemini-3.1-flash-lite-preview";
137
+ readonly GEMINI_3_1_FLASH_IMAGE_PREVIEW: "gemini-3.1-flash-image-preview";
120
138
  readonly GEMINI_3_FLASH_PREVIEW: "gemini-3-flash-preview";
121
139
  readonly GEMINI_3_PRO_PREVIEW: "gemini-3-pro-preview";
122
140
  readonly GEMINI_3_PRO_IMAGE_PREVIEW: "gemini-3-pro-image-preview";
@@ -139,7 +157,7 @@ declare const LLM_MODELS: {
139
157
  };
140
158
  /**
141
159
  * Complete model registry with all model metadata
142
- * Updated: January 2026 - Verified from official vendor documentation
160
+ * Updated: March 2026 - Verified from official vendor documentation
143
161
  */
144
162
  declare const MODEL_REGISTRY: Record<string, ILLMDescription>;
145
163
  /**
@@ -13,6 +13,8 @@ interface ILLMDescription {
13
13
  description?: string;
14
14
  /** Whether the model is currently available for use */
15
15
  isActive: boolean;
16
+ /** Whether this model is a preferred/recommended choice for its vendor */
17
+ preferred?: boolean;
16
18
  /** Release date (YYYY-MM-DD format) */
17
19
  releaseDate?: string;
18
20
  /** Knowledge cutoff date */
@@ -90,15 +92,25 @@ interface ILLMDescription {
90
92
  }
91
93
  /**
92
94
  * Model name constants organized by vendor
93
- * Updated: January 2026 - Contains only verified, currently available models
95
+ * Updated: March 2026 - Contains only verified, currently available models
94
96
  */
95
97
  declare const LLM_MODELS: {
96
98
  readonly openai: {
99
+ readonly GPT_5_3_CODEX: "gpt-5.3-codex";
100
+ readonly GPT_5_3_CHAT: "gpt-5.3-chat-latest";
97
101
  readonly GPT_5_2: "gpt-5.2";
98
102
  readonly GPT_5_2_PRO: "gpt-5.2-pro";
103
+ readonly GPT_5_2_CODEX: "gpt-5.2-codex";
104
+ readonly GPT_5_2_CHAT: "gpt-5.2-chat-latest";
105
+ readonly GPT_5_1: "gpt-5.1";
106
+ readonly GPT_5_1_CODEX: "gpt-5.1-codex";
107
+ readonly GPT_5_1_CODEX_MAX: "gpt-5.1-codex-max";
108
+ readonly GPT_5_1_CODEX_MINI: "gpt-5.1-codex-mini";
109
+ readonly GPT_5_1_CHAT: "gpt-5.1-chat-latest";
99
110
  readonly GPT_5: "gpt-5";
100
111
  readonly GPT_5_MINI: "gpt-5-mini";
101
112
  readonly GPT_5_NANO: "gpt-5-nano";
113
+ readonly GPT_5_CHAT: "gpt-5-chat-latest";
102
114
  readonly GPT_4_1: "gpt-4.1";
103
115
  readonly GPT_4_1_MINI: "gpt-4.1-mini";
104
116
  readonly GPT_4_1_NANO: "gpt-4.1-nano";
@@ -108,15 +120,21 @@ declare const LLM_MODELS: {
108
120
  readonly O1: "o1";
109
121
  };
110
122
  readonly anthropic: {
123
+ readonly CLAUDE_OPUS_4_6: "claude-opus-4-6";
124
+ readonly CLAUDE_SONNET_4_6: "claude-sonnet-4-6";
111
125
  readonly CLAUDE_OPUS_4_5: "claude-opus-4-5-20251101";
112
126
  readonly CLAUDE_SONNET_4_5: "claude-sonnet-4-5-20250929";
113
127
  readonly CLAUDE_HAIKU_4_5: "claude-haiku-4-5-20251001";
114
128
  readonly CLAUDE_OPUS_4_1: "claude-opus-4-1-20250805";
129
+ readonly CLAUDE_OPUS_4: "claude-opus-4-20250514";
115
130
  readonly CLAUDE_SONNET_4: "claude-sonnet-4-20250514";
116
131
  readonly CLAUDE_SONNET_3_7: "claude-3-7-sonnet-20250219";
117
132
  readonly CLAUDE_HAIKU_3: "claude-3-haiku-20240307";
118
133
  };
119
134
  readonly google: {
135
+ readonly GEMINI_3_1_PRO_PREVIEW: "gemini-3.1-pro-preview";
136
+ readonly GEMINI_3_1_FLASH_LITE_PREVIEW: "gemini-3.1-flash-lite-preview";
137
+ readonly GEMINI_3_1_FLASH_IMAGE_PREVIEW: "gemini-3.1-flash-image-preview";
120
138
  readonly GEMINI_3_FLASH_PREVIEW: "gemini-3-flash-preview";
121
139
  readonly GEMINI_3_PRO_PREVIEW: "gemini-3-pro-preview";
122
140
  readonly GEMINI_3_PRO_IMAGE_PREVIEW: "gemini-3-pro-image-preview";
@@ -139,7 +157,7 @@ declare const LLM_MODELS: {
139
157
  };
140
158
  /**
141
159
  * Complete model registry with all model metadata
142
- * Updated: January 2026 - Verified from official vendor documentation
160
+ * Updated: March 2026 - Verified from official vendor documentation
143
161
  */
144
162
  declare const MODEL_REGISTRY: Record<string, ILLMDescription>;
145
163
  /**