File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -184,23 +184,23 @@ defmodule LLMAgent.Providers.Anthropic do
184
184
defp parse_anthropic_response ( response ) do
185
185
case response do
186
186
% { content: content } = resp when is_list ( content ) ->
187
- # 检查是否有工具调用
187
+ # Check if there are tool calls
188
188
if Map . has_key? ( resp , :tool_calls ) and length ( resp . tool_calls ) > 0 do
189
- # 包含工具调用的响应
189
+ # Response containing tool calls
190
190
% {
191
191
content: extract_text_content ( content ) ,
192
192
tool_calls: resp . tool_calls
193
193
}
194
194
else
195
- # 普通文本响应
195
+ # Regular text response
196
196
% {
197
197
content: extract_text_content ( content ) ,
198
198
tool_calls: [ ]
199
199
}
200
200
end
201
201
202
202
_ ->
203
- # 处理其他类型的响应或错误
203
+ # Handle other types of responses or errors
204
204
% {
205
205
content: "Unable to parse response" ,
206
206
tool_calls: [ ]
You can’t perform that action at this time.
0 commit comments