UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

10 lines (9 loc) 426 B
import { type GroupedGuardrailResults, type StageGuardRails } from '../actions/types'; type RunStageGuardrailsOptions = { stageGuardrails: StageGuardRails; stage: keyof StageGuardRails; inputText: string; failOnlyOnErrors?: boolean; }; export declare function runStageGuardrails({ stageGuardrails, stage, inputText, failOnlyOnErrors, }: RunStageGuardrailsOptions): Promise<GroupedGuardrailResults>; export {};