langchain.js
    Preparing search index...

    Interface ZeroShotCreatePromptArgs

    Interface for creating a prompt for the ZeroShotAgent.

    interface ZeroShotCreatePromptArgs {
        inputVariables?: string[];
        prefix?: string;
        suffix?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    inputVariables?: string[]

    List of input variables the final prompt will expect.

    prefix?: string

    String to put before the list of tools.

    suffix?: string

    String to put after the list of tools.