Arize Phoenix TS
    Preparing search index...
    • Add a note to a trace.

      When traceNote.identifier is omitted, each call appends a new note with an auto-generated identifier. When identifier is non-empty, repeated calls with the same (traceId, name='note', identifier) overwrite the existing note.

      Parameters

      Returns Promise<{ id: string }>

      The ID of the created note annotation.

      const result = await addTraceNote({
      traceNote: {
      traceId: "abc123",
      note: "Needs review"
      }
      });