@xpert-ai/chatkit-types 0.3.12 → 0.3.13
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/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1731,6 +1731,7 @@ export declare type ThreadGoal = {
|
|
|
1731
1731
|
threadId: string;
|
|
1732
1732
|
objective: string;
|
|
1733
1733
|
status: ThreadGoalStatus;
|
|
1734
|
+
goalSpec?: ThreadGoalSpec | null;
|
|
1734
1735
|
tokensUsed: number;
|
|
1735
1736
|
elapsedSeconds: number;
|
|
1736
1737
|
continuationCount: number;
|
|
@@ -1739,6 +1740,17 @@ export declare type ThreadGoal = {
|
|
|
1739
1740
|
blockedAt?: string | Date | null;
|
|
1740
1741
|
};
|
|
1741
1742
|
|
|
1743
|
+
export declare type ThreadGoalSpec = {
|
|
1744
|
+
originalObjective: string;
|
|
1745
|
+
executableGoal: string;
|
|
1746
|
+
successCriteria: string[];
|
|
1747
|
+
constraints: string[];
|
|
1748
|
+
verificationChecklist: string[];
|
|
1749
|
+
recommendedStrategy: string;
|
|
1750
|
+
source: 'system' | 'llm';
|
|
1751
|
+
generatedAt: string;
|
|
1752
|
+
};
|
|
1753
|
+
|
|
1742
1754
|
export declare type ThreadGoalStatus = 'active' | 'paused' | 'blocked' | 'usage_limited' | 'budget_limited' | 'complete';
|
|
1743
1755
|
|
|
1744
1756
|
/**
|