curl --request POST \
  --url https://api.honeyhive.ai/metrics \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "criteria": "<string>",
  "code_snippet": "<string>",
  "prompt": "<string>",
  "task": "<string>",
  "type": "custom",
  "description": "<string>",
  "enabled_in_prod": true,
  "needs_ground_truth": true,
  "return_type": "boolean",
  "threshold": {
    "min": 123,
    "max": 123
  },
  "pass_when": true,
  "_id": "<string>",
  "event_name": "<string>",
  "event_type": "<string>"
}'

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

Name of the metric

criteria
string

Criteria for human metrics

code_snippet
string

Associated code block for the metric

prompt
string

Evaluator prompt for the metric

task
string
required

Name of the project associated with metric

type
enum<string>
required

Type of the metric - "custom", "model" or "human"

Available options:
custom,
model,
human
description
string
required

Short description of what the metric does

enabled_in_prod
boolean

Whether to compute on all production events automatically

needs_ground_truth
boolean

Whether a ground truth (on metadata) is required to compute it

return_type
enum<string>
required

The data type of the metric value - "boolean", "float", "string"

Available options:
boolean,
float,
string
threshold
object

Threshold for numeric metrics to decide passing or failing in tests

pass_when
boolean

Threshold for boolean metrics to decide passing or failing in tests

_id
string

Unique idenitifier

event_name
string

Name of event that the metric is set to be computed on

event_type
string

Type of event that the metric is set to be computed on