import honeyhive
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.runs.get_runs(project='<value>')
if res.get_runs_response is not None:
# handle response
pass{
"evaluations": [
{
"run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"project": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"event_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataset_id": "<string>",
"datapoint_ids": [
"<string>"
],
"results": {},
"configuration": {},
"metadata": {},
"status": "pending",
"name": "<string>"
}
]
}import honeyhive
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.runs.get_runs(project='<value>')
if res.get_runs_response is not None:
# handle response
pass{
"evaluations": [
{
"run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"project": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"event_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"dataset_id": "<string>",
"datapoint_ids": [
"<string>"
],
"results": {},
"configuration": {},
"metadata": {},
"status": "pending",
"name": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
Show child attributes
The UUID of the run
The UUID of the project this run is associated with
The date and time the run was created
The UUIDs of the sessions/events this run is associated with
The UUID of the dataset this run is associated with
The UUIDs of the datapoints from the original dataset this run is associated with
The results of the evaluation (including pass/fails and metric aggregations)
The configuration being used for this run
Additional metadata for the run
pending, completed The name of the run to be displayed
Was this page helpful?