@librechat/agents-types 3.0.43 → 3.0.44

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/package.json +1 -1
  2. package/tools.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@librechat/agents-types",
3
- "version": "3.0.43",
3
+ "version": "3.0.44",
4
4
  "description": "Type definitions for @librechat/agents",
5
5
  "types": "index.d.ts",
6
6
  "scripts": {
package/tools.ts CHANGED
@@ -239,6 +239,8 @@ export type ProgrammaticToolCallingParams = {
239
239
  maxRoundTrips?: number;
240
240
  /** HTTP proxy URL */
241
241
  proxy?: string;
242
+ /** Enable debug logging (or set PTC_DEBUG=true env var) */
243
+ debug?: boolean;
242
244
  /** Environment variable key for API key */
243
245
  [key: string]: unknown;
244
246
  };