@arizeai/phoenix-client
Version:
A client for the Phoenix API
13 lines (10 loc) • 388 B
text/typescript
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 & {});