Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Generate eval rubric from feedback items using LLM rewrite (no DB save).
Python
import requests url = "https://www.datalab.to/api/v1/eval_rubrics/generate_from_feedback" payload = { "feedback_items": [ { "content_snippet": "<string>", "feedback": "<string>", "block_id": "<string>", "block_type": "<string>", "page_number": 123, "expected_output": "<string>" } ] } headers = { "X-API-Key": "<api-key>", "Content-Type": "application/json" } response = requests.post(url, json=payload, headers=headers) print(response.text)
{ "eval_definition": {} }
1 - 20
Show child attributes
Successful Response
Was this page helpful?