SongGuess
    Preparing search index...
    type RoleScopedChatInput = {
        content: string;
        name?: string;
        role:
            | "user"
            | "assistant"
            | "system"
            | "tool"
            | string & NonNullable<unknown>;
    }
    Index

    Properties

    Properties

    content: string
    name?: string
    role: "user" | "assistant" | "system" | "tool" | string & NonNullable<unknown>