eval packs
Get eval packs packId
Public endpoint (no bearer token required).
GET
/
api
/
eval-packs
/
{packId}
Get eval packs packId
curl --request GET \
--url https://evalgate.com/api/eval-packs/{packId}import requests
url = "https://evalgate.com/api/eval-packs/{packId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://evalgate.com/api/eval-packs/{packId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://evalgate.com/api/eval-packs/{packId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://evalgate.com/api/eval-packs/{packId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://evalgate.com/api/eval-packs/{packId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://evalgate.com/api/eval-packs/{packId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"pack": {
"schemaVersion": "evalgate.eval-pack.v1",
"id": "<string>",
"version": "<string>",
"name": "<string>",
"domain": "healthcare",
"summary": "<string>",
"riskNotice": "<string>",
"jurisdictions": [
"<string>"
],
"tags": [
"<string>"
],
"releaseGate": {
"minimumScenarioPassRate": 123,
"minimumCriterionPassRate": 123,
"requireAllCritical": true,
"maxCriticalFailures": 0,
"minimumJudgeAgreement": 123
},
"scenarios": [
{
"id": "<string>",
"title": "<string>",
"stage": "build",
"difficulty": "intermediate",
"riskTier": "high",
"instructions": "<string>",
"fixtures": [
{
"id": "<string>",
"title": "<string>",
"mimeType": "text/plain",
"content": "<string>",
"provenance": {
"source": "evalgate_first_party_synthetic",
"fictional": true,
"createdFor": "<string>"
}
}
],
"deliverables": [
"<string>"
],
"criteria": [
{
"id": "<string>",
"title": "<string>",
"evaluator": "trajectory",
"critical": true,
"weight": 123,
"matchCriteria": "<string>",
"deliverables": [
"<string>"
],
"sources": [
"<string>"
],
"assertion": {
"operator": "includes_all",
"values": [
"<string>"
],
"caseSensitive": true
},
"trajectory": {
"requiredTools": [
"<string>"
],
"forbiddenTools": [
"<string>"
],
"maxToolCalls": 123
}
}
],
"adversarialVariants": [
{
"id": "<string>",
"description": "<string>",
"expectedBehavior": "<string>"
}
]
}
]
},
"manifestHash": "<string>"
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}⌘I
Get eval packs packId
curl --request GET \
--url https://evalgate.com/api/eval-packs/{packId}import requests
url = "https://evalgate.com/api/eval-packs/{packId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://evalgate.com/api/eval-packs/{packId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://evalgate.com/api/eval-packs/{packId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://evalgate.com/api/eval-packs/{packId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://evalgate.com/api/eval-packs/{packId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://evalgate.com/api/eval-packs/{packId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"pack": {
"schemaVersion": "evalgate.eval-pack.v1",
"id": "<string>",
"version": "<string>",
"name": "<string>",
"domain": "healthcare",
"summary": "<string>",
"riskNotice": "<string>",
"jurisdictions": [
"<string>"
],
"tags": [
"<string>"
],
"releaseGate": {
"minimumScenarioPassRate": 123,
"minimumCriterionPassRate": 123,
"requireAllCritical": true,
"maxCriticalFailures": 0,
"minimumJudgeAgreement": 123
},
"scenarios": [
{
"id": "<string>",
"title": "<string>",
"stage": "build",
"difficulty": "intermediate",
"riskTier": "high",
"instructions": "<string>",
"fixtures": [
{
"id": "<string>",
"title": "<string>",
"mimeType": "text/plain",
"content": "<string>",
"provenance": {
"source": "evalgate_first_party_synthetic",
"fictional": true,
"createdFor": "<string>"
}
}
],
"deliverables": [
"<string>"
],
"criteria": [
{
"id": "<string>",
"title": "<string>",
"evaluator": "trajectory",
"critical": true,
"weight": 123,
"matchCriteria": "<string>",
"deliverables": [
"<string>"
],
"sources": [
"<string>"
],
"assertion": {
"operator": "includes_all",
"values": [
"<string>"
],
"caseSensitive": true
},
"trajectory": {
"requiredTools": [
"<string>"
],
"forbiddenTools": [
"<string>"
],
"maxToolCalls": 123
}
}
],
"adversarialVariants": [
{
"id": "<string>",
"description": "<string>",
"expectedBehavior": "<string>"
}
]
}
]
},
"manifestHash": "<string>"
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}{
"error": {
"message": "<string>",
"details": "<unknown>",
"requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}