weaviate-agents
    Preparing search index...

    Type Alias QueryAgentAskOptions

    Options for QueryAgent.ask.

    type QueryAgentAskOptions = {
        collections?: (string | QueryAgentCollectionConfig)[];
        resultEvaluation?: ResultEvaluation;
    }
    Index

    Properties

    collections?: (string | QueryAgentCollectionConfig)[]

    The collections to query. Either a list of strings, or a list of QueryAgentCollectionConfig objects. Will override any collections passed in the constructor.

    resultEvaluation?: ResultEvaluation

    How the agent should evaluate the final result. See ResultEvaluation. Defaults to "none".