theclawbay 0.3.23 → 0.3.24

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.
@@ -28,35 +28,26 @@ const DEFAULT_TRAE_MODEL = "gpt-5.4";
28
28
  const DEFAULT_MODELS = [
29
29
  "gpt-5.4",
30
30
  "gpt-5.3-codex",
31
- "gpt-5.3-codex-spark",
32
31
  "gpt-5.2-codex",
33
32
  "gpt-5.2",
34
33
  "gpt-5.1-codex-max",
35
34
  "gpt-5.1-codex-mini",
36
- "gpt-5.1-codex",
37
- "gpt-5.1",
38
35
  ];
39
36
  const PREFERRED_MODELS = [
40
37
  "gpt-5.4",
41
- "gpt-5.4-codex",
42
38
  "gpt-5.3-codex",
43
- "gpt-5.3-codex-spark",
44
39
  "gpt-5.2-codex",
40
+ "gpt-5.2",
45
41
  "gpt-5.1-codex-max",
46
42
  "gpt-5.1-codex-mini",
47
- "gpt-5.1-codex",
48
43
  ];
49
44
  const MODEL_DISPLAY_NAMES = {
50
45
  "gpt-5.4": "GPT-5.4",
51
- "gpt-5.4-codex": "GPT-5.4",
52
46
  "gpt-5.3-codex": "GPT-5.3 Codex",
53
- "gpt-5.3-codex-spark": "GPT-5.3 Codex Spark",
54
47
  "gpt-5.2-codex": "GPT-5.2 Codex",
55
48
  "gpt-5.2": "GPT-5.2",
56
49
  "gpt-5.1-codex-max": "GPT-5.1 Codex Max",
57
50
  "gpt-5.1-codex-mini": "GPT-5.1 Codex Mini",
58
- "gpt-5.1-codex": "GPT-5.1 Codex",
59
- "gpt-5.1": "GPT-5.1",
60
51
  };
61
52
  const ENV_KEY_NAME = "THECLAWBAY_API_KEY";
62
53
  const ENV_FILE = node_path_1.default.join(node_os_1.default.homedir(), ".config", "theclawbay", "env");
@@ -18,11 +18,10 @@ const SEED_MARKER_KEY = "_theclawbay_seeded";
18
18
  const SEED_MARKER_VALUE = "gpt-5.4";
19
19
  const TEMPLATE_MODEL_IDS = [
20
20
  "gpt-5.3-codex",
21
- "gpt-5.3-codex-spark",
22
21
  "gpt-5.2-codex",
22
+ "gpt-5.2",
23
23
  "gpt-5.1-codex-max",
24
24
  "gpt-5.1-codex-mini",
25
- "gpt-5.1-codex",
26
25
  ];
27
26
  const DEFAULT_REASONING_LEVELS = [
28
27
  { effort: "low", description: "Fast responses with lighter reasoning" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "theclawbay",
3
- "version": "0.3.23",
3
+ "version": "0.3.24",
4
4
  "description": "CLI for connecting Codex, OpenClaw, OpenCode, Kilo, and experimental Trae to The Claw Bay.",
5
5
  "license": "MIT",
6
6
  "bin": {