Interface ResolvedPromptTemplate

interface ResolvedPromptTemplate {
    functionDescriptions?: Map<string, ToolRequest>;
    id: string;
    text: string;
}

Properties

functionDescriptions?: Map<string, ToolRequest>

All functions referenced in the prompt template.

id: string
text: string

The resolved prompt text with variables and function requests being replaced.