hydramcp 1.0.4 → 1.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.
|
@@ -275,10 +275,8 @@ async function queryCodex(tokens, model, prompt, options) {
|
|
|
275
275
|
stream: true,
|
|
276
276
|
store: false,
|
|
277
277
|
};
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
if (options?.max_tokens !== undefined)
|
|
281
|
-
body.max_output_tokens = options.max_tokens;
|
|
278
|
+
// Note: chatgpt.com/backend-api/codex does NOT support temperature or
|
|
279
|
+
// max_output_tokens for Codex reasoning models. Omitting these params.
|
|
282
280
|
const headers = {
|
|
283
281
|
"Content-Type": "application/json",
|
|
284
282
|
"Authorization": `Bearer ${tokens.accessToken}`,
|
package/package.json
CHANGED