From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

our $AUTHORITY = 'cpan:GETTY';
# ABSTRACT: Anthropic API
$Langertha::Engine::Anthropic::VERSION = '0.007';
use Moose;
use Carp qw( croak );
with 'Langertha::Role::'.$_ for (qw(
JSON
HTTP
Models
Chat
Temperature
ResponseSize
SystemPrompt
));
sub default_response_size { 1024 }
has api_key => (
is => 'ro',
lazy_build => 1,
);
sub _build_api_key {
my ( $self ) = @_;
return $ENV{LANGERTHA_ANTHROPIC_API_KEY}
|| croak "".(ref $self)." requires LANGERTHA_ANTHROPIC_API_KEY or api_key set";
}
has api_version => (
is => 'ro',
lazy_build => 1,
);
sub _build_api_version { '2023-06-01' }
sub update_request {
my ( $self, $request ) = @_;
$request->header('x-api-key', $self->api_key);
$request->header('content-type', 'application/json');
$request->header('anthropic-version', $self->api_version);
}
has '+url' => (
lazy => 1,
default => sub { 'https://api.anthropic.com' },
);
sub has_url { 1 }
sub default_model { 'claude-3-5-sonnet-20240620' }
sub chat_request {
my ( $self, $messages, %extra ) = @_;
my @msgs;
my $system = "";
for my $message (@{$messages}) {
if ($message->{role} eq 'system') {
$system .= "\n\n" if length $system;
$system .= $message->{content};
} else {
push @msgs, $message;
}
}
if ($system and scalar @msgs == 0) {
push @msgs, {
role => 'user',
content => $system,
};
$system = undef;
}
return $self->generate_http_request( POST => $self->url.'/v1/messages', sub { $self->chat_response(shift) },
model => $self->chat_model,
messages => \@msgs,
max_tokens => $self->get_response_size, # must be always set
$self->has_temperature ? ( temperature => $self->temperature ) : (),
$system ? ( system => $system ) : (),
%extra,
);
}
sub chat_response {
my ( $self, $response ) = @_;
my $data = $self->parse_response($response);
# tracing
my @messages = @{$data->{content}};
return $messages[0]->{text};
}
__PACKAGE__->meta->make_immutable;
__END__
=pod
=encoding UTF-8
=head1 NAME
Langertha::Engine::Anthropic - Anthropic API
=head1 VERSION
version 0.007
=head1 SYNOPSIS
use Langertha::Anthropic;
my $claude = Langertha::Engine::Anthropic->new(
api_key => $ENV{ANTHROPIC_API_KEY},
model => 'claude-3-5-sonnet-20240620',
response_size => 512,
temperature => 0.5,
);
print($claude->simple_chat('Generate Perl Moose classes to represent GeoJSON data types'));
=head1 DESCRIPTION
B<THIS API IS WORK IN PROGRESS>
=head1 HOW TO GET ANTHROPIC API KEY
=for :stopwords cpan testmatrix url bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
=head1 SUPPORT
=head2 Source Code
The code is open to the world, and available for you to hack on. Please feel free to browse it and play
with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull
from your repository :)
=head1 AUTHOR
Torsten Raudssus <torsten@raudssus.de> L<https://raudss.us/>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2024 by Torsten Raudssus.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut