langchain.js
    Preparing search index...

    Type Alias HydeRetrieverOptions<V>

    HydeRetrieverOptions: BaseMessage<V> & {
        llm: BaseMessage;
        promptTemplate?: BaseMessage | PromptKey;
    }

    Options for the HydeRetriever class, which includes a BaseLanguageModel instance, a VectorStore instance, and an optional promptTemplate which can either be a BasePromptTemplate instance or a PromptKey.

    Type Parameters