export interface FeedbackGroundTruth { /** * Answer is the response the caller expected — the text a correct system * would have produced from the retrieved context. */ answer?: string; /** * SourceIDs are the ingested source IDs that actually contain the answer, * as returned in query results and accepted by /context endpoints. */ sourceIds?: string[]; }