Member Junction
    Preparing search index...

    Simple return structure for prompt execution

    interface SimpleExecutePromptResult {
        modelName: string;
        result: string;
        resultObject?: any;
        success: boolean;
    }
    Index

    Properties

    modelName: string

    The model that was used for the response

    result: string

    Raw string result

    resultObject?: any

    If the result was JSON or contained JSON anywhere within it that could be parsed, this will contain the JSON object

    success: boolean