LemurQuestionAnswerResponse: {
    request_id: string;
    response: LemurQuestionAnswer[];
    usage: LemurUsage;
}

Type declaration

  • request_id: string

    The ID of the LeMUR request

  • response: LemurQuestionAnswer[]

    The answers generated by LeMUR and their questions

  • usage: LemurUsage

    The usage numbers for the LeMUR request

{
"request_id": "5e1b27c2-691f-4414-8bc5-f14678442f9e",
"response": [
{
"answer": "CA, US",
"question": "Where are there wildfires?"
},
{
"answer": "yes",
"question": "Is global warming affecting wildfires?"
}
],
"usage": {
"input_tokens": 27,
"output_tokens": 3
}
}