ГЛОБАЛЬНЫЙ РЕФАКТОРИНГ АРХИТЕКТУРЫ - Рефакторинг этапов Stage 3.8 - юи
This commit is contained in:
@@ -495,3 +495,32 @@ export interface AssistantMessageResultState {
|
||||
debug: AssistantDebugState;
|
||||
conversation: AssistantConversationItem[];
|
||||
}
|
||||
|
||||
export interface AssistantAnnotationRecord {
|
||||
annotation_id: string;
|
||||
session_id: string;
|
||||
message_id: string;
|
||||
message_index: number;
|
||||
rating: number;
|
||||
comment: string;
|
||||
annotation_author: string | null;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
context: {
|
||||
trace_id: string | null;
|
||||
reply_type: string | null;
|
||||
question_text: string | null;
|
||||
answer_text: string | null;
|
||||
};
|
||||
technical_context: Record<string, unknown> | null;
|
||||
}
|
||||
|
||||
export interface AssistantAnnotationsResponse {
|
||||
ok: boolean;
|
||||
generated_at: string;
|
||||
filters_applied: {
|
||||
session_id: string | null;
|
||||
limit: number;
|
||||
};
|
||||
items: AssistantAnnotationRecord[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user