Circle V2 API Docs
    Preparing search index...

    Type Alias RunCaseReviewChatOptions

    type RunCaseReviewChatOptions = {
        conversationId?: string;
        entityId?: EntityId | null;
        logger?: BaseLogger;
        messages: RunCaseReviewChatMessage[];
        patientId: PatientId;
        referenceInstant?: Date;
        userId?: UserId;
    }
    Index

    Properties

    conversationId?: string

    Client-generated id shared by every turn of one chat session. Becomes the LangSmith thread_id so the Threads view groups the whole conversation.

    entityId?: EntityId | null
    logger?: BaseLogger
    patientId: PatientId
    referenceInstant?: Date

    The instant relative phrasing in the question ("last Tuesday") resolves against. Production leaves this unset and gets wall-clock; eval passes a frozen instant so a date-relative question stays reproducible.

    userId?: UserId

    Authenticated user id — used for observability annotations only.