Installation
Usage
Async Client
The SDK ships with a fully async client for use in async applications.Configuration
Your project API key or personal access token. Can also be set via the
REMINIX_API_KEY environment variable.API base URL. Defaults to
https://api.reminix.com/v1.Request timeout in seconds. Defaults to
60.Headers included in every request. Use for PAT authentication with the
X-Project header.Environment Variables
You can set your API key as an environment variable instead of passing it directly.When the
api_key parameter is omitted, the SDK automatically reads from the REMINIX_API_KEY environment variable.Framework Packages
Reminix provides optional integration packages for popular AI frameworks. Install them alongside the base SDK to use framework-specific helpers with your Reminix agents.| Package | Framework | Also in TypeScript? |
|---|---|---|
reminix-openai | OpenAI integration | Yes |
reminix-anthropic | Anthropic integration | Yes |
reminix-langchain | LangChain integration | Yes |
reminix-google | Google AI integration | Yes |
The Vercel AI SDK integration (
@reminix/vercel-ai) is TypeScript-only.Next steps
invoke()
Call task agents and stream results.
chat()
Build multi-turn conversations.
Creating Agents
Define and serve agents from your own code.
Error Handling
Catch typed exceptions and add retries.