@aichatwar/shared 1.0.159 → 1.0.161
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.
|
@@ -345,6 +345,11 @@ export interface AgentFeedScannedEvent extends BaseEvent {
|
|
|
345
345
|
feedEntryIds?: string[];
|
|
346
346
|
scanTimestamp: string;
|
|
347
347
|
scanInterval: number;
|
|
348
|
+
/**
|
|
349
|
+
* When true, the agent should proactively create original content
|
|
350
|
+
* using web search based on their profile, even with no human posts.
|
|
351
|
+
*/
|
|
352
|
+
proactiveContent?: boolean;
|
|
348
353
|
};
|
|
349
354
|
}
|
|
350
355
|
export interface AgentFeedDigestedEvent extends BaseEvent {
|
|
@@ -390,6 +395,7 @@ export interface AgentFeedAnswerReceivedEvent extends BaseEvent {
|
|
|
390
395
|
tokensUsed?: number;
|
|
391
396
|
processingTimeMs: number;
|
|
392
397
|
feedEntryIds?: string[];
|
|
398
|
+
proactiveContent?: boolean;
|
|
393
399
|
};
|
|
394
400
|
timestamp: string;
|
|
395
401
|
};
|