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

AxAIOpenAIChatResponse

type AxAIOpenAIChatResponse = object;

Defined in: https://github.com/ax-llm/ax/blob/71ea5064d766efdc031d375243a8e525911833e7/src/ax/ai/openai/chat_types.ts#L224

Properties

choices

choices: object[];

Defined in: https://github.com/ax-llm/ax/blob/71ea5064d766efdc031d375243a8e525911833e7/src/ax/ai/openai/chat_types.ts#L229

finish_reason

finish_reason: "stop" | "length" | "content_filter" | "tool_calls";

index

index: number;

message

{
  annotations?: AxAIOpenAIAnnotation[];
  content: string | null;
  reasoning_content?: string;
  refusal: string | null;
  role: string;
  tool_calls?: object[];
}

created

created: number;

Defined in: https://github.com/ax-llm/ax/blob/71ea5064d766efdc031d375243a8e525911833e7/src/ax/ai/openai/chat_types.ts#L227


error?

optional error: object;

Defined in: https://github.com/ax-llm/ax/blob/71ea5064d766efdc031d375243a8e525911833e7/src/ax/ai/openai/chat_types.ts#L247

code

code: number;

message

message: string;

param

param: string;

type

type: string;

id

id: string;

Defined in: https://github.com/ax-llm/ax/blob/71ea5064d766efdc031d375243a8e525911833e7/src/ax/ai/openai/chat_types.ts#L225


model

model: string;

Defined in: https://github.com/ax-llm/ax/blob/71ea5064d766efdc031d375243a8e525911833e7/src/ax/ai/openai/chat_types.ts#L228


object

object: "chat.completion";

Defined in: https://github.com/ax-llm/ax/blob/71ea5064d766efdc031d375243a8e525911833e7/src/ax/ai/openai/chat_types.ts#L226


system_fingerprint

system_fingerprint: string;

Defined in: https://github.com/ax-llm/ax/blob/71ea5064d766efdc031d375243a8e525911833e7/src/ax/ai/openai/chat_types.ts#L253


usage?

optional usage: AxAIOpenAIUsage;

Defined in: https://github.com/ax-llm/ax/blob/71ea5064d766efdc031d375243a8e525911833e7/src/ax/ai/openai/chat_types.ts#L246