weaviate-client
    Preparing search index...

    Type Alias GenerativeReturn<T, V, C>

    The return of a query method in the collection.generate namespace.

    type GenerativeReturn<T, V, C extends GenerativeConfigRuntime | undefined> = {
        generated?: string;
        generative?: GenerativeGrouped<C>;
        objects: GenerativeObject<T, V, C>[];
    }

    Type Parameters

    Index

    Properties

    generated?: string

    (use generative.text instead) The LLM-generated output applicable to this query as a whole.

    generative?: GenerativeGrouped<C>
    objects: GenerativeObject<T, V, C>[]

    The objects that were found by the query.