An Anthropic client instance
Configuration options
A Reminix Agent that wraps the Anthropic client
import Anthropic from '@anthropic-ai/sdk';
import { fromAnthropic } from '@reminix/adapters/anthropic';
import { serve } from '@reminix/runtime';
const client = new Anthropic();
const agent = fromAnthropic(client, {
name: 'claude-agent',
model: 'claude-sonnet-4-20250514',
system: 'You are a helpful assistant.',
});
serve(agent);
Create a Reminix Agent from an Anthropic client.