@gengjiawen/os-init 1.13.0 → 1.13.1
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 +7 -0
- package/build/codex.js +1 -1
- package/libs/codex.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.13.1](https://github.com/gengjiawen/os-init/compare/v1.13.0...v1.13.1) (2026-02-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update Codex model version in config template from gpt-5.2 to gpt-5.3-codex ([e5fca74](https://github.com/gengjiawen/os-init/commit/e5fca74bf8e18d97f1d70eb75b07c964804816e5))
|
|
9
|
+
|
|
3
10
|
## [1.13.0](https://github.com/gengjiawen/os-init/compare/v1.12.0...v1.13.0) (2026-01-26)
|
|
4
11
|
|
|
5
12
|
|
package/build/codex.js
CHANGED
|
@@ -11,7 +11,7 @@ function getCodexConfigDir() {
|
|
|
11
11
|
return path.join(os.homedir(), '.codex');
|
|
12
12
|
}
|
|
13
13
|
const CODEX_CONFIG_TOML_TEMPLATE = `model_provider = "jw"
|
|
14
|
-
model = "gpt-5.
|
|
14
|
+
model = "gpt-5.3-codex"
|
|
15
15
|
model_reasoning_effort = "high"
|
|
16
16
|
disable_response_storage = true
|
|
17
17
|
preferred_auth_method = "apikey"
|
package/libs/codex.ts
CHANGED
|
@@ -11,7 +11,7 @@ function getCodexConfigDir(): string {
|
|
|
11
11
|
|
|
12
12
|
/** Template for Codex config.toml */
|
|
13
13
|
const CODEX_CONFIG_TOML_TEMPLATE = `model_provider = "jw"
|
|
14
|
-
model = "gpt-5.
|
|
14
|
+
model = "gpt-5.3-codex"
|
|
15
15
|
model_reasoning_effort = "high"
|
|
16
16
|
disable_response_storage = true
|
|
17
17
|
preferred_auth_method = "apikey"
|