Returns
Returns an Evaluation object for the given evaluation ID.Example
Parameters
string
required
The ID of the evaluation you want to retrieve.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a specific evaluation by its ID.
evaluation = galtea.evaluations.get(evaluation_id=evaluation_id)
| Error | Cause |
|---|---|
EntityNotFoundException | The platform holds nothing under the id or name you passed. Import it with from galtea import EntityNotFoundException. Read the status from e.status_code. When the API answered 404 the SDK raises the subclass EntityNotFoundHTTPError, which also derives from requests.HTTPError and carries e.response, so code catching requests.HTTPError keeps working. |