arize-phoenix 8.30.0__py3-none-any.whl → 8.32.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.
- {arize_phoenix-8.30.0.dist-info → arize_phoenix-8.32.0.dist-info}/METADATA +2 -1
- {arize_phoenix-8.30.0.dist-info → arize_phoenix-8.32.0.dist-info}/RECORD +14 -13
- phoenix/db/engines.py +14 -21
- phoenix/db/pg_config.py +197 -0
- phoenix/server/static/.vite/manifest.json +9 -9
- phoenix/server/static/assets/{components-BypB0fGT.js → components-x-gKFJ8C.js} +199 -188
- phoenix/server/static/assets/{index-Ccebc6-h.js → index-B0CbpsxD.js} +2 -2
- phoenix/server/static/assets/{pages-DGdjQlsy.js → pages-BU4VdyeH.js} +346 -346
- phoenix/trace/fixtures.py +24 -0
- phoenix/version.py +1 -1
- {arize_phoenix-8.30.0.dist-info → arize_phoenix-8.32.0.dist-info}/WHEEL +0 -0
- {arize_phoenix-8.30.0.dist-info → arize_phoenix-8.32.0.dist-info}/entry_points.txt +0 -0
- {arize_phoenix-8.30.0.dist-info → arize_phoenix-8.32.0.dist-info}/licenses/IP_NOTICE +0 -0
- {arize_phoenix-8.30.0.dist-info → arize_phoenix-8.32.0.dist-info}/licenses/LICENSE +0 -0
phoenix/trace/fixtures.py
CHANGED
|
@@ -139,6 +139,29 @@ demo_llama_index_rag_fixture = TracesFixture(
|
|
|
139
139
|
),
|
|
140
140
|
)
|
|
141
141
|
|
|
142
|
+
demo_toolcalling_fixture = TracesFixture(
|
|
143
|
+
name="demo_toolcalling",
|
|
144
|
+
project_name="demo_agent",
|
|
145
|
+
description="Tool calling traces",
|
|
146
|
+
file_name="agents-toolcalling-tracesv2.parquet",
|
|
147
|
+
dataset_fixtures=(
|
|
148
|
+
DatasetFixture(
|
|
149
|
+
file_name="questions.csv.gz",
|
|
150
|
+
input_keys=("query",),
|
|
151
|
+
output_keys=("responses",),
|
|
152
|
+
name="Valid Queries",
|
|
153
|
+
description="Valid queries for the demo agent",
|
|
154
|
+
),
|
|
155
|
+
DatasetFixture(
|
|
156
|
+
file_name="invalid_questions.csv.gz",
|
|
157
|
+
input_keys=("query",),
|
|
158
|
+
output_keys=("responses",),
|
|
159
|
+
name="Invalid Queries",
|
|
160
|
+
description="Invalid queries for the demo agent",
|
|
161
|
+
),
|
|
162
|
+
),
|
|
163
|
+
)
|
|
164
|
+
|
|
142
165
|
demo_code_based_agent_fixture = TracesFixture(
|
|
143
166
|
name="demo_code_based_agent",
|
|
144
167
|
project_name="demo_agents",
|
|
@@ -298,6 +321,7 @@ TRACES_FIXTURES: list[TracesFixture] = [
|
|
|
298
321
|
vision_fixture,
|
|
299
322
|
anthropic_tools_fixture,
|
|
300
323
|
project_sessions_llama_index_rag_arize_docs_fixture,
|
|
324
|
+
demo_toolcalling_fixture,
|
|
301
325
|
]
|
|
302
326
|
|
|
303
327
|
NAME_TO_TRACES_FIXTURE: dict[str, TracesFixture] = {
|
phoenix/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "8.
|
|
1
|
+
__version__ = "8.32.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|