refactor: split Claude agent runner entrypoint (#200)
This commit is contained in:
13
runners/agent-runner/src/runner-input.ts
Normal file
13
runners/agent-runner/src/runner-input.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { RoomRoleContext } from './room-role-context.js';
|
||||
|
||||
export interface RunnerInput {
|
||||
prompt: string;
|
||||
sessionId?: string;
|
||||
groupFolder: string;
|
||||
chatJid: string;
|
||||
isMain: boolean;
|
||||
isScheduledTask?: boolean;
|
||||
assistantName?: string;
|
||||
secrets?: Record<string, string>;
|
||||
roomRoleContext?: RoomRoleContext;
|
||||
}
|
||||
Reference in New Issue
Block a user