43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
"use client";
|
|
|
|
import type { PublicLanguageModel } from "../lib/public-models.ts";
|
|
import type { ChatMessage } from "../lib/chat-message-view.ts";
|
|
import { RectificationAgenticChat } from "./rectification-agentic-chat.tsx";
|
|
|
|
export type PersistedRectificationTurn = Readonly<{
|
|
id: string;
|
|
role: "user" | "assistant";
|
|
text: string | null;
|
|
status: string;
|
|
receipt?: Readonly<{
|
|
status: string;
|
|
phases: readonly string[];
|
|
tools: readonly string[];
|
|
methods?: readonly string[];
|
|
skill_name?: string;
|
|
skill_version?: string;
|
|
}> | null;
|
|
}>;
|
|
|
|
export type ConversationalBirthTimeRectificationProps = Readonly<{
|
|
caseId: string;
|
|
sessionId: string;
|
|
readonly: boolean;
|
|
shouldStartOpening: boolean;
|
|
initialTurns: readonly PersistedRectificationTurn[];
|
|
models: readonly PublicLanguageModel[];
|
|
selectedModelId: string;
|
|
onSelectModel: (modelId: string) => void;
|
|
onMessagesChange?: (messages: ChatMessage[]) => void;
|
|
onCompleted?: () => void;
|
|
onPendingChange?: (pending: boolean) => void;
|
|
onProfileIncomplete?: () => void;
|
|
onSaved?: (time: string, status: "accepted" | "confirmed") => void;
|
|
pendingConsultationQuestion?: string | null;
|
|
onRestart?: () => void;
|
|
}>;
|
|
|
|
export function ConversationalBirthTimeRectification(props: ConversationalBirthTimeRectificationProps) {
|
|
return <RectificationAgenticChat {...props} />;
|
|
}
|