smoltalk 0.0.50 → 0.0.51

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.
@@ -157,6 +157,7 @@ export class BaseClient {
157
157
  this.statelogClient?.debug("Request aborted or timed out", {
158
158
  reason: message,
159
159
  timeBudgetMs,
160
+ promptConfig,
160
161
  });
161
162
  return { success: false, error: message };
162
163
  }
@@ -380,6 +381,7 @@ export class BaseClient {
380
381
  this.statelogClient?.debug("Streaming request aborted or timed out", {
381
382
  reason: message,
382
383
  timeBudgetMs,
384
+ newPromptConfig,
383
385
  });
384
386
  yield { type: "timeout", error: message };
385
387
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smoltalk",
3
- "version": "0.0.50",
3
+ "version": "0.0.51",
4
4
  "description": "A common interface for LLM APIs",
5
5
  "homepage": "https://github.com/egonSchiele/smoltalk",
6
6
  "scripts": {