UNPKG

throughmark

Version:

Find and Annotate Features in Images, From Objects to Concepts

19 lines (18 loc) 442 B
import type { LLMConfig, AnnotationConfig } from "./llm/types.js"; export interface GridConfig { rows?: number; cols?: number; visible?: boolean; cellLabels?: boolean; llm?: LLMConfig; minCellSize?: number; maxCellSize?: number; maxCells?: number; annotations?: AnnotationConfig[]; } export interface GridDimensions { width: number; height: number; cellWidth: number; cellHeight: number; }