arize-phoenix 4.3.0__py3-none-any.whl → 4.4.0__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.

Potentially problematic release.


This version of arize-phoenix might be problematic. Click here for more details.

@@ -109,10 +109,17 @@ _FLOAT_NAMES: typing.Mapping[str, sqlalchemy.SQLColumnExpression[typing.Any]] =
109
109
  "cumulative_llm_token_count_total": models.Span.cumulative_llm_token_count_total,
110
110
  }
111
111
  )
112
+ _DATETIME_NAMES: typing.Mapping[str, sqlalchemy.SQLColumnExpression[typing.Any]] = MappingProxyType(
113
+ {
114
+ "start_time": models.Span.start_time,
115
+ "end_time": models.Span.end_time,
116
+ }
117
+ )
112
118
  _NAMES: typing.Mapping[str, sqlalchemy.SQLColumnExpression[typing.Any]] = MappingProxyType(
113
119
  {
114
120
  **_STRING_NAMES,
115
121
  **_FLOAT_NAMES,
122
+ **_DATETIME_NAMES,
116
123
  "attributes": models.Span.attributes,
117
124
  "events": models.Span.events,
118
125
  }
@@ -403,6 +410,7 @@ class _ProjectionTranslator(ast.NodeTransformer):
403
410
  reserved_keywords,
404
411
  _STRING_NAMES.keys(),
405
412
  _FLOAT_NAMES.keys(),
413
+ _DATETIME_NAMES.keys(),
406
414
  )
407
415
  )
408
416
 
phoenix/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "4.3.0"
1
+ __version__ = "4.4.0"