Events
Datapoints
Datasets
Projects
Experiments
Update an evaluation run
PUT
/
runs
/
{run_id}
Copy
Ask AI
import honeyhive
from honeyhive.models import components
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.runs.update_run(run_id='<value>', update_run_request=components.UpdateRunRequest())
if res.update_run_response is not None:
# handle response
pass
Copy
Ask AI
{
"evaluation": {},
"warning": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Response
200
application/json
Successful response
The response is of type object
.
Was this page helpful?
Copy
Ask AI
import honeyhive
from honeyhive.models import components
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.runs.update_run(run_id='<value>', update_run_request=components.UpdateRunRequest())
if res.update_run_response is not None:
# handle response
pass
Copy
Ask AI
{
"evaluation": {},
"warning": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.