arize-phoenix 8.29.0__py3-none-any.whl → 8.30.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.29.0.dist-info → arize_phoenix-8.30.0.dist-info}/METADATA +1 -1
- {arize_phoenix-8.29.0.dist-info → arize_phoenix-8.30.0.dist-info}/RECORD +17 -16
- phoenix/config.py +33 -8
- phoenix/server/api/helpers/playground_spans.py +4 -0
- phoenix/server/authorization.py +53 -0
- phoenix/server/grpc_server.py +3 -1
- phoenix/server/main.py +20 -9
- phoenix/server/static/.vite/manifest.json +9 -9
- phoenix/server/static/assets/{components-DepxScNF.js → components-BypB0fGT.js} +1 -1
- phoenix/server/static/assets/{index-DUj7q3Q4.js → index-Ccebc6-h.js} +1 -1
- phoenix/server/static/assets/{pages-CJUakDKi.js → pages-DGdjQlsy.js} +94 -94
- phoenix/session/client.py +1 -1
- phoenix/version.py +1 -1
- {arize_phoenix-8.29.0.dist-info → arize_phoenix-8.30.0.dist-info}/WHEEL +0 -0
- {arize_phoenix-8.29.0.dist-info → arize_phoenix-8.30.0.dist-info}/entry_points.txt +0 -0
- {arize_phoenix-8.29.0.dist-info → arize_phoenix-8.30.0.dist-info}/licenses/IP_NOTICE +0 -0
- {arize_phoenix-8.29.0.dist-info → arize_phoenix-8.30.0.dist-info}/licenses/LICENSE +0 -0
phoenix/session/client.py
CHANGED
|
@@ -151,8 +151,8 @@ class Client(TraceDataExtractor):
|
|
|
151
151
|
end_time = end_time or stop_time
|
|
152
152
|
try:
|
|
153
153
|
response = self._client.post(
|
|
154
|
-
headers={"accept": "application/json"},
|
|
155
154
|
url="v1/spans",
|
|
155
|
+
headers={"accept": "application/json"},
|
|
156
156
|
params={
|
|
157
157
|
"project_name": project_name,
|
|
158
158
|
"project-name": project_name, # for backward-compatibility
|
phoenix/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "8.
|
|
1
|
+
__version__ = "8.30.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|