EvalRuns API
API for managing EvalRuns resources.
Fields
interface EvalRuns {
name: string;
description?: string;
testIds?: any[];
results?: any[];
startedAt?: string;
completedAt?: string;
}
API Endpoints
GET /api/evalRuns
Retrieves a list of EvalRuns with pagination.
Query Parameters
limit
: Maximum number of items to return (default: 10)page
: Page number for pagination (default: 1)sort
: Field to sort by (default: createdAt)where
: JSON query for filtering results
GET /api/evalRuns/:id
Retrieves a single EvalRuns by ID.
POST /api/evalRuns
Creates a new EvalRuns.
PATCH /api/evalRuns/:id
Updates an existing EvalRuns.
DELETE /api/evalRuns/:id
Deletes a EvalRuns.
Last updated on