lloyal-agents API Reference
    Preparing search index...

    Interface RerankOptions

    Options for Rerank context creation

    interface RerankOptions {
        modelPath: string;
        nCtx?: number;
        nSeqMax?: number;
        typeK?: KvCacheType;
        typeV?: KvCacheType;
    }
    Index

    Properties

    modelPath: string

    Path to reranker .gguf model

    nCtx?: number

    Context window size (default: 4096)

    nSeqMax?: number

    Max prompts per GPU dispatch (default: 8)

    typeK?: KvCacheType

    KV cache key quantization (default: 'q4_0')

    typeV?: KvCacheType

    KV cache value quantization (default: 'q4_0')