@librechat/agents-types 3.0.17 → 3.0.19

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/stream.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@librechat/agents-types",
3
- "version": "3.0.17",
3
+ "version": "3.0.19",
4
4
  "description": "Type definitions for @librechat/agents",
5
5
  "types": "index.d.ts",
6
6
  "scripts": {
package/stream.ts CHANGED
@@ -65,6 +65,7 @@ export type RunStep = {
65
65
  // last_error: string | null;
66
66
  id: string; // #new
67
67
  runId?: string; // #new
68
+ agentId?: string; // #new - tracks which agent this step belongs to
68
69
  index: number; // #new
69
70
  stepIndex?: number; // #new
70
71
  stepDetails: StepDetails;