@purista/harness-openai 1.2.4 → 1.2.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.
Files changed (2) hide show
  1. package/dist/index.js +0 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -251,7 +251,6 @@ async function createResponse(client, req, stream) {
251
251
  model: req.model,
252
252
  input: toResponsesInput(req.messages),
253
253
  stream,
254
- ...(stream ? { stream_options: { include_usage: true } } : {}),
255
254
  tools: toResponsesTools(req.tools),
256
255
  temperature: req.call?.temperature ?? req.defaults?.temperature,
257
256
  max_output_tokens: req.call?.maxTokens ?? req.defaults?.maxTokens,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purista/harness-openai",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "OpenAI model provider adapter for @purista/harness.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",