Interface PlanContext

Contextual information passed to the planner.

interface PlanContext {
    tools: {
        name: string;
        description: string;
    }[];
    providers: string[];
}

Properties

Properties

tools: {
    name: string;
    description: string;
}[]

Type declaration

  • name: string
  • description: string
providers: string[]