UNPKG

@arizeai/phoenix-client

Version:
13 lines (10 loc) 388 B
import type { OpenInferenceSpanKind } from "@arizeai/openinference-semantic-conventions"; /** * Status codes for spans. */ export type SpanStatusCode = "OK" | "ERROR" | "UNSET"; /** * Span kind filter value. Accepts well-known OpenInference span kinds * as well as arbitrary strings for forward-compatibility. */ export type SpanKindFilter = OpenInferenceSpanKind | (string & {});