AxAIAnthropicChatResponse
type AxAIAnthropicChatResponse = object;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/anthropic/types.ts#L133
Properties
content
content: (
| {
text: string;
type: "text";
}
| {
id: string;
input?: string;
name: string;
type: "tool_use";
}
| {
signature?: string;
thinking: string;
type: "thinking";
}
| {
signature?: string;
thinking: string;
type: "redacted_thinking";
})[];
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/anthropic/types.ts#L137
id
id: string;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/anthropic/types.ts#L134
model
model: string;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/anthropic/types.ts#L159
role
role: "assistant";
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/anthropic/types.ts#L136
stop_reason
stop_reason: "end_turn" | "max_tokens" | "stop_sequence" | "tool_use";
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/anthropic/types.ts#L160
stop_sequence?
optional stop_sequence: string;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/anthropic/types.ts#L161
type
type: "message";
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/anthropic/types.ts#L135
usage
usage: object;
Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/ai/anthropic/types.ts#L162
input_tokens
input_tokens: number;
output_tokens
output_tokens: number;