Logging
Get all evaluations
GET
/
evaluations
Authorization
curl --request GET \
--url https://api.honeyhive.ai/evaluations \
--header 'Authorization: <authorization>'
[
{
"accepted": [
true
],
"comments": [
{}
],
"created_at": "2023-11-07T05:31:56Z",
"dataset": [
{}
],
"datasetName": "<string>",
"description": "<string>",
"generations": [
{}
],
"id": "<string>",
"metrics": [
[]
],
"name": "<string>",
"prompts": [
{}
],
"results": [
{}
],
"summary": [
{}
],
"task": "<string>",
"user": "<string>"
}
]
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
accepted
boolean[]
Whether each result was accepted
comments
object[]
The comments for the evaluation
created_at
string
dataset
object[]
The dataset for which the evaluation is being created
datasetName
string
The name of the dataset for which the evaluation is being created
description
string
The description of the evaluation
generations
object[]
The completions for prompts that are being evaluated
id
string
The id of the evaluation
metrics
array
The metrics that are computed for the completions
name
string
The name of the evaluation
prompts
object[]
The prompts for which the evaluation is being created
results
object[]
The results of the evaluation
summary
object[]
The metric summary of the evaluation
task
string
The task for which the evaluation is being created
user
string
The user running the evaluation
curl --request GET \
--url https://api.honeyhive.ai/evaluations \
--header 'Authorization: <authorization>'
[
{
"accepted": [
true
],
"comments": [
{}
],
"created_at": "2023-11-07T05:31:56Z",
"dataset": [
{}
],
"datasetName": "<string>",
"description": "<string>",
"generations": [
{}
],
"id": "<string>",
"metrics": [
[]
],
"name": "<string>",
"prompts": [
{}
],
"results": [
{}
],
"summary": [
{}
],
"task": "<string>",
"user": "<string>"
}
]