@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kesarcloud/omega-plus-cli",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Interactive Omega Plus setup wizard for coding CLI tools.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/banner.mjs CHANGED
@@ -16,5 +16,5 @@ export function getBanner() {
16
16
 
17
17
  export function printBanner() {
18
18
  console.log(`\n${getBanner()}`);
19
- console.log(`${ORANGE}Connect your coding tool to Omega V1.${RESET}\n`);
19
+ console.log(`${ORANGE}Connect your coding tool to Omega Plus.${RESET}\n`);
20
20
  }
@@ -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 V1 Pro",
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.3";
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-v1-pro";
8
- export const DEFAULT_FAST_MODEL = "omega-v1";
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-v1-pro", name: "Omega V1 Pro" },
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"];