@steipete/oracle 0.15.0 → 0.15.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/dist/bin/oracle-cli.js +14 -6
- package/dist/docs-site/bridge.html +17 -1
- package/dist/docs-site/browser-mode.html +2 -2
- package/dist/docs-site/configuration.html +12 -2
- package/dist/docs-site/openai-endpoints.html +12 -0
- package/dist/src/browser/actions/assistantResponse.js +40 -31
- package/dist/src/browser/actions/attachments.js +28 -1
- package/dist/src/browser/actions/deepResearch.js +212 -67
- package/dist/src/browser/actions/modelSelection.js +30 -7
- package/dist/src/browser/actions/promptComposer.js +71 -14
- package/dist/src/browser/actions/thinkingStatus.js +19 -1
- package/dist/src/browser/artifacts.js +191 -6
- package/dist/src/browser/chatgptFiles.js +525 -91
- package/dist/src/browser/constants.js +5 -0
- package/dist/src/browser/index.js +30 -30
- package/dist/src/browser/sessionRunner.js +9 -3
- package/dist/src/cli/bridge/client.js +4 -1
- package/dist/src/cli/bridge/doctor.js +19 -0
- package/dist/src/cli/runOptions.js +11 -2
- package/dist/src/cli/sessionDisplay.js +6 -1
- package/dist/src/cli/sessionRunner.js +28 -10
- package/dist/src/config.js +3 -0
- package/dist/src/oracle/client.js +2 -0
- package/dist/src/oracle/modelResolver.js +85 -0
- package/dist/src/oracle/multiModelRunner.js +4 -1
- package/dist/src/oracle/run.js +4 -1
- package/dist/src/remote/client.js +253 -22
- package/dist/src/remote/health.js +27 -0
- package/dist/src/remote/server.js +239 -4
- package/dist/src/remote/types.js +1 -1
- package/dist/src/sessionManager.js +1 -0
- package/dist/vendor/oracle-notifier/OracleNotifier.app/Contents/CodeResources +0 -0
- package/dist/vendor/oracle-notifier/OracleNotifier.app/Contents/MacOS/OracleNotifier +0 -0
- package/package.json +13 -13
- package/vendor/oracle-notifier/OracleNotifier.app/Contents/CodeResources +0 -0
- package/vendor/oracle-notifier/OracleNotifier.app/Contents/MacOS/OracleNotifier +0 -0
|
@@ -197,6 +197,7 @@ export async function initializeSession(options, cwd, notifications, baseSlugOve
|
|
|
197
197
|
followupSessionId: options.followupSessionId,
|
|
198
198
|
followupModel: options.followupModel,
|
|
199
199
|
effectiveModelId: options.effectiveModelId,
|
|
200
|
+
modelOverrides: options.modelOverrides,
|
|
200
201
|
maxInput: options.maxInput,
|
|
201
202
|
system: options.system,
|
|
202
203
|
maxOutput: options.maxOutput,
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steipete/oracle",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "CLI wrapper around OpenAI Responses API with GPT-5.5 Pro, GPT-5.5, GPT-5.4, GPT-5.2, GPT-5.1, and GPT-5.1 Codex high reasoning modes.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://askoracle.sh",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@anthropic-ai/tokenizer": "^0.0.4",
|
|
61
|
-
"@google/genai": "^2.
|
|
61
|
+
"@google/genai": "^2.9.0",
|
|
62
62
|
"@google/generative-ai": "^0.24.1",
|
|
63
63
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
64
64
|
"@steipete/sweet-cookie": "^0.4.0",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"json5": "^2.2.3",
|
|
75
75
|
"kleur": "^4.1.5",
|
|
76
76
|
"markdansi": "0.3.1",
|
|
77
|
-
"openai": "^6.
|
|
78
|
-
"osc-progress": "^0.3.
|
|
77
|
+
"openai": "^6.44.0",
|
|
78
|
+
"osc-progress": "^0.3.1",
|
|
79
79
|
"qs": "^6.15.2",
|
|
80
80
|
"shiki": "^4.2.0",
|
|
81
81
|
"toasted-notifier": "^10.1.0",
|
|
@@ -85,16 +85,16 @@
|
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@anthropic-ai/tokenizer": "^0.0.4",
|
|
87
87
|
"@types/chrome-remote-interface": "^0.34.0",
|
|
88
|
-
"@types/inquirer": "^9.0.
|
|
89
|
-
"@types/node": "^
|
|
90
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
88
|
+
"@types/inquirer": "^9.0.10",
|
|
89
|
+
"@types/node": "^26.0.0",
|
|
90
|
+
"@typescript/native-preview": "7.0.0-dev.20260623.1",
|
|
91
91
|
"@vitest/coverage-v8": "4.1.9",
|
|
92
|
-
"devtools-protocol": "0.0.
|
|
93
|
-
"es-toolkit": "^1.
|
|
94
|
-
"esbuild": "^0.28.
|
|
95
|
-
"oxfmt": "0.
|
|
96
|
-
"oxlint": "^1.
|
|
97
|
-
"puppeteer-core": "^25.
|
|
92
|
+
"devtools-protocol": "0.0.1648812",
|
|
93
|
+
"es-toolkit": "^1.48.1",
|
|
94
|
+
"esbuild": "^0.28.1",
|
|
95
|
+
"oxfmt": "0.56.0",
|
|
96
|
+
"oxlint": "^1.71.0",
|
|
97
|
+
"puppeteer-core": "^25.2.0",
|
|
98
98
|
"tsx": "^4.22.4",
|
|
99
99
|
"typescript": "^6.0.3",
|
|
100
100
|
"vitest": "^4.1.9"
|
|
Binary file
|
|
Binary file
|