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

AxHFDataLoader

Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/dsp/loader.ts#L5

Constructors

Constructor

new AxHFDataLoader(__namedParameters: Readonly<{
  config: string;
  dataset: string;
  options?: Readonly<{
     length?: number;
     offset?: number;
  }>;
  split: string;
}>): AxHFDataLoader;

Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/dsp/loader.ts#L14

Parameters

ParameterType
__namedParametersReadonly<{ config: string; dataset: string; options?: Readonly<{ length?: number; offset?: number; }>; split: string; }>

Returns

AxHFDataLoader

Methods

getData()

getData(): AxDataRow[];

Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/dsp/loader.ts#L67

Returns

AxDataRow[]


getRows()

getRows<T>(__namedParameters: Readonly<{
  count: number;
  fields: readonly string[];
  renameMap?: Record<string, string>;
}>): Promise<T[]>;

Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/dsp/loader.ts#L71

Type Parameters

Type Parameter
T

Parameters

ParameterType
__namedParametersReadonly<{ count: number; fields: readonly string[]; renameMap?: Record<string, string>; }>

Returns

Promise<T[]>


loadData()

loadData(): Promise<AxDataRow[]>;

Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/dsp/loader.ts#L51

Returns

Promise<AxDataRow[]>


setData()

setData(rows: AxDataRow[]): void;

Defined in: https://github.com/ax-llm/ax/blob/9a5a7060a48f9eef46efc680b0cdf6b42bff5df2/src/ax/dsp/loader.ts#L63

Parameters

ParameterType
rowsAxDataRow[]

Returns

void