UNPKG

@llamaindex/ui

Version:

A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications

23 lines (19 loc) 353 B
// ===== Core Types ===== export type JSONValue = | null | string | number | boolean | { [key: string]: JSONValue } | Array<JSONValue>; export type RunStatus = | "running" | "completed" | "failed" | "cancelled" | "not_started"; export interface WorkflowProgressState { current: number; total: number; status: RunStatus; }