evalution
    Preparing search index...

    Interface NormalizedMessage

    A single message in a conversation, in a form that is independent of any particular SDK's message shape.

    interface NormalizedMessage {
        content: PropValue;
        role: string;
        toolCalls?: NormalizedToolCall[];
    }
    Index

    Properties

    content: PropValue

    Message content. Typically a primitive or template string, but any PropValue is allowed so non-string content (e.g. structured content arrays) can round-trip through the editor.

    role: string

    Role identifier ('system', 'user', 'assistant', 'tool', …).

    toolCalls?: NormalizedToolCall[]

    Optional tool calls attached to an assistant message.