Skip to content

Latest commit

 

History

History
80 lines (51 loc) · 2.06 KB

README.md

File metadata and controls

80 lines (51 loc) · 2.06 KB

Dart Anthropic API Package

This Dart package provides idiomatic access to the Anthropic Claude LLM's for both Dart and Flutter applications. Anthropic AI is a powerful platform for artificial intelligence and machine learning tasks, and this package simplifies integration with your Dart and Flutter projects.

The package hides the messy details of the Anthropic REST API and lets you work with nice statically typed Dart classes.

  • Request
  • RequestWithImages
  • Response
  • AnthropicService

Installation

Add the following to your pubspec.yaml:

dependencies:
  claude_dart_flutter: ^1.0.0+1

Then, run:

$ flutter pub get

Usage

Import the package where you need to use it:

import 'package:claude_dart_flutter/claude_dart_flutter.dart';

Initialize the Anthropic API client with your API key:

final service = AnthropicService(apiKey: 'your_api_key');

Now you can use the various methods provided by the Anthropic API. For example:

Send a request to the Anthropic completions endpoint.

var request = Request();
final Response response = await service.sendRequest(request); 
Send a request to the Anthropic text and image completions endpoint.

```dart
var request = RequestWithImages();
final Response response = await service.sendRequestWithImages(request); 

A quick way to check whether things are cool is by sending a Hello request to the Anthropic Chat Completions endpoint.

final List<Response> response = await service.sendHello(); 

Authentication

You need an API key from Anthropic AI to use this package. Get registered and get an API key here: Anthropic AI Website

Example

You can find a simple example in the example directory of this repository.

Issues and Feedback

Please file any issues, bugs, or feature requests in the issue tracker.

License

This package is licensed under the MIT License. See the LICENSE file for details.