@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/cron.d.cts CHANGED
@@ -1,2 +1,2 @@
1
- import './run-D22b53SU.cjs';
2
- export { K as Cron } from './cron-BNI8pyn_.cjs';
1
+ import './run-TMdc7gmo.cjs';
2
+ export { K as Cron } from './cron-DOw-Hqol.cjs';
package/dist/cron.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import './run-D22b53SU.js';
2
- export { K as Cron } from './cron-CZlMLA1K.js';
1
+ import './run-TMdc7gmo.js';
2
+ export { K as Cron } from './cron-BRfFPEKY.js';
package/dist/cron.js CHANGED
@@ -8549,6 +8549,9 @@ async function streamLlmTurn(inputs, ctx) {
8549
8549
  const effort = reasoningEffortFromParams(inputs.model.params);
8550
8550
  return effort !== void 0 ? { reasoning: { effort } } : {};
8551
8551
  })(),
8552
+ // Step-cap force-close: forward the per-run tool gate (`"none"` on a ceiling round forces a
8553
+ // text close even though tools are advertised). Absent ⇒ provider default (auto).
8554
+ ...inputs.toolChoice !== void 0 ? { toolChoice: inputs.toolChoice } : {},
8552
8555
  messages: ctx.messages,
8553
8556
  tools: ctx.tools.map(toLlmTool)
8554
8557
  },
@@ -11123,6 +11126,14 @@ function applyReasoningRequest(body, effort, providerName) {
11123
11126
  }
11124
11127
  body.reasoning = { effort };
11125
11128
  }
11129
+ function applyToolsRequest(body, request) {
11130
+ if (request.tools === void 0 || request.tools.length === 0) return;
11131
+ body.tools = request.tools.map((tool) => ({
11132
+ type: "function",
11133
+ function: { name: tool.name, description: tool.description, parameters: tool.inputSchema }
11134
+ }));
11135
+ if (request.toolChoice !== void 0) body.tool_choice = request.toolChoice;
11136
+ }
11126
11137
  function buildOpenAIBody(request, providerName) {
11127
11138
  const messages = [];
11128
11139
  const systemText = openAISystemText(request.system);
@@ -11144,12 +11155,7 @@ function buildOpenAIBody(request, providerName) {
11144
11155
  if (request.temperature !== void 0) body.temperature = request.temperature;
11145
11156
  if (request.reasoning?.effort !== void 0)
11146
11157
  applyReasoningRequest(body, request.reasoning.effort, providerName);
11147
- if (request.tools !== void 0 && request.tools.length > 0) {
11148
- body.tools = request.tools.map((tool) => ({
11149
- type: "function",
11150
- function: { name: tool.name, description: tool.description, parameters: tool.inputSchema }
11151
- }));
11152
- }
11158
+ applyToolsRequest(body, request);
11153
11159
  const responseFormat = encodeOpenAIResponseFormat(request.responseFormat);
11154
11160
  if (responseFormat !== void 0) body.response_format = responseFormat;
11155
11161
  return body;
@@ -11992,6 +11998,7 @@ function buildLoopInputs(options, runId, userText) {
11992
11998
  ...options.systemPrompt !== void 0 ? { systemPrompt: options.systemPrompt } : {},
11993
11999
  ...options.onStep !== void 0 ? { onStep: options.onStep } : {},
11994
12000
  ...options.onDelta !== void 0 ? { onDelta: options.onDelta } : {},
12001
+ ...options.sendOptions.toolChoice !== void 0 ? { toolChoice: options.sendOptions.toolChoice } : {},
11995
12002
  ...options.priorMessages !== void 0 ? { priorMessages: options.priorMessages } : {},
11996
12003
  ...options.memoryTools !== void 0 && options.memoryTools.length > 0 ? { memoryTools: options.memoryTools } : {},
11997
12004
  ...buildCustomToolsInput(