proposit-core
    Preparing search index...

    Type Alias TTurnInput

    Input supplied to a single conversational turn. The caller is responsible for assembling the user message (which may include the full transcript when the provider cannot chain by reference).

    type TTurnInput = {
        previousResponseId?: TResponseId;
        userMessage: string;
    }
    Index

    Properties

    previousResponseId?: TResponseId

    The provider response id to chain against; absent for the first turn.

    userMessage: string

    The user message for this turn.