Client¶
The Reminix API client for making requests to the Reminix platform.
Installation¶
pip install reminix
Quick Start¶
from reminix.client import Client
client = Client(api_key="reminix_sk_...")
# Get project info
project = client.project.get()
# Invoke an agent
result = client.agents.invoke("my-agent", {"task": "analyze"})
Client¶
Main client for interacting with the Reminix API |
|
Configuration for the Reminix SDK client |
Resources¶
Operations for agents. |
|
Operations for project. |
Exceptions¶
Base exception for all Reminix SDK errors |
|
Exception raised when an API request fails |
|
Exception raised when authentication fails (401/403) |
|
Exception raised when a network error occurs |
Pagination¶
Response from a paginated API endpoint |
|
Iterator helper for auto-pagination. |
|
Collect all items from paginated endpoint into a list. |