HumanReviewSets
List HumanReviewSets
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 HumanReviewSet
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
}
{
display_name: string; // required
description?: string | undefined;
human_eval_ids: string[]; // required
project_id?: string | undefined;
filter_type: "span_type"; // required
filter_values: 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,
"updated": date,
"filter_type": Literal["span_type"],
"filter_values": List[str],
}
{
id: string;
display_name: string;
description?: string | undefined;
human_eval_ids: string[];
workspace_id: string;
project_id?: string | undefined;
created_by_id?: string | undefined;
updated_by_id?: string | undefined;
created?: date;
updated?: date;
filter_type: "span_type";
filter_values: string[];
}
Retrieve a HumanReviewSet
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,
"updated": date,
"filter_type": Literal["span_type"],
"filter_values": List[str],
}
{
id: string;
display_name: string;
description?: string | undefined;
human_eval_ids: string[];
workspace_id: string;
project_id?: string | undefined;
created_by_id?: string | undefined;
updated_by_id?: string | undefined;
created?: date;
updated?: date;
filter_type: "span_type";
filter_values: string[];
}
Update a HumanReviewSet
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],
}
{
id: string; // required
requestBody?: string;
}
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,
"updated": date,
"filter_type": Literal["span_type"],
"filter_values": List[str],
}
{
id: string;
display_name: string;
description?: string | undefined;
human_eval_ids: string[];
workspace_id: string;
project_id?: string | undefined;
created_by_id?: string | undefined;
updated_by_id?: string | undefined;
created?: date;
updated?: date;
filter_type: "span_type";
filter_values: string[];
}
Delete a HumanReviewSet
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
}