Files
oh-my-opencode/dist/agents/explore.d.ts
T

8 lines
318 B
TypeScript
Raw Normal View History

import type { AgentConfig } from "@opencode-ai/sdk";
import type { AgentPromptMetadata } from "./types";
export declare const EXPLORE_PROMPT_METADATA: AgentPromptMetadata;
export declare function createExploreAgent(model: string): AgentConfig;
export declare namespace createExploreAgent {
var mode: "subagent";
}