LemurQuestion: {
    answer_format?: string;
    answer_options?: string[];
    context?: OneOf<[string, {
        [key: string]: unknown;
    }]>;
    question: string;
}

Type declaration

  • Optionalanswer_format?: string

    How you want the answer to be returned. This can be any text. Can't be used with answer_options. Examples: "short sentence", "bullet points"

  • Optionalanswer_options?: string[]

    What discrete options to return. Useful for precise responses. Can't be used with answer_format. Example: ["Yes", "No"]

  • Optionalcontext?: OneOf<[string, {
        [key: string]: unknown;
    }]>

    Any context about the transcripts you wish to provide. This can be a string or any object.

  • question: string

    The question you wish to ask. For more complex questions use default model.

{
"question": "Where are there wildfires?",
"answer_format": "List of countries in ISO 3166-1 alpha-2 format"
}