@arizeai/phoenix-client
Version:
A client for the Phoenix API
11 lines • 421 B
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 & {});
//# sourceMappingURL=spans.d.ts.map