oh-my-opencode 2.5.0 → 2.5.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/README.ja.md +23 -0
- package/README.ko.md +23 -0
- package/README.md +25 -2
- package/README.zh-cn.md +23 -1
- package/dist/cli/config-manager.d.ts +72 -1
- package/dist/cli/config-manager.test.d.ts +1 -0
- package/dist/cli/index.js +3745 -0
- package/dist/google-auth.js +1735 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9702,7 +9702,7 @@ function transformRequest(options) {
|
|
|
9702
9702
|
endpointOverride,
|
|
9703
9703
|
thoughtSignature
|
|
9704
9704
|
} = options;
|
|
9705
|
-
const effectiveModel = modelName || extractModelFromBody(body) || extractModelFromUrl(url) || "gemini-3-pro-
|
|
9705
|
+
const effectiveModel = modelName || extractModelFromBody(body) || extractModelFromUrl(url) || "gemini-3-pro-high";
|
|
9706
9706
|
const streaming = isStreamingRequest(url, body);
|
|
9707
9707
|
const action = streaming ? "streamGenerateContent" : "generateContent";
|
|
9708
9708
|
const endpoint = endpointOverride || getDefaultEndpoint();
|