weaviate-agents
    Preparing search index...

    Type Alias ChatMessage

    A single chat message in a conversation context passed to the Query Agent.

    type ChatMessage = {
        content: string;
        role: "user" | "assistant";
    }
    Index

    Properties

    Properties

    content: string
    role: "user" | "assistant"