arize-phoenix 4.2.4__py3-none-any.whl → 4.3.1__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.
- {arize_phoenix-4.2.4.dist-info → arize_phoenix-4.3.1.dist-info}/METADATA +2 -5
- {arize_phoenix-4.2.4.dist-info → arize_phoenix-4.3.1.dist-info}/RECORD +11 -11
- phoenix/db/README.md +3 -0
- phoenix/db/migrate.py +1 -1
- phoenix/server/main.py +1 -11
- phoenix/server/static/index.js +219 -219
- phoenix/trace/dsl/filter.py +8 -0
- phoenix/version.py +1 -1
- {arize_phoenix-4.2.4.dist-info → arize_phoenix-4.3.1.dist-info}/WHEEL +0 -0
- {arize_phoenix-4.2.4.dist-info → arize_phoenix-4.3.1.dist-info}/licenses/IP_NOTICE +0 -0
- {arize_phoenix-4.2.4.dist-info → arize_phoenix-4.3.1.dist-info}/licenses/LICENSE +0 -0
phoenix/trace/dsl/filter.py
CHANGED
|
@@ -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.
|
|
1
|
+
__version__ = "4.3.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|