Interface SystemMessageDescription

System message content, enriched with function descriptions.

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

Properties

functionDescriptions?: Map<string, ToolRequest>

All functions references in the system message.

text: string