Documentation

Build LLM-powered agents
with production-ready TypeScript

DSPy for TypeScript. Working with LLMs is complex—they don't always do what you want. DSPy makes it easier to build amazing things with LLMs. Just define your inputs and outputs (signature) and an efficient prompt is auto-generated and used. Connect together various signatures to build complex systems and workflows using LLMs.

15+ LLM Providers
End-to-end Streaming
Auto Prompt Tuning

AxAIAnthropicChatResponse

type AxAIAnthropicChatResponse = object;

Defined in: https://github.com/ax-llm/ax/blob/be56d0cb4027af0a3a23d397cd01a57261e362d4/src/ax/ai/anthropic/types.ts#L163

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/be56d0cb4027af0a3a23d397cd01a57261e362d4/src/ax/ai/anthropic/types.ts#L167


id

id: string;

Defined in: https://github.com/ax-llm/ax/blob/be56d0cb4027af0a3a23d397cd01a57261e362d4/src/ax/ai/anthropic/types.ts#L164


model

model: string;

Defined in: https://github.com/ax-llm/ax/blob/be56d0cb4027af0a3a23d397cd01a57261e362d4/src/ax/ai/anthropic/types.ts#L189


role

role: "assistant";

Defined in: https://github.com/ax-llm/ax/blob/be56d0cb4027af0a3a23d397cd01a57261e362d4/src/ax/ai/anthropic/types.ts#L166


stop_reason

stop_reason: "end_turn" | "max_tokens" | "stop_sequence" | "tool_use";

Defined in: https://github.com/ax-llm/ax/blob/be56d0cb4027af0a3a23d397cd01a57261e362d4/src/ax/ai/anthropic/types.ts#L190


stop_sequence?

optional stop_sequence: string;

Defined in: https://github.com/ax-llm/ax/blob/be56d0cb4027af0a3a23d397cd01a57261e362d4/src/ax/ai/anthropic/types.ts#L191


type

type: "message";

Defined in: https://github.com/ax-llm/ax/blob/be56d0cb4027af0a3a23d397cd01a57261e362d4/src/ax/ai/anthropic/types.ts#L165


usage

usage: object;

Defined in: https://github.com/ax-llm/ax/blob/be56d0cb4027af0a3a23d397cd01a57261e362d4/src/ax/ai/anthropic/types.ts#L192

input_tokens

input_tokens: number;

output_tokens

output_tokens: number;