| name | perl-ai-langertha |
| description | Langertha LLM framework — Engine creation, Raider autonomous agents, MCP tool integration, plugin system |
Langertha is a Perl LLM framework with provider-agnostic engines, autonomous Raider agents, MCP tool integration, and a plugin pipeline. Use Future::AsyncAwait for async operations.
## Engine Creation
use Langertha::Engine::Anthropic;
my $claude = Langertha::Engine::Anthropic->new(
api_key => $ENV{ANTHROPIC_API_KEY},
model => 'claude-sonnet-4-6',
system_prompt => 'You are helpful.',
);
use Langertha::Engine::OpenAI;
my $gpt = Langertha::Engine::OpenAI->new(
api_key => $ENV{OPENAI_API_KEY},
model => 'gpt-4o',
);
my $local = Langertha::Engine::OllamaOpenAI->new(
url => 'http://localhost:11434/v1',
model => 'llama3',
);
my $proxy = Langertha::Engine::OpenAI->new(
url => 'http://127.0.0.1:5000/api/v1',
model => $model_key,
api_key => 'proxy',
);
Available Engine Families
| Base | Engines |
|---|
| AnthropicBase | Anthropic, MiniMaxAnthropic, LMStudioAnthropic |
| OpenAIBase | OpenAI, DeepSeek, Groq, Mistral, Cerebras, OpenRouter, Replicate, HuggingFace, Perplexity, MiniMax, NousResearch, OllamaOpenAI, vLLM, SGLang, LlamaCpp, LMStudioOpenAI, AKIOpenAI, TSystems, Scaleway |
| TranscriptionBase | Whisper (slim, transcription-only — no chat/tools/embeddings) |
| Other | Gemini (Google), Ollama (native), AKI (EU), LMStudio (native) |
Langertha::Engine::OpenAI exposes a whisper lazy attribute returning a
TranscriptionBase bound to the parent's api_key/url (model whisper-1):
my $text = $openai->whisper->simple_transcription('audio.mp3');
## Capability Queries
Every engine reports its capabilities via Langertha::Role::Capabilities
(composed by Role::Chat, so present on every engine):
$engine->supports('tool_choice_named') or die "engine cannot force named tool";
$engine->supports('response_format_json_schema')
$engine->supports('streaming')
$engine->supports('tools_native')
$engine->supports('tools_hermes')
my $caps = $engine->engine_capabilities;
The flag set is derived from which capability roles the engine composes
(central role→flag map in Role::Capabilities); engines override via
around engine_capabilities for wire-reality corrections.
## chat_f — Single-Turn with Named Args
For structured single-turn calls (no MCP loop), use chat_f:
my $response = await $engine->chat_f(
messages => [ { role => 'user', content => $prompt } ],
tools => [ $tool_hash, ... ],
tool_choice => { type => 'tool', name => 'extract' },
response_format => { type => 'json_schema', json_schema => { ... } },
);
my $tc = $response->tool_call;
my $tc = $response->tool_call('extract');
my $args = $response->tool_call_args('extract');
$tc->name;
$tc->arguments;
$tc->id;
$tc->synthetic;
chat_f auto-rewrites between forms when wire reality requires it:
- forced named tool on engine without
tool_choice_named but with
response_format_json_schema → reroutes via response_format and
loose-parses the result back into a synthetic ToolCall.
For multi-turn MCP tool-calling loops use chat_with_tools_f (next
section) — that's the autonomous loop, chat_f is single-turn.
Decision Matrix
chat_f auto-rewrites between forms when the wire reality demands it.
Every case lands as a Langertha::ToolCall on Response.tool_calls
so callers consume the result the same way regardless of provider.
| Caller passes | Engine has | What chat_f does |
|---|
tools only | tools_native | forward to wire (per-provider via Tool->to_X) |
tools only | only tools_hermes | only via chat_with_tools_f (XML in prompt) |
tools + tool_choice={type=>'tool',name=>X} | tool_choice_named | native forced-name |
tools + tool_choice={type=>'tool',name=>X} | only response_format_json_schema (Perplexity) | auto-rewrite: clears tools/choice, sets response_format=json_schema from tool's schema; loose-parses content; attaches ToolCall with synthetic=>1 |
response_format=json_* | response_format_json_* | native (Gemini→responseSchema, Ollama→format) |
response_format=json_* | only tool_choice_named (Anthropic) | engine-internal: synth tool + forced choice; tool_use input lifted into Response.content as JSON |
mcp_servers set | tools_native or tools_hermes | switch to chat_with_tools_f for multi-turn loop |
Per-Provider Wire Mechanics
| Provider | Tools wire | tool_choice forms | response_format mechanism | Tool calls in response |
|---|
| OpenAIBase family | tools=[{type=>'function',function=>{...}}] | auto/required/none + {type=>'function',function=>{name=>X}} | native response_format (json_object / json_schema) | choices[0].message.tool_calls |
| AnthropicBase family | tools=[{name=>...,input_schema=>...}] | {type=>'auto'/'any'/'none'/'tool',name=>X} | engine-internal: synth tool + forced choice; lift to content | content[*] blocks type=>'tool_use' |
| Gemini | tools=[{functionDeclarations=>[...]}] | toolConfig.functionCallingConfig (mode + allowedFunctionNames) | generationConfig.responseSchema | candidates[0].content.parts[*].functionCall |
| Ollama (native) | OpenAI-shape natively | OpenAI-shape | format='json' or schema HashRef | message.tool_calls |
| Perplexity | NO tools | auto/required/none only (named coerced to required) | native response_format=json_schema | (synthetic via auto-rewrite) |
| Hermes engines | tools injected into system prompt as XML | model decides via prompt | n/a (use response_format on engines that have it too) | <tool_call>...</tool_call> parsed from text |
## Simple Chat
my $response = $engine->simple_chat('What is Perl?');
print $response;
use Future::AsyncAwait;
my $response = await $engine->simple_chat_f('Tell me a story.');
say $response->model;
say $response->prompt_tokens;
say $response->completion_tokens;
say $response->thinking;
Langertha::Response overloads "" so it works in string contexts.
## Tool Calling with MCP
Step 1: Create MCP Server with tools
use MCP::Server;
my $server = MCP::Server->new(name => 'my-tools', version => '1.0');
$server->tool(
name => 'search_files',
description => 'Search for files matching a pattern',
input_schema => {
type => 'object',
properties => {
pattern => { type => 'string', description => 'Glob pattern' },
path => { type => 'string', description => 'Directory to search' },
},
required => ['pattern'],
},
code => sub {
my ($tool, $args) = @_;
my @files = glob("$args->{path}/$args->{pattern}");
return $tool->text_result(join("\n", @files));
},
);
Step 2: Create MCP client
use IO::Async::Loop;
use Net::Async::MCP;
my $loop = IO::Async::Loop->new;
my $mcp = Net::Async::MCP->new(server => $server);
$loop->add($mcp);
await $mcp->initialize;
Step 3: Engine with MCP
my $engine = Langertha::Engine::Anthropic->new(
api_key => $ENV{ANTHROPIC_API_KEY},
model => 'claude-sonnet-4-6',
mcp_servers => [$mcp],
);
my $response = await $engine->chat_with_tools_f('Find all .pm files in lib/');
say $response;
## Raider — Autonomous Agent
use Langertha::Raider;
my $raider = Langertha::Raider->new(
engine => $engine,
mission => 'You are a code reviewer.',
max_iterations => 10,
max_context_tokens => 4000,
context_compress_threshold => 0.75,
compression_engine => $cheap_model,
raider_mcp => 1,
plugins => ['Langfuse'],
);
my $result = await $raider->raid_f('Review lib/App.pm');
say $result;
say $result->is_question;
say $result->is_abort;
my $r2 = await $raider->raid_f('Now suggest improvements.');
if ($result->is_question) {
my $next = await $raider->respond_f('Yes, go ahead.');
}
$raider->add_history('user', $content);
$raider->clear_history;
my $m = $raider->metrics;
say "Iterations: $m->{iterations}";
say "Tool calls: $m->{tool_calls}";
Raid Loop (simplified)
- Auto-compress history if context threshold exceeded
- Gather tools from MCP servers + inline tools + self-tools
- Build conversation: mission + history + new messages
- Call LLM with tools
- If tool calls: execute via MCP, add results to conversation, loop
- If no tool calls: extract final text, persist to history, return result
- Max iterations safety limit
## Plugin System
package Langertha::Plugin::MyGuardrails;
use Langertha qw( Plugin );
async sub plugin_before_tool_call {
my ($self, $name, $input) = @_;
return if $name eq 'dangerous_tool';
return ($name, $input);
}
async sub plugin_after_raid {
my ($self, $result) = @_;
return $result;
}
__PACKAGE__->meta->make_immutable;
my $raider = Langertha::Raider->new(
engine => $engine,
plugins => ['MyGuardrails', 'Langfuse'],
);
Plugin Hooks (all async sub)
| Hook | Purpose |
|---|
plugin_before_raid(@messages) | Transform input |
plugin_build_conversation(@conv) | Transform assembled conversation |
plugin_before_llm_call(@conv, $iter) | Transform before each LLM call |
plugin_after_llm_response($data, $iter) | Inspect LLM response |
plugin_before_tool_call($name, $input) | Allow/block tool (empty = skip) |
plugin_after_tool_call($name, $input, $result) | Transform tool result |
plugin_after_raid($result) | Transform final result |
## Composable Roles
Engines compose feature roles:
| Role | Feature |
|---|
Langertha::Role::Capabilities | engine_capabilities registry + supports($cap) |
Langertha::Role::Chat | simple_chat, simple_chat_f, chat_f (named args), aggregate_tool_calls |
Langertha::Role::Tools | chat_with_tools_f (MCP loop) |
Langertha::Role::HermesTools | XML-tag tool calling for models without native support |
Langertha::Role::ParallelToolUse | parallel_tool_use boolean (canonical name) |
Langertha::Role::Streaming | SSE/NDJSON streaming |
Langertha::Role::Embedding | Vector embeddings |
Langertha::Role::Transcription | Audio-to-text |
Langertha::Role::ImageGeneration | Image generation |
Langertha::Role::SystemPrompt | System prompt management |
Langertha::Role::Temperature | Sampling temperature |
Langertha::Role::Seed | Deterministic seed (seed, randomize_seed) |
Langertha::Role::ContextSize | context_size parameter |
Langertha::Role::ResponseSize | response_size / max_tokens parameter |
Langertha::Role::ResponseFormat | JSON mode / structured output, plus $self->decode_loose_json($text) (overridable) |
Langertha::Role::Models | Model listing |
Langertha::Role::Langfuse | Observability |
Langertha::Role::ThinkTag | Chain-of-thought filtering |
AnthropicBase, Gemini, and Ollama compose ResponseFormat and
translate the OpenAI-shape response_format hash into their native
mechanism: Anthropic emulates via a synthesized tool + forced
tool_choice (then lifts the tool_use input back into Response.content
as JSON); Gemini → generationConfig.responseSchema; Ollama →
format parameter (string 'json' or schema HashRef).
## Value Objects
| Class | Purpose |
|---|
Langertha::Tool | Canonical tool definition. from_openai/from_anthropic/from_mcp/from_gemini/from_hash accept any shape; to_openai/to_anthropic/to_gemini/to_mcp/to_json_schema emit per-provider wire payloads. |
Langertha::ToolChoice | Canonical tool-selection policy (auto/any/none/tool). to_openai/to_anthropic/to_gemini/to_perplexity per-provider serializers. |
Langertha::ToolCall | Tool invocation emitted by an LLM. name, arguments, id, synthetic. from_openai/from_anthropic/from_ollama/from_gemini; extract($raw) pulls every call out of any known response shape. |
Langertha::Content::Image | Provider-agnostic vision input. from_url/from_file/from_data; to_openai/to_anthropic/to_gemini. |
Langertha::Response | LLM response with metadata. Stringifies to content. tool_calls is ArrayRef[Langertha::ToolCall] — single source of truth. |
Langertha::Stream::Chunk | Single streaming chunk. Optional tool_calls for engines that emit them mid-stream; Role::Chat::aggregate_tool_calls(\@chunks) flattens. |
Use these instead of hand-rolled hashes when normalizing across
providers. Tool->from_hash auto-detects MCP camelCase, Anthropic
snake_case, OpenAI envelope, and Gemini-flat shapes.