@kesarcloud/omega-plus-cli 2.0.3 → 2.0.4
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 +1 -1
- package/src/banner.mjs +1 -1
- package/src/config-writers.mjs +1 -1
- package/src/constants.mjs +4 -5
package/package.json
CHANGED
package/src/banner.mjs
CHANGED
package/src/config-writers.mjs
CHANGED
|
@@ -227,7 +227,7 @@ async function configureDroid(input) {
|
|
|
227
227
|
index: 0,
|
|
228
228
|
baseUrl: options.anthropicBaseUrl,
|
|
229
229
|
apiKey: options.apiKey,
|
|
230
|
-
displayName: "Omega
|
|
230
|
+
displayName: "Omega Plus",
|
|
231
231
|
maxOutputTokens: OMEGA_MAX_OUTPUT_TOKENS,
|
|
232
232
|
maxContextTokens: OMEGA_CONTEXT_WINDOW,
|
|
233
233
|
noImageSupport: false,
|
package/src/constants.mjs
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
export const VERSION = "2.0.
|
|
1
|
+
export const VERSION = "2.0.4";
|
|
2
2
|
export const DEFAULT_ORIGIN = "https://omega.kesarcloud.in";
|
|
3
3
|
export const DEFAULT_BASE_URL = `${DEFAULT_ORIGIN}/v1`;
|
|
4
4
|
export const DEFAULT_ANTHROPIC_BASE_URL = `${DEFAULT_ORIGIN}/v1`;
|
|
5
5
|
export const DEFAULT_OPENAI_BASE_URL = `${DEFAULT_ORIGIN}/api/v1`;
|
|
6
6
|
export const DEFAULT_VALIDATION_URL = `${DEFAULT_ORIGIN}/api/omega/validate-key`;
|
|
7
|
-
export const DEFAULT_MODEL = "omega-
|
|
8
|
-
export const DEFAULT_FAST_MODEL = "omega-
|
|
7
|
+
export const DEFAULT_MODEL = "omega-plus";
|
|
8
|
+
export const DEFAULT_FAST_MODEL = "omega-plus";
|
|
9
9
|
export const OMEGA_CONTEXT_WINDOW = 1_000_000;
|
|
10
10
|
export const OMEGA_MAX_OUTPUT_TOKENS = 32000;
|
|
11
11
|
|
|
12
12
|
export const OMEGA_MODELS = [
|
|
13
|
-
{ id: "omega-
|
|
14
|
-
{ id: "omega-v1", name: "Omega V1" },
|
|
13
|
+
{ id: "omega-plus", name: "Omega Plus" },
|
|
15
14
|
];
|
|
16
15
|
|
|
17
16
|
export const TOOL_IDS = ["claude", "codex", "opencode", "cline", "kilo", "droid"];
|