langsmith
Version:
Client library to connect to the LangSmith Observability and Evaluation Platform.
15 lines (14 loc) • 372 B
TypeScript
import { ALIGNMENTS, COLORS } from '../utils/table-constants.js';
export type ALIGNMENT = (typeof ALIGNMENTS)[number];
export type COLOR = (typeof COLORS)[number];
export interface Dictionary {
[key: string]: any;
}
export interface CharLengthDict {
[key: string]: number;
}
export interface Row {
color: COLOR;
separator: boolean;
text: Dictionary;
}