Human Review Sets
List Human Review Sets
Get all human review setsfrom orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.human_review_sets.list()
# Handle response
print(res)
import { Orq } from "@orq-ai/node";
const orq = new Orq({
apiKey: process.env["ORQ_API_KEY"] ?? "",
});
async function run() {
const result = await orq.humanReviewSets.list();
console.log(result);
}
run();
Show Parameters
Show Parameters
{
"project_id": Optional[str],
}
{
projectId?: string;
}
Create a Human Review Set
Create a human review setfrom orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.human_review_sets.create()
# Handle response
print(res)
import { Orq } from "@orq-ai/node";
const orq = new Orq({
apiKey: process.env["ORQ_API_KEY"] ?? "",
});
async function run() {
const result = await orq.humanReviewSets.create();
console.log(result);
}
run();
Show Parameters
Show Parameters
{
"display_name": str, # required
"description": Optional[str],
"human_eval_ids": List[str], # required
"project_id": Optional[str],
"filter_type": Literal["span_type"], # required
"filter_values": List[str], # required
}
{
displayName: string; // required
description?: string;
humanEvalIds: string[]; // required
projectId?: string;
filterType: "span_type"; // required
filterValues: string[]; // required
}
Show Response
Show Response
{
"id": str,
"display_name": str,
"description": Optional[str],
"human_eval_ids": List[str],
"workspace_id": str,
"project_id": Optional[str],
"created_by_id": Optional[str],
"updated_by_id": Optional[str],
"created": date, # optional
"updated": date, # optional
"filter_type": Literal["span_type"],
"filter_values": List[str],
}
{
id: string;
displayName: string;
description?: string;
humanEvalIds: string[];
workspaceId: string;
projectId?: string;
createdById?: string;
updatedById?: string;
created?: Date;
updated?: Date;
filterType: "span_type";
filterValues: string[];
}
Retrieve a Human Review Set
Get a human review set by IDfrom orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.human_review_sets.get(id="<id>")
# Handle response
print(res)
import { Orq } from "@orq-ai/node";
const orq = new Orq({
apiKey: process.env["ORQ_API_KEY"] ?? "",
});
async function run() {
const result = await orq.humanReviewSets.get({
id: "<id>",
});
console.log(result);
}
run();
Show Parameters
Show Parameters
{
"id": str, # required
}
{
id: string; // required
}
Show Response
Show Response
{
"id": str,
"display_name": str,
"description": Optional[str],
"human_eval_ids": List[str],
"workspace_id": str,
"project_id": Optional[str],
"created_by_id": Optional[str],
"updated_by_id": Optional[str],
"created": date, # optional
"updated": date, # optional
"filter_type": Literal["span_type"],
"filter_values": List[str],
}
{
id: string;
displayName: string;
description?: string;
humanEvalIds: string[];
workspaceId: string;
projectId?: string;
createdById?: string;
updatedById?: string;
created?: Date;
updated?: Date;
filterType: "span_type";
filterValues: string[];
}
Update a Human Review Set
Update a human review setfrom orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
res = orq.human_review_sets.update(id="<id>")
# Handle response
print(res)
import { Orq } from "@orq-ai/node";
const orq = new Orq({
apiKey: process.env["ORQ_API_KEY"] ?? "",
});
async function run() {
const result = await orq.humanReviewSets.update({
id: "<id>",
});
console.log(result);
}
run();
Show Parameters
Show Parameters
{
"id": str, # required
"request_body": Union[PatchV2HumanEvalSetsIDRequestBody1, PatchV2HumanEvalSetsIDRequestBody2], # optional
}
{
id: string; // required
requestBody?: PatchV2HumanEvalSetsIdRequestBody1 | PatchV2HumanEvalSetsIdRequestBody2;
}
Show Response
Show Response
{
"id": str,
"display_name": str,
"description": Optional[str],
"human_eval_ids": List[str],
"workspace_id": str,
"project_id": Optional[str],
"created_by_id": Optional[str],
"updated_by_id": Optional[str],
"created": date, # optional
"updated": date, # optional
"filter_type": Literal["span_type"],
"filter_values": List[str],
}
{
id: string;
displayName: string;
description?: string;
humanEvalIds: string[];
workspaceId: string;
projectId?: string;
createdById?: string;
updatedById?: string;
created?: Date;
updated?: Date;
filterType: "span_type";
filterValues: string[];
}
Delete a Human Review Set
Delete a human review setfrom orq_ai_sdk import Orq
import os
with Orq(
api_key=os.getenv("ORQ_API_KEY", ""),
) as orq:
orq.human_review_sets.delete(id="<id>")
# Use the SDK ...
import { Orq } from "@orq-ai/node";
const orq = new Orq({
apiKey: process.env["ORQ_API_KEY"] ?? "",
});
async function run() {
await orq.humanReviewSets.delete({
id: "<id>",
});
}
run();
Show Parameters
Show Parameters
{
"id": str, # required
}
{
id: string; // required
}