@jaypie/llm 1.3.13 → 1.3.14

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/cjs/Llm.d.ts CHANGED
@@ -27,6 +27,12 @@ declare class Llm implements LlmProvider {
27
27
  operate(input: string | LlmHistory | LlmInputMessage | LlmOperateInput, options?: Omit<LlmOperateOptions, "model"> & {
28
28
  model?: LlmModelOption;
29
29
  }): Promise<LlmOperateResponse>;
30
+ /**
31
+ * Stamp fallback resolution onto the envelope the operate loop attached to
32
+ * the response and deliver it to the caller's onExchange. Fires once per
33
+ * operate() settlement; callback errors are logged and never thrown.
34
+ */
35
+ private settleExchange;
30
36
  stream(input: string | LlmHistory | LlmInputMessage | LlmOperateInput, options?: Omit<LlmOperateOptions, "model"> & {
31
37
  model?: LlmModelOption;
32
38
  }): AsyncIterable<LlmStreamChunk>;