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.

@@ -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.9.4"
1
+ __version__ = "7.10.0"