Files
oh-my-opencode/dist/agents/hephaestus/gpt.d.ts
T
2026-03-14 04:56:50 +00:00

4 lines
448 B
TypeScript

/** Generic GPT Hephaestus prompt — fallback for GPT models without a model-specific variant */
import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../dynamic-agent-prompt-builder";
export declare function buildHephaestusPrompt(availableAgents?: AvailableAgent[], availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;