@benvargas/pi-openai-verbosity 1.1.1 → 1.1.2

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/README.md CHANGED
@@ -121,7 +121,8 @@ By default, the extension mirrors the Codex CLI's own per-model verbosity defaul
121
121
  "openai-codex/gpt-5.5": "low",
122
122
  "openai-codex/gpt-5.6-luna": "low",
123
123
  "openai-codex/gpt-5.6-sol": "low",
124
- "openai-codex/gpt-5.6-terra": "low"
124
+ "openai-codex/gpt-5.6-terra": "low",
125
+ "openai-codex/gpt-6-astra": "low"
125
126
  }
126
127
  }
127
128
  ```
@@ -21,9 +21,10 @@ const VERBOSITY_CONFIG_BASENAME = "pi-openai-verbosity.json";
21
21
  const VERBOSITY_COMMAND_ARGS = ["status"] as const;
22
22
  const DEBUG_LOG_ENV = "PI_OPENAI_VERBOSITY_DEBUG_LOG";
23
23
  const SUPPORTED_PROVIDERS = ["openai-codex"] as const;
24
- // Mirrors the Codex CLI upstream defaults for every model in pi's openai-codex
25
- // catalog. pi itself falls back to `low` for all codex requests, which matches
26
- // upstream everywhere except gpt-5.4-mini (upstream default: medium).
24
+ // Mirrors the Codex CLI upstream `default_verbosity` for every model in pi's
25
+ // openai-codex catalog as of pi 0.85.1 (gpt-5.3-codex-spark through
26
+ // gpt-6-astra). pi itself falls back to `low` for all codex requests, which
27
+ // matches upstream everywhere except gpt-5.4-mini (upstream default: medium).
27
28
  const DEFAULT_MODEL_VERBOSITY = {
28
29
  "openai-codex/gpt-5.3-codex-spark": "low",
29
30
  "openai-codex/gpt-5.4": "low",
@@ -32,6 +33,7 @@ const DEFAULT_MODEL_VERBOSITY = {
32
33
  "openai-codex/gpt-5.6-luna": "low",
33
34
  "openai-codex/gpt-5.6-sol": "low",
34
35
  "openai-codex/gpt-5.6-terra": "low",
36
+ "openai-codex/gpt-6-astra": "low",
35
37
  } as const;
36
38
 
37
39
  type TextVerbosity = "low" | "medium" | "high";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benvargas/pi-openai-verbosity",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Per-model OpenAI Codex text verbosity overrides for pi",
5
5
  "keywords": [
6
6
  "pi",
@@ -12,6 +12,7 @@
12
12
  "openai-codex",
13
13
  "gpt-5.5",
14
14
  "gpt-5.6-sol",
15
+ "gpt-6-astra",
15
16
  "verbosity",
16
17
  "text-verbosity",
17
18
  "per-model"