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
- if (options?.temperature !== undefined)
279
- body.temperature = options.temperature;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hydramcp",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Multi-model MCP server — compare, vote, and synthesize across GPT, Gemini, Claude, and local models from one terminal",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",