import type { AgentDescriptor, Context, SessionPermissions } from "@/types"; import type { UserHome } from "../../users/userHome.js"; import type { AgentSystem } from "../agentSystem.js"; export type AgentSystemPromptAgentSystem = Pick; export type AgentSystemPromptContext = { model?: string; provider?: string; ctx: Context; permissions?: SessionPermissions; agentSystem?: AgentSystemPromptAgentSystem; descriptor?: AgentDescriptor; userHome?: UserHome; }; //# sourceMappingURL=agentSystemPromptContext.d.ts.map