Skip to content

Commit cfccd5c

Browse files
committed
docs: replace Chinese comments with English in anthropic.ex
1 parent f78fc56 commit cfccd5c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/llm_agent/providers/anthropic.ex

+4-4
Original file line numberDiff line numberDiff line change
@@ -184,23 +184,23 @@ defmodule LLMAgent.Providers.Anthropic do
184184
defp parse_anthropic_response(response) do
185185
case response do
186186
%{content: content} = resp when is_list(content) ->
187-
# 检查是否有工具调用
187+
# Check if there are tool calls
188188
if Map.has_key?(resp, :tool_calls) and length(resp.tool_calls) > 0 do
189-
# 包含工具调用的响应
189+
# Response containing tool calls
190190
%{
191191
content: extract_text_content(content),
192192
tool_calls: resp.tool_calls
193193
}
194194
else
195-
# 普通文本响应
195+
# Regular text response
196196
%{
197197
content: extract_text_content(content),
198198
tool_calls: []
199199
}
200200
end
201201

202202
_ ->
203-
# 处理其他类型的响应或错误
203+
# Handle other types of responses or errors
204204
%{
205205
content: "Unable to parse response",
206206
tool_calls: []

0 commit comments

Comments
 (0)