cURL
curl --request POST \ --url https://api.example.com/v2/{entity}/{project}/evaluation_runs \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "evaluation": "<string>", "model": "<string>" } '
{ "evaluation_run_id": "<string>" }
Create an evaluation run.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Reference to the evaluation (weave:// URI)
Reference to the model (weave:// URI)
Successful Response
The ID of the created evaluation run
Was this page helpful?