@robota-sdk/agent-core 3.0.0-beta.10 → 3.0.0-beta.12

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.
@@ -3151,6 +3151,8 @@ declare class Robota extends AbstractAgent<IAgentConfig, IRunOptions, TUniversal
3151
3151
  private executionDeps;
3152
3152
  getHistory(): TUniversalMessage[];
3153
3153
  clearHistory(): void;
3154
+ /** Inject a message into conversation history without triggering execution. */
3155
+ injectMessage(role: 'user' | 'assistant' | 'system', content: string): void;
3154
3156
  updateTools(next: Array<IToolWithEventService>): Promise<{
3155
3157
  version: number;
3156
3158
  }>;