weaviate-agents
    Preparing search index...

    Type Alias QueryAgentSuggestQueriesOptions

    type QueryAgentSuggestQueriesOptions = {
        collections?: (string | QueryAgentCollectionConfig)[];
        instructions?: string;
        numQueries?: number;
    }
    Index

    Properties

    collections?: (string | QueryAgentCollectionConfig)[]

    Optional override for the collections configured at instantiation. Either a list of strings, or a list of QueryAgentCollectionConfig objects.

    instructions?: string

    Optional natural language guidance for the style, topic, or language of the suggested queries. Supplied in addition to the agent's system instructions.

    numQueries?: number

    The number of queries to suggest. Defaults to 3.