weaviate-agents
    Preparing search index...

    Type Alias QueryAgentOptions

    Options for constructing a QueryAgent.

    type QueryAgentOptions = {
        agentsHost?: string;
        collections?: QueryAgentCollection[];
        systemPrompt?: string;
    }
    Index

    Properties

    agentsHost?: string

    Optional host of the agents service.

    collections?: QueryAgentCollection[]

    The collections to query. Either a list of strings, or a list of QueryAgentCollectionConfig objects. Will be overridden if passed in any of the agent's methods that support it.

    systemPrompt?: string

    Optional prompt to control the tone, format, and style of the agent's final response. This prompt is both passed to the query writer agent, and applied when generating the answer after all research and data retrieval is complete.