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 Model objects matching the given filters.

Example

models = galtea.models.list(
    sort_by_created_at="desc",
    limit=10,
)

Parameters

ids
list[string]
Filter by model IDs.
organization_ids
list[string]
Filter by organization IDs.
names
list[string]
Filter by exact model names.
name
string
Filter by partial name match.
include_default_entities
bool
Include default/predefined models in the results.
include_own_entities
bool
Include models owned by the user’s organization.
from_created_at
str | int
Filter models created at or after this timestamp. Accepts ISO 8601 string (e.g., '2024-01-01T00:00:00Z') or Unix timestamp in seconds.
to_created_at
str | int
Filter models created at or before this timestamp. Accepts ISO 8601 string (e.g., '2024-12-31T23:59:59Z') or Unix timestamp in seconds.
sort_by_created_at
string
Sort by creation date. Valid values: asc, desc.
offset
int
Number of results to skip before starting to collect. Use for pagination.
limit
int
Maximum number of results to return in a single request.