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.

The Product Service in the Galtea SDK allows you to manage products that you want to evaluate. This Service is exposed by the galtea.products object.
Remember that we will be using the galtea object. More information here.
Product registration isn’t supported via the SDK, so you’ll need to do this from the dashboard.

Quick Example

First, initialize the Galtea SDK:
galtea = Galtea(api_key="YOUR_API_KEY")
List all products:
products = galtea.products.list(limit=10)
Get a product by ID:
product = galtea.products.get(product_id=product_id)
Get a product by name:
product = galtea.products.get_by_name(name=product_name)
Products must be registered through the Galtea Dashboard. The SDK provides read-only access.

Service Methods

Product

A functionality or service being evaluated