juno-code 1.0.19 → 1.0.22
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/dist/bin/cli.js +156 -8
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +155 -8
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/templates/services/codex.py +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -15,7 +15,7 @@ class CodexService:
|
|
|
15
15
|
"""Service wrapper for OpenAI Codex CLI"""
|
|
16
16
|
|
|
17
17
|
# Default configuration
|
|
18
|
-
DEFAULT_MODEL = "gpt-
|
|
18
|
+
DEFAULT_MODEL = "gpt-5-codex"
|
|
19
19
|
DEFAULT_AUTO_INSTRUCTION = """You are an AI coding assistant. Follow the instructions provided and generate high-quality code."""
|
|
20
20
|
|
|
21
21
|
def __init__(self):
|
|
@@ -156,8 +156,10 @@ Examples:
|
|
|
156
156
|
# Add exec command with prompt
|
|
157
157
|
cmd.extend(["exec", full_prompt])
|
|
158
158
|
|
|
159
|
-
#
|
|
160
|
-
# This
|
|
159
|
+
# Add --json flag for streaming support
|
|
160
|
+
# This is CRITICAL for codex to output streaming responses
|
|
161
|
+
# Without this flag, codex will not stream progress updates
|
|
162
|
+
cmd.append("--json")
|
|
161
163
|
|
|
162
164
|
return cmd
|
|
163
165
|
|