Class: LLM::Anthropic
- Defined in:
- lib/llm/providers/anthropic.rb,
lib/llm/providers/anthropic/files.rb,
lib/llm/providers/anthropic/models.rb,
lib/llm/providers/anthropic/error_handler.rb,
lib/llm/providers/anthropic/stream_parser.rb,
lib/llm/providers/anthropic/request_adapter.rb,
lib/llm/providers/anthropic/response_adapter.rb
Overview
The Anthropic class implements a provider for Anthropic.
Defined Under Namespace
Constant Summary collapse
- HOST =
-
"api.anthropic.com"
Instance Method Summary collapse
-
#web_search(query:)
⇒ LLM::Response
A convenience method for performing a web search using the Anthropic web search tool.
-
#name ⇒
Symbol
Returns the provider's name.
-
#complete(prompt,
params = {}) ⇒ LLM::Response
Provides an interface to the chat completions API.
-
#models ⇒
LLM::Anthropic::Models
Provides an interface to Anthropic's models API.
-
#files ⇒
LLM::Anthropic::Files
Provides an interface to Anthropic's files API.
-
#assistant_role
⇒ String
Returns the role of the assistant in the conversation.
-
#default_model ⇒
String
Returns the default model for chat completions.
- #server_tools ⇒ String => LLM::ServerTool
-
#initialize ⇒
Anthropic constructor
A new instance of Anthropic.
Methods inherited from Provider
#audio, #chat, clients, #developer_role, #embed, #images, #inspect, #moderations, #persist!, #respond, #responses, #schema, #server_tool, #system_role, #tool_role, #tracer, #tracer=, #user_role, #vector_stores, #with
Constructor Details
Instance Method Details
#web_search(query:) ⇒ LLM::Response
A convenience method for performing a web search using the Anthropic web search tool.
114 115 116 |
# File 'lib/llm/providers/anthropic.rb', line 114 def web_search(query:) ResponseAdapter.adapt(complete(query, tools: [server_tools[:web_search]]), type: :web_search) end |
#name ⇒ Symbol
Returns the provider's name
36 37 38 |
# File 'lib/llm/providers/anthropic.rb', line 36 def name :anthropic end |
#complete(prompt, params = {}) ⇒ LLM::Response
Provides an interface to the chat completions API
50 51 52 53 54 55 56 57 58 |
# File 'lib/llm/providers/anthropic.rb', line 50 def complete(prompt, params = {}) params, stream, tools, role = normalize_complete_params(params) req = build_complete_request(prompt, params, role) res, span, tracer = execute(request: req, stream: stream, operation: "chat", model: params[:model]) res = ResponseAdapter.adapt(res, type: :completion) .extend(Module.new { define_method(:__tools__) { tools } }) tracer.on_request_finish(operation: "chat", model: params[:model], res:, span:) res end |
#models ⇒ LLM::Anthropic::Models
Provides an interface to Anthropic's models API
64 65 66 |
# File 'lib/llm/providers/anthropic.rb', line 64 def models LLM::Anthropic::Models.new(self) end |
#files ⇒ LLM::Anthropic::Files
Provides an interface to Anthropic's files API
72 73 74 |
# File 'lib/llm/providers/anthropic.rb', line 72 def files LLM::Anthropic::Files.new(self) end |
#assistant_role ⇒ String
Returns the role of the assistant in the conversation. Usually "assistant" or "model"
78 79 80 |
# File 'lib/llm/providers/anthropic.rb', line 78 def assistant_role "assistant" end |
#default_model ⇒ String
Returns the default model for chat completions
86 87 88 |
# File 'lib/llm/providers/anthropic.rb', line 86 def default_model "claude-sonnet-4-20250514" end |
#server_tools ⇒ String => LLM::ServerTool
This method includes certain tools that require configuration through a set of options that are easier to set through the LLM::Provider#server_tool method.
97 98 99 100 101 102 103 |
# File 'lib/llm/providers/anthropic.rb', line 97 def server_tools { bash: server_tool(:bash, type: "bash_20250124"), web_search: server_tool(:web_search, type: "web_search_20250305", max_uses: 5), text_editor: server_tool(:str_replace_based_edit_tool, type: "text_editor_20250728", max_characters: 10_000) } end |