AxAIAnthropicChatResponse
type AxAIAnthropicChatResponse = object;
Defined in: https://github.com/ax-llm/ax/blob/0aa4aa2ceed1ba61106711baed6ce962cf2eb604/src/ax/ai/anthropic/types.ts#L164
Properties
content
content: (
| {
text: string;
type: "text";
}
| {
id: string;
input?: string;
name: string;
type: "tool_use";
}
| {
signature?: string;
thinking: string;
type: "thinking";
}
| {
data?: string;
signature?: string;
thinking?: string;
type: "redacted_thinking";
})[];
Defined in: https://github.com/ax-llm/ax/blob/0aa4aa2ceed1ba61106711baed6ce962cf2eb604/src/ax/ai/anthropic/types.ts#L168
id
id: string;
Defined in: https://github.com/ax-llm/ax/blob/0aa4aa2ceed1ba61106711baed6ce962cf2eb604/src/ax/ai/anthropic/types.ts#L165
model
model: string;
Defined in: https://github.com/ax-llm/ax/blob/0aa4aa2ceed1ba61106711baed6ce962cf2eb604/src/ax/ai/anthropic/types.ts#L192
role
role: "assistant";
Defined in: https://github.com/ax-llm/ax/blob/0aa4aa2ceed1ba61106711baed6ce962cf2eb604/src/ax/ai/anthropic/types.ts#L167
stop_reason
stop_reason: "end_turn" | "max_tokens" | "stop_sequence" | "tool_use";
Defined in: https://github.com/ax-llm/ax/blob/0aa4aa2ceed1ba61106711baed6ce962cf2eb604/src/ax/ai/anthropic/types.ts#L193
stop_sequence?
optional stop_sequence: string;
Defined in: https://github.com/ax-llm/ax/blob/0aa4aa2ceed1ba61106711baed6ce962cf2eb604/src/ax/ai/anthropic/types.ts#L194
type
type: "message";
Defined in: https://github.com/ax-llm/ax/blob/0aa4aa2ceed1ba61106711baed6ce962cf2eb604/src/ax/ai/anthropic/types.ts#L166
usage
usage: object;
Defined in: https://github.com/ax-llm/ax/blob/0aa4aa2ceed1ba61106711baed6ce962cf2eb604/src/ax/ai/anthropic/types.ts#L195
input_tokens
input_tokens: number;
output_tokens
output_tokens: number;