SDK Reference
HumanReviewSets
SDK reference for the HumanReviewSets API, available in Node.js and Python.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Orq MCP is live: Use natural language to interrogate traces, spot regressions, and experiment your way to optimal AI configurations. Available in Claude Desktop, Claude Code, Cursor, and more. Start now →
SDK reference for the HumanReviewSets API, available in Node.js and Python.
from orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.human_review_sets.get_v2_human_eval_sets()
# Handle response
print(res)
Show Parameters
from orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.human_review_sets.post_v2_human_eval_sets()
# Handle response
print(res)
Show Parameters
from orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.human_review_sets.get_v2_human_eval_sets_id_(id="<id>")
# Handle response
print(res)
Show Parameters
from orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.human_review_sets.patch_v2_human_eval_sets_id_(id="<id>")
# Handle response
print(res)
Show Parameters
from orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
orq.human_review_sets.delete_v2_human_eval_sets_id_(id="<id>")
# Use the SDK ...
Show Parameters
Was this page helpful?