Reminix TypeScript SDK - v0.7.1
    Preparing search index...

    Function fromAnthropic

    • Create a Reminix Agent from an Anthropic client.

      Parameters

      • client: AnthropicClient

        An Anthropic client instance

      • options: FromAnthropicOptions

        Configuration options

      Returns Agent

      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);