hallucination-score-evaluator

LLMの生成結果の正確度を計測します。

HTTP request

POST: https://api.staging.alt.ai/hallucination-score-evaluator

REQUEST BODY SCHEMA

JSON 表現
{
  "question": "string",
  "response": "string"
}
questionstring
LLMへの質問文章
responsestring
LLMからの生成結果文章

RESPONSE

EXAMPLE

JSON 表現
{
  "result": {
    "score": 0,
    "reasons": [
      "string"
    ]
  }
}

RESPONSE SCHEMA

resultobject
Example:"Response example value"
;