@ljoukov/llm 4.0.4 → 4.0.5
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 +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9596,7 +9596,7 @@ async function runAccessHook2(runtime, context) {
|
|
|
9596
9596
|
}
|
|
9597
9597
|
function isCodexModel(model) {
|
|
9598
9598
|
const normalized = model.startsWith("chatgpt-") ? model.slice("chatgpt-".length) : model;
|
|
9599
|
-
return normalized.includes("codex");
|
|
9599
|
+
return normalized.includes("codex") || normalized === "gpt-5.4" || normalized === "gpt-5.4-fast";
|
|
9600
9600
|
}
|
|
9601
9601
|
function isGeminiModel(model) {
|
|
9602
9602
|
return model.startsWith("gemini-");
|