UNPKG

n8n-nodes-langsmith-prompt

Version:

n8n node to use LangSmith prompt templates with variable substitution

6 lines (5 loc) 275 B
export interface PromptParameters { [key: string]: string; } export declare function fetchPromptTemplateByName(promptName: string, apiKey: string): Promise<string | null>; export declare function invokePromptRaw(promptTemplate: string, params: PromptParameters): string;