curl --request POST \
--url https://api.helicone.ai/v1/experiment/hypothesis \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"status": "PENDING",
"providerKeyId": "<string>",
"promptVersion": "<string>",
"model": "<string>",
"experimentId": "<string>"
}'
{
"data": {
"hypothesisId": "<string>"
}
}
Create a new hypothesis for testing in an experiment
curl --request POST \
--url https://api.helicone.ai/v1/experiment/hypothesis \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '{
"status": "PENDING",
"providerKeyId": "<string>",
"promptVersion": "<string>",
"model": "<string>",
"experimentId": "<string>"
}'
{
"data": {
"hypothesisId": "<string>"
}
}
eu.api.helicone.ai
instead of
api.helicone.ai
.Ok
The response is of type object
.
Was this page helpful?