llm_claude 0.5.0 copy "llm_claude: ^0.5.0" to clipboard
llm_claude: ^0.5.0 copied to clipboard

Anthropic Claude API backend for LLM interactions. Provides streaming chat and tool calling via the Anthropic Messages API.

example/README.md

llm_claude examples #

CLI #

export ANTHROPIC_API_KEY=sk-ant-...
dart run example/cli_example.dart
dart run example/cli_example.dart claude-sonnet-5

Minimal usage #

import 'package:llm_claude/llm_claude.dart';

final repo = ClaudeChatRepository(apiKey: Platform.environment['ANTHROPIC_API_KEY']!);

final stream = repo.streamChat('claude-opus-5', messages: [
  LLMMessage(role: LLMRole.user, content: 'Hello!'),
]);

await for (final chunk in stream) {
  stdout.write(chunk.message?.content ?? '');
}

Thinking #

llm_claude picks the thinking shape from the model id — adaptive on current models, a token budget on older ones — so the same call works on both:

repo.streamChat(
  'claude-opus-5',
  messages: messages,
  options: const LLMChatOptions(think: true),
);

Thinking text arrives on chunk.message.thinking, separate from content.

Structured output #

repo.streamChat(
  'claude-opus-5',
  messages: messages,
  options: const LLMChatOptions(
    responseFormat: JsonSchemaFormat(
      name: 'person',
      schema: {
        'type': 'object',
        'properties': {'name': {'type': 'string'}},
        'required': ['name'],
      },
    ),
  ),
);

On models that support it this constrains decoding via output_config; older models fall back to a system-prompt instruction.

Integration environment #

export ANTHROPIC_API_KEY=sk-ant-...
export ANTHROPIC_CHAT_MODEL=claude-haiku-4-5-20251001
0
likes
160
points
330
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Anthropic Claude API backend for LLM interactions. Provides streaming chat and tool calling via the Anthropic Messages API.

Repository (GitHub)
View/report issues
Contributing

Topics

#anthropic #claude #llm #ai #chat

License

MIT (license)

Dependencies

http, llm_core

More

Packages that depend on llm_claude