/** * The following code is modified based on * https://github.com/nanobrowser/nanobrowser/blob/master/chrome-extension/src/background/agent/prompts/planner.ts * * Apache-2.0 License * Copyright (c) 2024 alexchenzl * https://github.com/nanobrowser/nanobrowser/blob/master/LICENSE */ import { BasePrompt } from './base'; import { HumanMessage, SystemMessage } from '@langchain/core/messages'; import type { AgentContext } from '../types'; export declare class PlannerPrompt extends BasePrompt { getSystemMessage(): SystemMessage; getUserMessage(context: AgentContext): Promise; } //# sourceMappingURL=planner.d.ts.map