Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.galtea.ai/llms.txt

Use this file to discover all available pages before exploring further.

Returns

Returns a list of InferenceResult objects.

Example

inference_result = galtea.inference_results.list(session_id=session_id)

Parameters

session_id
string | list[string]
The ID or IDs of the session(s) to get inference results for.
from_created_at
str | int
default:"None"
Filter inference results created at or after this timestamp. Accepts ISO 8601 string (e.g., '2024-01-01T00:00:00Z') or Unix timestamp in seconds. Can be used independently or together with to_created_at.
to_created_at
str | int
default:"None"
Filter inference results created at or before this timestamp. Accepts ISO 8601 string (e.g., '2024-12-31T23:59:59Z') or Unix timestamp in seconds. Can be used independently or together with from_created_at.
sort_by_created_at
string
Sort inference results by creation date. Valid values are “asc” and “desc”.
offset
int
default:"0"
Number of inference results to skip before starting to collect results. Use for pagination.Default: 0 (start from the beginning)
limit
int
default:"10000"
Maximum number of inference results to return in a single request.Default: 10000
id
string | list[string]
default:"None"
The ID or IDs of the inference result(s) to retrieve.
At least one of the 2 filter parameters (session_id, id) described above must be passed to the method