AxAIAnthropicChatRequest
type AxAIAnthropicChatRequest = object;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L88
Properties
anthropic_version?
optional anthropic_version: string;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L90
max_tokens?
optional max_tokens: number;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L147
messages
messages: (
| {
content: | string
| (
| ... & ...
| ... & ...
| {
content: ... | ...;
is_error?: boolean;
tool_use_id: string;
type: "tool_result";
})[];
role: "user";
}
| {
content: | string
| (
| {
text: string;
type: "text";
}
| {
id: string;
input: object;
name: string;
type: "tool_use";
}
| {
signature?: string;
thinking: string;
type: "thinking";
}
| {
data: string;
signature?: string;
type: "redacted_thinking";
})[];
role: "assistant";
})[];
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L91
metadata?
optional metadata: object;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L161
user_id
user_id: string;
model?
optional model: string;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L89
stop_sequences?
optional stop_sequences: string[];
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L149
stream?
optional stream: boolean;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L150
system?
optional system:
| string
| object & AxAIAnthropicChatRequestCacheParam[];
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L151
temperature?
optional temperature: number;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L157
thinking?
optional thinking: AxAIAnthropicThinkingConfig;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L160
tool_choice?
optional tool_choice:
| {
type: "auto" | "any";
}
| {
name?: string;
type: "tool";
};
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L146
tools?
optional tools: AxAIAnthropicRequestTool[];
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L145
top_k?
optional top_k: number;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L159
top_p?
optional top_p: number;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/src/ax/ai/anthropic/types.ts#L158