SongGuess
    Preparing search index...

    Interface Ai_Cf_Baai_Bge_Reranker_Base_Input

    interface Ai_Cf_Baai_Bge_Reranker_Base_Input {
        contexts: { text?: string }[];
        top_k?: number;
    }
    Index

    Properties

    Properties

    contexts: { text?: string }[]

    List of provided contexts. Note that the index in this array is important, as the response will refer to it.

    Type Declaration

    • Optionaltext?: string

      One of the provided context content

    top_k?: number

    Number of returned results starting with the best score.