Add read-only production runtime audit
This commit is contained in:
@@ -53,6 +53,18 @@ export interface MedicationCandidateAssessment {
|
||||
safetySourceIds: string[];
|
||||
}
|
||||
|
||||
export interface DrugSectionOption {
|
||||
sectionKey: string;
|
||||
sectionTitle: string;
|
||||
}
|
||||
|
||||
export interface MonographPickerState {
|
||||
drugId: string;
|
||||
drugName: string;
|
||||
sections: DrugSectionOption[];
|
||||
selectedSectionKeys: string[];
|
||||
}
|
||||
|
||||
export interface ChatMessage {
|
||||
id: string;
|
||||
role: "user" | "assistant";
|
||||
@@ -79,6 +91,8 @@ export interface ChatMessage {
|
||||
answerMode?: "concise" | "normal" | "detailed";
|
||||
answerPlan?: AnswerPlan;
|
||||
candidateAssessments?: MedicationCandidateAssessment[];
|
||||
/** Present on the assistant turn that opens the deterministic monograph picker. */
|
||||
sectionOptions?: DrugSectionOption[];
|
||||
}
|
||||
|
||||
export interface SendMessageRequest {
|
||||
|
||||
Reference in New Issue
Block a user