@theokit/sdk 2.11.1 → 2.11.2

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/dist/eval.js CHANGED
@@ -8544,6 +8544,9 @@ async function streamLlmTurn(inputs, ctx) {
8544
8544
  const effort = reasoningEffortFromParams(inputs.model.params);
8545
8545
  return effort !== void 0 ? { reasoning: { effort } } : {};
8546
8546
  })(),
8547
+ // Step-cap force-close: forward the per-run tool gate (`"none"` on a ceiling round forces a
8548
+ // text close even though tools are advertised). Absent ⇒ provider default (auto).
8549
+ ...inputs.toolChoice !== void 0 ? { toolChoice: inputs.toolChoice } : {},
8547
8550
  messages: ctx.messages,
8548
8551
  tools: ctx.tools.map(toLlmTool)
8549
8552
  },
@@ -11118,6 +11121,14 @@ function applyReasoningRequest(body, effort, providerName) {
11118
11121
  }
11119
11122
  body.reasoning = { effort };
11120
11123
  }
11124
+ function applyToolsRequest(body, request) {
11125
+ if (request.tools === void 0 || request.tools.length === 0) return;
11126
+ body.tools = request.tools.map((tool) => ({
11127
+ type: "function",
11128
+ function: { name: tool.name, description: tool.description, parameters: tool.inputSchema }
11129
+ }));
11130
+ if (request.toolChoice !== void 0) body.tool_choice = request.toolChoice;
11131
+ }
11121
11132
  function buildOpenAIBody(request, providerName) {
11122
11133
  const messages = [];
11123
11134
  const systemText = openAISystemText(request.system);
@@ -11139,12 +11150,7 @@ function buildOpenAIBody(request, providerName) {
11139
11150
  if (request.temperature !== void 0) body.temperature = request.temperature;
11140
11151
  if (request.reasoning?.effort !== void 0)
11141
11152
  applyReasoningRequest(body, request.reasoning.effort, providerName);
11142
- if (request.tools !== void 0 && request.tools.length > 0) {
11143
- body.tools = request.tools.map((tool) => ({
11144
- type: "function",
11145
- function: { name: tool.name, description: tool.description, parameters: tool.inputSchema }
11146
- }));
11147
- }
11153
+ applyToolsRequest(body, request);
11148
11154
  const responseFormat = encodeOpenAIResponseFormat(request.responseFormat);
11149
11155
  if (responseFormat !== void 0) body.response_format = responseFormat;
11150
11156
  return body;
@@ -11987,6 +11993,7 @@ function buildLoopInputs(options, runId, userText) {
11987
11993
  ...options.systemPrompt !== void 0 ? { systemPrompt: options.systemPrompt } : {},
11988
11994
  ...options.onStep !== void 0 ? { onStep: options.onStep } : {},
11989
11995
  ...options.onDelta !== void 0 ? { onDelta: options.onDelta } : {},
11996
+ ...options.sendOptions.toolChoice !== void 0 ? { toolChoice: options.sendOptions.toolChoice } : {},
11990
11997
  ...options.priorMessages !== void 0 ? { priorMessages: options.priorMessages } : {},
11991
11998
  ...options.memoryTools !== void 0 && options.memoryTools.length > 0 ? { memoryTools: options.memoryTools } : {},
11992
11999
  ...buildCustomToolsInput(