forked from Lilly-Protocol/agentlily-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
18 lines (17 loc) · 702 Bytes
/
Copy pathtypes.ts
File metadata and controls
18 lines (17 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import type { RuntimeEventBus } from "../events/runtime-events.js";
import type { RuntimeLogger } from "../logger/runtime-logger.js";
import type { MemoryStore } from "../memory/memory-store.js";
import type { ModelProvider } from "../providers/model-provider.js";
import type { RuntimeStateStore } from "../state/runtime-state.js";
import type { ToolDefinition } from "../tools/types.js";
export interface RuntimeOptions {
runtimeId: string;
maxToolCallsPerTask?: number;
memoryStore?: MemoryStore;
memoryStoragePath?: string | undefined;
modelProvider?: ModelProvider;
logger?: RuntimeLogger;
stateStore?: RuntimeStateStore;
eventBus?: RuntimeEventBus;
tools?: ToolDefinition[];
}