arize-phoenix 4.4.4rc3__py3-none-any.whl → 4.4.4rc4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
phoenix/trace/schemas.py CHANGED
@@ -29,8 +29,6 @@ class SpanKind(Enum):
29
29
  """
30
30
  SpanKind is loosely inspired by OpenTelemetry's SpanKind
31
31
  It captures the type of work that a Span encapsulates.
32
-
33
- NB: this is actively under construction
34
32
  """
35
33
 
36
34
  TOOL = "TOOL"
@@ -40,6 +38,7 @@ class SpanKind(Enum):
40
38
  EMBEDDING = "EMBEDDING"
41
39
  AGENT = "AGENT"
42
40
  RERANKER = "RERANKER"
41
+ EVALUATOR = "EVALUATOR"
43
42
  UNKNOWN = "UNKNOWN"
44
43
 
45
44
  def __str__(self) -> str:
phoenix/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "4.4.4rc3"
1
+ __version__ = "4.4.4rc4"