Packages

Gleam SDK for the Anthropic Claude API with agentic tool-use loop and BEAM concurrency

Current section

Files

Jump to
claude_gleam include claude@types@tool_Tool.hrl
Raw

include/claude@types@tool_Tool.hrl

-record(tool, {
name :: binary(),
description :: binary(),
params_schema :: glon:json_schema(any()),
execute :: fun((any()) -> {ok, binary()} | {error, binary()})
}).