UNPKG

@omnia/fx-models

Version:
15 lines (14 loc) 345 B
export interface RAGJobLogModel { startedAt: string | null; finishedAt: string | null; errorMessage: string | null; errorDetails: string | null; state: string; } export interface RAGLogsPagedResult { results: RAGJobLogModel[]; rowCount: number; currentPage: number; pageSize: number; pageCount: number; }