AxAIAnthropicChatResponse
type AxAIAnthropicChatResponse = object;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L251
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/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L255
id
id: string;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L252
model
model: string;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L279
role
role: "assistant";Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L254
stop_details?
optional stop_details:
| AxAIAnthropicStopDetails
| null;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L288
stop_reason
stop_reason:
| "end_turn"
| "max_tokens"
| "stop_sequence"
| "tool_use"
| "refusal"
| "pause_turn"
| "model_context_window_exceeded";Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L280
stop_sequence?
optional stop_sequence: string;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L289
type
type: "message";Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L253
usage
usage: object;Defined in: https://github.com/ax-llm/ax/blob/e690b4823b8309e258594064abe941d4cff6ef89/src/ax/ai/anthropic/types.ts#L290
cache_creation_input_tokens?
optional cache_creation_input_tokens: number;cache_read_input_tokens?
optional cache_read_input_tokens: number;input_tokens
input_tokens: number;output_tokens
output_tokens: number;speed?
optional speed: "fast" | "standard";