@gengjiawen/os-init 1.8.0 → 1.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.9.0](https://github.com/gengjiawen/os-init/compare/v1.8.0...v1.9.0) (2025-11-21)
4
+
5
+
6
+ ### Features
7
+
8
+ * bump codex base model ([498bcc3](https://github.com/gengjiawen/os-init/commit/498bcc3b1e8a787ee61531b314c792127cd6c80b))
9
+
3
10
  ## [1.8.0](https://github.com/gengjiawen/os-init/compare/v1.7.1...v1.8.0) (2025-11-10)
4
11
 
5
12
 
package/build/index.js CHANGED
@@ -98,7 +98,7 @@ function getCodexConfigDir() {
98
98
  return path.join(os.homedir(), '.codex');
99
99
  }
100
100
  const CODEX_CONFIG_TOML_TEMPLATE = `model_provider = "jw"
101
- model = "gpt-5"
101
+ model = "gpt-5.1"
102
102
  model_reasoning_effort = "high"
103
103
  disable_response_storage = true
104
104
  preferred_auth_method = "apikey"
package/libs/index.ts CHANGED
@@ -121,7 +121,7 @@ function getCodexConfigDir(): string {
121
121
 
122
122
  /** Template for Codex config.toml */
123
123
  const CODEX_CONFIG_TOML_TEMPLATE = `model_provider = "jw"
124
- model = "gpt-5"
124
+ model = "gpt-5.1"
125
125
  model_reasoning_effort = "high"
126
126
  disable_response_storage = true
127
127
  preferred_auth_method = "apikey"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gengjiawen/os-init",
3
3
  "private": false,
4
- "version": "1.8.0",
4
+ "version": "1.9.0",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "bin": {