arize-phoenix 7.9.4__py3-none-any.whl → 7.10.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-7.9.4.dist-info → arize_phoenix-7.10.0.dist-info}/METADATA +1 -1
- {arize_phoenix-7.9.4.dist-info → arize_phoenix-7.10.0.dist-info}/RECORD +19 -19
- phoenix/server/api/helpers/dataset_helpers.py +14 -0
- phoenix/server/api/helpers/playground_clients.py +6 -5
- phoenix/server/api/input_types/GenerativeModelInput.py +6 -0
- phoenix/server/api/mutations/chat_mutations.py +1 -7
- phoenix/server/api/mutations/dataset_mutations.py +21 -0
- phoenix/server/api/routers/v1/datasets.py +17 -14
- phoenix/server/api/subscriptions.py +1 -16
- phoenix/server/static/.vite/manifest.json +9 -9
- phoenix/server/static/assets/{components-DOevqttF.js → components-Bo_Bsbf_.js} +69 -69
- phoenix/server/static/assets/{index-DEWan9NY.js → index-_a0bc8_O.js} +1 -1
- phoenix/server/static/assets/{pages-iAiRxguB.js → pages-BEC7GxQJ.js} +278 -278
- phoenix/session/session.py +2 -1
- phoenix/version.py +1 -1
- {arize_phoenix-7.9.4.dist-info → arize_phoenix-7.10.0.dist-info}/WHEEL +0 -0
- {arize_phoenix-7.9.4.dist-info → arize_phoenix-7.10.0.dist-info}/entry_points.txt +0 -0
- {arize_phoenix-7.9.4.dist-info → arize_phoenix-7.10.0.dist-info}/licenses/IP_NOTICE +0 -0
- {arize_phoenix-7.9.4.dist-info → arize_phoenix-7.10.0.dist-info}/licenses/LICENSE +0 -0
phoenix/session/session.py
CHANGED
|
@@ -31,6 +31,7 @@ from phoenix.config import (
|
|
|
31
31
|
get_working_dir,
|
|
32
32
|
)
|
|
33
33
|
from phoenix.core.model_schema_adapter import create_model_from_inferences
|
|
34
|
+
from phoenix.db import get_printable_db_url
|
|
34
35
|
from phoenix.inferences.inferences import EMPTY_INFERENCES, Inferences
|
|
35
36
|
from phoenix.pointcloud.umap_parameters import get_umap_parameters
|
|
36
37
|
from phoenix.server.app import (
|
|
@@ -604,7 +605,7 @@ def launch_app(
|
|
|
604
605
|
|
|
605
606
|
print(f"🌍 To view the Phoenix app in your browser, visit {_session.url}")
|
|
606
607
|
if not use_temp_dir:
|
|
607
|
-
print(f"💽 Your data is being persisted to {database_url}")
|
|
608
|
+
print(f"💽 Your data is being persisted to {get_printable_db_url(database_url)}")
|
|
608
609
|
print("📖 For more information on how to use Phoenix, check out https://docs.arize.com/phoenix")
|
|
609
610
|
return _session
|
|
610
611
|
|
phoenix/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "7.
|
|
1
|
+
__version__ = "7.10.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|