evaluation templates
List evaluation templates evaluation templates
Public endpoint (no bearer token required).
GET
/
api
/
evaluation-templates
List evaluation templates evaluation templates
curl --request GET \
--url https://evalgate.com/api/evaluation-templatesimport requests
url = "https://evalgate.com/api/evaluation-templates"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://evalgate.com/api/evaluation-templates', 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/evaluation-templates",
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/evaluation-templates"
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/evaluation-templates")
.asString();require 'uri'
require 'net/http'
url = URI("https://evalgate.com/api/evaluation-templates")
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{
"templates": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"category": "<string>",
"testCases": [
{
"input": "<string>",
"expectedOutput": "<string>",
"rubric": "<string>",
"metadata": {}
}
],
"complexity": "intermediate",
"source": "catalog",
"code": "<string>",
"type": "human_eval",
"judgePrompt": "<string>",
"humanEvalCriteria": [
{
"name": "<string>",
"description": "<string>",
"scale": "<string>"
}
],
"estimatedTime": "<string>",
"rubric": "<string>"
}
],
"total": 123,
"categories": [
{
"id": "<string>",
"name": "<string>",
"description": "<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
List evaluation templates evaluation templates
curl --request GET \
--url https://evalgate.com/api/evaluation-templatesimport requests
url = "https://evalgate.com/api/evaluation-templates"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://evalgate.com/api/evaluation-templates', 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/evaluation-templates",
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/evaluation-templates"
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/evaluation-templates")
.asString();require 'uri'
require 'net/http'
url = URI("https://evalgate.com/api/evaluation-templates")
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{
"templates": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"category": "<string>",
"testCases": [
{
"input": "<string>",
"expectedOutput": "<string>",
"rubric": "<string>",
"metadata": {}
}
],
"complexity": "intermediate",
"source": "catalog",
"code": "<string>",
"type": "human_eval",
"judgePrompt": "<string>",
"humanEvalCriteria": [
{
"name": "<string>",
"description": "<string>",
"scale": "<string>"
}
],
"estimatedTime": "<string>",
"rubric": "<string>"
}
],
"total": 123,
"categories": [
{
"id": "<string>",
"name": "<string>",
"description": "<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"
}
}