arize-phoenix 8.16.0__tar.gz → 8.17.1__tar.gz

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.

Files changed (373) hide show
  1. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/PKG-INFO +2 -1
  2. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/pyproject.toml +1 -0
  3. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/config.py +58 -0
  4. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/facilitator.py +50 -8
  5. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Project.py +4 -2
  6. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/.vite/manifest.json +9 -9
  7. arize_phoenix-8.16.0/src/phoenix/server/static/assets/components-DYW3PtZk.js → arize_phoenix-8.17.1/src/phoenix/server/static/assets/components-CV-CKm8I.js +6 -5
  8. arize_phoenix-8.16.0/src/phoenix/server/static/assets/index-DtECKZJO.js → arize_phoenix-8.17.1/src/phoenix/server/static/assets/index-DZ8xGEMv.js +1 -1
  9. arize_phoenix-8.16.0/src/phoenix/server/static/assets/pages-DDiYyoa9.js → arize_phoenix-8.17.1/src/phoenix/server/static/assets/pages-OfCFR5QY.js +365 -355
  10. arize_phoenix-8.17.1/src/phoenix/version.py +1 -0
  11. arize_phoenix-8.16.0/src/phoenix/version.py +0 -1
  12. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/.gitignore +0 -0
  13. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/IP_NOTICE +0 -0
  14. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/LICENSE +0 -0
  15. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/README.md +0 -0
  16. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/__init__.py +0 -0
  17. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/auth.py +0 -0
  18. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/core/__init__.py +0 -0
  19. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/core/embedding_dimension.py +0 -0
  20. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/core/model.py +0 -0
  21. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/core/model_schema.py +0 -0
  22. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/core/model_schema_adapter.py +0 -0
  23. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/datetime_utils.py +0 -0
  24. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/README.md +0 -0
  25. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/__init__.py +0 -0
  26. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/alembic.ini +0 -0
  27. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/bulk_inserter.py +0 -0
  28. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/engines.py +0 -0
  29. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/enums.py +0 -0
  30. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/helpers.py +0 -0
  31. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/__init__.py +0 -0
  32. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/constants.py +0 -0
  33. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/dataset.py +0 -0
  34. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/document_annotation.py +0 -0
  35. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/evaluation.py +0 -0
  36. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/helpers.py +0 -0
  37. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/span.py +0 -0
  38. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/span_annotation.py +0 -0
  39. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/trace_annotation.py +0 -0
  40. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/insertion/types.py +0 -0
  41. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrate.py +0 -0
  42. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/__init__.py +0 -0
  43. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/data_migration_scripts/__init__.py +0 -0
  44. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/data_migration_scripts/populate_project_sessions.py +0 -0
  45. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/env.py +0 -0
  46. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/script.py.mako +0 -0
  47. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/versions/10460e46d750_datasets.py +0 -0
  48. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/versions/3be8647b87d8_add_token_columns_to_spans_table.py +0 -0
  49. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/versions/4ded9e43755f_create_project_sessions_table.py +0 -0
  50. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/versions/bc8fea3c2bc8_add_prompt_tables.py +0 -0
  51. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/versions/cd164e83824f_users_and_tokens.py +0 -0
  52. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/migrations/versions/cf03bd6bae1d_init.py +0 -0
  53. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/models.py +0 -0
  54. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/types/__init__.py +0 -0
  55. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/types/identifier.py +0 -0
  56. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/db/types/model_provider.py +0 -0
  57. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/exceptions.py +0 -0
  58. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/__init__.py +0 -0
  59. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/evaluators/__init__.py +0 -0
  60. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/evaluators/base.py +0 -0
  61. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/evaluators/code_evaluators.py +0 -0
  62. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/evaluators/llm_evaluators.py +0 -0
  63. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/evaluators/utils.py +0 -0
  64. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/functions.py +0 -0
  65. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/tracing.py +0 -0
  66. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/types.py +0 -0
  67. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/experiments/utils.py +0 -0
  68. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/inferences/__init__.py +0 -0
  69. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/inferences/errors.py +0 -0
  70. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/inferences/fixtures.py +0 -0
  71. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/inferences/inferences.py +0 -0
  72. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/inferences/schema.py +0 -0
  73. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/inferences/validation.py +0 -0
  74. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/logging/__init__.py +0 -0
  75. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/logging/_config.py +0 -0
  76. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/logging/_filter.py +0 -0
  77. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/logging/_formatter.py +0 -0
  78. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/metrics/README.md +0 -0
  79. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/metrics/__init__.py +0 -0
  80. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/metrics/binning.py +0 -0
  81. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/metrics/metrics.py +0 -0
  82. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/metrics/mixins.py +0 -0
  83. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/metrics/retrieval_metrics.py +0 -0
  84. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/metrics/timeseries.py +0 -0
  85. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/metrics/wrappers.py +0 -0
  86. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/pointcloud/__init__.py +0 -0
  87. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/pointcloud/clustering.py +0 -0
  88. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/pointcloud/pointcloud.py +0 -0
  89. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/pointcloud/projectors.py +0 -0
  90. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/pointcloud/umap_parameters.py +0 -0
  91. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/py.typed +0 -0
  92. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/__init__.py +0 -0
  93. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/README.md +0 -0
  94. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/__init__.py +0 -0
  95. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/auth.py +0 -0
  96. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/context.py +0 -0
  97. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/__init__.py +0 -0
  98. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/annotation_summaries.py +0 -0
  99. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/average_experiment_run_latency.py +0 -0
  100. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/cache/__init__.py +0 -0
  101. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/cache/two_tier_cache.py +0 -0
  102. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/dataset_example_revisions.py +0 -0
  103. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/dataset_example_spans.py +0 -0
  104. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/document_evaluation_summaries.py +0 -0
  105. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/document_evaluations.py +0 -0
  106. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/document_retrieval_metrics.py +0 -0
  107. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/experiment_annotation_summaries.py +0 -0
  108. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/experiment_error_rates.py +0 -0
  109. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/experiment_run_annotations.py +0 -0
  110. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/experiment_run_counts.py +0 -0
  111. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/experiment_sequence_number.py +0 -0
  112. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/latency_ms_quantile.py +0 -0
  113. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/min_start_or_max_end_times.py +0 -0
  114. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/num_child_spans.py +0 -0
  115. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/num_spans_per_trace.py +0 -0
  116. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/project_by_name.py +0 -0
  117. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/prompt_version_sequence_number.py +0 -0
  118. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/record_counts.py +0 -0
  119. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/session_io.py +0 -0
  120. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/session_num_traces.py +0 -0
  121. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/session_num_traces_with_error.py +0 -0
  122. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/session_token_usages.py +0 -0
  123. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/session_trace_latency_ms_quantile.py +0 -0
  124. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/span_annotations.py +0 -0
  125. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/span_by_id.py +0 -0
  126. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/span_dataset_examples.py +0 -0
  127. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/span_descendants.py +0 -0
  128. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/span_projects.py +0 -0
  129. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/table_fields.py +0 -0
  130. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/token_counts.py +0 -0
  131. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/trace_by_trace_ids.py +0 -0
  132. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/trace_root_spans.py +0 -0
  133. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/user_roles.py +0 -0
  134. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/dataloaders/users.py +0 -0
  135. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/exceptions.py +0 -0
  136. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/__init__.py +0 -0
  137. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/dataset_helpers.py +0 -0
  138. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/experiment_run_filters.py +0 -0
  139. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/playground_clients.py +0 -0
  140. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/playground_registry.py +0 -0
  141. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/playground_spans.py +0 -0
  142. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/prompts/__init__.py +0 -0
  143. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/prompts/conversions/__init__.py +0 -0
  144. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/prompts/conversions/anthropic.py +0 -0
  145. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/prompts/conversions/openai.py +0 -0
  146. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/helpers/prompts/models.py +0 -0
  147. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/AddExamplesToDatasetInput.py +0 -0
  148. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/AddSpansToDatasetInput.py +0 -0
  149. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/ChatCompletionInput.py +0 -0
  150. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/ChatCompletionMessageInput.py +0 -0
  151. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/ClearProjectInput.py +0 -0
  152. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/ClusterInput.py +0 -0
  153. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/Coordinates.py +0 -0
  154. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/CreateDatasetInput.py +0 -0
  155. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/CreateSpanAnnotationInput.py +0 -0
  156. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/CreateTraceAnnotationInput.py +0 -0
  157. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DataQualityMetricInput.py +0 -0
  158. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DatasetExampleInput.py +0 -0
  159. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DatasetSort.py +0 -0
  160. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DatasetVersionSort.py +0 -0
  161. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DeleteAnnotationsInput.py +0 -0
  162. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DeleteDatasetExamplesInput.py +0 -0
  163. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DeleteDatasetInput.py +0 -0
  164. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DeleteExperimentsInput.py +0 -0
  165. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DimensionFilter.py +0 -0
  166. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/DimensionInput.py +0 -0
  167. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/GenerativeModelInput.py +0 -0
  168. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/Granularity.py +0 -0
  169. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/InvocationParameters.py +0 -0
  170. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/PatchAnnotationInput.py +0 -0
  171. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/PatchDatasetExamplesInput.py +0 -0
  172. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/PatchDatasetInput.py +0 -0
  173. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/PerformanceMetricInput.py +0 -0
  174. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/ProjectSessionSort.py +0 -0
  175. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/PromptTemplateOptions.py +0 -0
  176. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/PromptVersionInput.py +0 -0
  177. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/SpanAnnotationSort.py +0 -0
  178. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/SpanSort.py +0 -0
  179. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/TimeRange.py +0 -0
  180. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/TraceAnnotationSort.py +0 -0
  181. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/UserRoleInput.py +0 -0
  182. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/input_types/__init__.py +0 -0
  183. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/interceptor.py +0 -0
  184. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/__init__.py +0 -0
  185. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/api_key_mutations.py +0 -0
  186. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/chat_mutations.py +0 -0
  187. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/dataset_mutations.py +0 -0
  188. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/experiment_mutations.py +0 -0
  189. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/export_events_mutations.py +0 -0
  190. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/project_mutations.py +0 -0
  191. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/prompt_label_mutations.py +0 -0
  192. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/prompt_mutations.py +0 -0
  193. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/prompt_version_tag_mutations.py +0 -0
  194. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/span_annotations_mutations.py +0 -0
  195. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/trace_annotations_mutations.py +0 -0
  196. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/trace_mutations.py +0 -0
  197. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/mutations/user_mutations.py +0 -0
  198. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/openapi/__init__.py +0 -0
  199. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/openapi/main.py +0 -0
  200. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/openapi/schema.py +0 -0
  201. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/queries.py +0 -0
  202. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/__init__.py +0 -0
  203. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/auth.py +0 -0
  204. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/embeddings.py +0 -0
  205. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/oauth2.py +0 -0
  206. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/utils.py +0 -0
  207. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/__init__.py +0 -0
  208. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/datasets.py +0 -0
  209. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/evaluations.py +0 -0
  210. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/experiment_evaluations.py +0 -0
  211. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/experiment_runs.py +0 -0
  212. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/experiments.py +0 -0
  213. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/models.py +0 -0
  214. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/prompts.py +0 -0
  215. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/spans.py +0 -0
  216. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/traces.py +0 -0
  217. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/routers/v1/utils.py +0 -0
  218. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/schema.py +0 -0
  219. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/subscriptions.py +0 -0
  220. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Annotation.py +0 -0
  221. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/AnnotationSummary.py +0 -0
  222. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/AnnotatorKind.py +0 -0
  223. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ApiKey.py +0 -0
  224. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/AuthMethod.py +0 -0
  225. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ChatCompletionMessageRole.py +0 -0
  226. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ChatCompletionSubscriptionPayload.py +0 -0
  227. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Cluster.py +0 -0
  228. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/CreateDatasetPayload.py +0 -0
  229. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DataQualityMetric.py +0 -0
  230. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Dataset.py +0 -0
  231. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DatasetExample.py +0 -0
  232. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DatasetExampleRevision.py +0 -0
  233. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DatasetValues.py +0 -0
  234. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DatasetVersion.py +0 -0
  235. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Dimension.py +0 -0
  236. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DimensionDataType.py +0 -0
  237. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DimensionShape.py +0 -0
  238. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DimensionType.py +0 -0
  239. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DimensionWithValue.py +0 -0
  240. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DocumentEvaluationSummary.py +0 -0
  241. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/DocumentRetrievalMetrics.py +0 -0
  242. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/EmbeddingDimension.py +0 -0
  243. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/EmbeddingMetadata.py +0 -0
  244. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Evaluation.py +0 -0
  245. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/EvaluationSummary.py +0 -0
  246. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Event.py +0 -0
  247. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/EventMetadata.py +0 -0
  248. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ExampleRevisionInterface.py +0 -0
  249. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Experiment.py +0 -0
  250. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ExperimentAnnotationSummary.py +0 -0
  251. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ExperimentComparison.py +0 -0
  252. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ExperimentRun.py +0 -0
  253. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ExperimentRunAnnotation.py +0 -0
  254. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ExportedFile.py +0 -0
  255. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Functionality.py +0 -0
  256. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/GenerativeModel.py +0 -0
  257. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/GenerativeProvider.py +0 -0
  258. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Identifier.py +0 -0
  259. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Inferences.py +0 -0
  260. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/InferencesRole.py +0 -0
  261. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/LabelFraction.py +0 -0
  262. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/MimeType.py +0 -0
  263. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Model.py +0 -0
  264. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/NumericRange.py +0 -0
  265. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/PerformanceMetric.py +0 -0
  266. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ProjectSession.py +0 -0
  267. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Prompt.py +0 -0
  268. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/PromptLabel.py +0 -0
  269. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/PromptResponse.py +0 -0
  270. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/PromptVersion.py +0 -0
  271. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/PromptVersionTag.py +0 -0
  272. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/PromptVersionTemplate.py +0 -0
  273. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ResponseFormat.py +0 -0
  274. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Retrieval.py +0 -0
  275. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ScalarDriftMetricEnum.py +0 -0
  276. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Segments.py +0 -0
  277. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/SortDir.py +0 -0
  278. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Span.py +0 -0
  279. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/SpanAnnotation.py +0 -0
  280. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/SpanIOValue.py +0 -0
  281. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/SystemApiKey.py +0 -0
  282. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/TimeSeries.py +0 -0
  283. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/TokenUsage.py +0 -0
  284. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ToolDefinition.py +0 -0
  285. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/Trace.py +0 -0
  286. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/TraceAnnotation.py +0 -0
  287. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/UMAPPoints.py +0 -0
  288. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/User.py +0 -0
  289. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/UserApiKey.py +0 -0
  290. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/UserRole.py +0 -0
  291. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/ValidationResult.py +0 -0
  292. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/VectorDriftMetricEnum.py +0 -0
  293. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/__init__.py +0 -0
  294. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/node.py +0 -0
  295. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/types/pagination.py +0 -0
  296. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/api/utils.py +0 -0
  297. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/app.py +0 -0
  298. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/bearer_auth.py +0 -0
  299. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/dml_event.py +0 -0
  300. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/dml_event_handler.py +0 -0
  301. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/email/__init__.py +0 -0
  302. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/email/sender.py +0 -0
  303. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/email/templates/__init__.py +0 -0
  304. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/email/templates/password_reset.html +0 -0
  305. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/email/types.py +0 -0
  306. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/grpc_server.py +0 -0
  307. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/jwt_store.py +0 -0
  308. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/main.py +0 -0
  309. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/oauth2.py +0 -0
  310. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/openapi/__init__.py +0 -0
  311. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/prometheus.py +0 -0
  312. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/rate_limiters.py +0 -0
  313. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/apple-touch-icon-114x114.png +0 -0
  314. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/apple-touch-icon-120x120.png +0 -0
  315. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/apple-touch-icon-144x144.png +0 -0
  316. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/apple-touch-icon-152x152.png +0 -0
  317. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/apple-touch-icon-180x180.png +0 -0
  318. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/apple-touch-icon-72x72.png +0 -0
  319. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/apple-touch-icon-76x76.png +0 -0
  320. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/apple-touch-icon.png +0 -0
  321. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/assets/vendor-BT2CVKel.js +0 -0
  322. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/assets/vendor-Cg6lcjUC.css +0 -0
  323. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/assets/vendor-arizeai-Dzsaenki.js +0 -0
  324. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/assets/vendor-codemirror-D2R3PB3i.js +0 -0
  325. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/assets/vendor-recharts-DetvdWCF.js +0 -0
  326. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/assets/vendor-shiki-dzrzjP7E.js +0 -0
  327. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/assets/vendor-three-C5WAXd5r.js +0 -0
  328. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/favicon.ico +0 -0
  329. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/static/modernizr.js +0 -0
  330. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/telemetry.py +0 -0
  331. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/templates/__init__.py +0 -0
  332. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/templates/index.html +0 -0
  333. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/thread_server.py +0 -0
  334. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/server/types.py +0 -0
  335. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/services.py +0 -0
  336. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/session/__init__.py +0 -0
  337. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/session/client.py +0 -0
  338. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/session/data_extractor.py +0 -0
  339. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/session/evaluation.py +0 -0
  340. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/session/session.py +0 -0
  341. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/settings.py +0 -0
  342. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/__init__.py +0 -0
  343. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/attributes.py +0 -0
  344. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/dsl/README.md +0 -0
  345. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/dsl/__init__.py +0 -0
  346. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/dsl/filter.py +0 -0
  347. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/dsl/helpers.py +0 -0
  348. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/dsl/query.py +0 -0
  349. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/errors.py +0 -0
  350. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/evaluation_conventions.py +0 -0
  351. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/exporter.py +0 -0
  352. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/fixtures.py +0 -0
  353. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/otel.py +0 -0
  354. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/projects.py +0 -0
  355. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/schemas.py +0 -0
  356. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/span_evaluations.py +0 -0
  357. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/span_json_decoder.py +0 -0
  358. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/span_json_encoder.py +0 -0
  359. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/trace_dataset.py +0 -0
  360. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/utils.py +0 -0
  361. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/v1/__init__.py +0 -0
  362. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/v1/evaluation_pb2.py +0 -0
  363. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/trace/v1/evaluation_pb2.pyi +0 -0
  364. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/__init__.py +0 -0
  365. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/client.py +0 -0
  366. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/deprecation.py +0 -0
  367. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/error_handling.py +0 -0
  368. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/json.py +0 -0
  369. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/logging.py +0 -0
  370. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/project.py +0 -0
  371. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/re.py +0 -0
  372. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/span_store.py +0 -0
  373. {arize_phoenix-8.16.0 → arize_phoenix-8.17.1}/src/phoenix/utilities/template_formatters.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arize-phoenix
3
- Version: 8.16.0
3
+ Version: 8.17.1
4
4
  Summary: AI Observability and Evaluation
5
5
  Project-URL: Documentation, https://docs.arize.com/phoenix/
6
6
  Project-URL: Issues, https://github.com/Arize-ai/phoenix/issues
@@ -25,6 +25,7 @@ Requires-Dist: arize-phoenix-evals>=0.13.1
25
25
  Requires-Dist: arize-phoenix-otel>=0.5.1
26
26
  Requires-Dist: authlib
27
27
  Requires-Dist: cachetools
28
+ Requires-Dist: email-validator
28
29
  Requires-Dist: fastapi
29
30
  Requires-Dist: grpc-interceptor
30
31
  Requires-Dist: grpcio
@@ -59,6 +59,7 @@ dependencies = [
59
59
  "authlib",
60
60
  "websockets",
61
61
  "arize-phoenix-client",
62
+ "email-validator",
62
63
  ]
63
64
  dynamic = ["version"]
64
65
 
@@ -10,6 +10,8 @@ from pathlib import Path
10
10
  from typing import Optional, cast, overload
11
11
  from urllib.parse import quote_plus, urlparse
12
12
 
13
+ from email_validator import EmailNotValidError, validate_email
14
+
13
15
  from phoenix.utilities.logging import log_a_list
14
16
 
15
17
  from .utilities.re import parse_env_headers
@@ -161,6 +163,17 @@ password reset emails. If this variable is left unspecified or contains no origi
161
163
  protection will not be enabled. In such cases, when a request includes `origin` or `referer`
162
164
  headers, those values will not be validated.
163
165
  """
166
+ ENV_PHOENIX_ADMINS = "PHOENIX_ADMINS"
167
+ """
168
+ A semicolon-separated list of username and email address pairs to create as admin users on startup.
169
+ The format is `username=email`, e.g., `John Doe=john@example.com;Doe, Jane=jane@example.com`.
170
+ The password for each user will be randomly generated and will need to be reset. The application
171
+ will not start if this environment variable is set but cannot be parsed or contains invalid emails.
172
+ If the username or email address already exists in the database, the user record will not be
173
+ modified, e.g., changed from non-admin to admin. Changing this environment variable for the next
174
+ startup will not undo any records created in previous startups.
175
+ """
176
+
164
177
 
165
178
  # SMTP settings
166
179
  ENV_PHOENIX_SMTP_HOSTNAME = "PHOENIX_SMTP_HOSTNAME"
@@ -429,6 +442,51 @@ def get_env_csrf_trusted_origins() -> list[str]:
429
442
  return sorted(set(origins))
430
443
 
431
444
 
445
+ def get_env_admins() -> dict[str, str]:
446
+ """
447
+ Parse the PHOENIX_ADMINS environment variable to extract the comma separated pairs of
448
+ username and email. The last equal sign (=) in each pair is used to separate the username from
449
+ the email.
450
+
451
+ Returns:
452
+ dict: A dictionary mapping email addresses to usernames
453
+
454
+ Raises:
455
+ ValueError: If the environment variable cannot be parsed or contains invalid email addresses
456
+ """
457
+ if not (env_value := getenv(ENV_PHOENIX_ADMINS)):
458
+ return {}
459
+ usernames = set()
460
+ emails = set()
461
+ ans = {}
462
+ for pair in env_value.split(";"):
463
+ pair = pair.strip()
464
+ if not pair:
465
+ continue
466
+ # Find the last equals sign to separate username from email
467
+ # This allows usernames to contain equals signs
468
+ last_equals_pos = pair.rfind("=")
469
+ if last_equals_pos == -1:
470
+ raise ValueError(
471
+ f"Invalid format in {ENV_PHOENIX_ADMINS}: '{pair}'. "
472
+ f"Expected format: 'username=email'"
473
+ )
474
+ username = pair[:last_equals_pos].strip()
475
+ email_addr = pair[last_equals_pos + 1 :].strip()
476
+ try:
477
+ email_addr = validate_email(email_addr, check_deliverability=False).normalized
478
+ except EmailNotValidError:
479
+ raise ValueError(f"Invalid email in {ENV_PHOENIX_ADMINS}: '{email_addr}'")
480
+ if username in usernames:
481
+ raise ValueError(f"Duplicate username in {ENV_PHOENIX_ADMINS}: '{username}'")
482
+ if email_addr in emails:
483
+ raise ValueError(f"Duplicate email in {ENV_PHOENIX_ADMINS}: '{email_addr}'")
484
+ usernames.add(username)
485
+ emails.add(email_addr)
486
+ ans[email_addr] = username
487
+ return ans
488
+
489
+
432
490
  def get_env_smtp_username() -> str:
433
491
  return getenv(ENV_PHOENIX_SMTP_USERNAME, "")
434
492
 
@@ -19,7 +19,10 @@ from phoenix.auth import (
19
19
  DEFAULT_SYSTEM_USERNAME,
20
20
  compute_password_hash,
21
21
  )
22
- from phoenix.config import get_env_default_admin_initial_password
22
+ from phoenix.config import (
23
+ get_env_admins,
24
+ get_env_default_admin_initial_password,
25
+ )
23
26
  from phoenix.db import models
24
27
  from phoenix.db.enums import COLUMN_ENUMS, UserRole
25
28
  from phoenix.server.types import DbSessionFactory
@@ -37,13 +40,13 @@ class Facilitator:
37
40
  self._db = db
38
41
 
39
42
  async def __call__(self) -> None:
40
- async with self._db() as session:
41
- for fn in (
42
- _ensure_enums,
43
- _ensure_user_roles,
44
- ):
45
- async with session.begin_nested():
46
- await fn(session)
43
+ for fn in (
44
+ _ensure_enums,
45
+ _ensure_user_roles,
46
+ _ensure_admins,
47
+ ):
48
+ async with self._db() as session:
49
+ await fn(session)
47
50
 
48
51
 
49
52
  async def _ensure_enums(session: AsyncSession) -> None:
@@ -111,3 +114,42 @@ async def _ensure_user_roles(session: AsyncSession) -> None:
111
114
  )
112
115
  session.add(admin_user)
113
116
  await session.flush()
117
+
118
+
119
+ async def _ensure_admins(session: AsyncSession) -> None:
120
+ """
121
+ Ensure that all startup admin users are present in the database. If any are missing, they will
122
+ be added. Existing records will not be modified.
123
+ """
124
+ if not (admins := get_env_admins()):
125
+ return
126
+ existing_emails = set(
127
+ await session.scalars(select(models.User.email).where(models.User.email.in_(admins.keys())))
128
+ )
129
+ admins = {email: username for email, username in admins.items() if email not in existing_emails}
130
+ if not admins:
131
+ return
132
+ existing_usernames = set(
133
+ await session.scalars(
134
+ select(models.User.username).where(models.User.username.in_(admins.values()))
135
+ )
136
+ )
137
+ admins = {
138
+ email: username for email, username in admins.items() if username not in existing_usernames
139
+ }
140
+ if not admins:
141
+ return
142
+ admin_role_id = await session.scalar(
143
+ select(models.UserRole.id).filter_by(name=UserRole.ADMIN.value)
144
+ )
145
+ assert admin_role_id is not None, "Admin role not found in database"
146
+ for email, username in admins.items():
147
+ values = dict(
148
+ user_role_id=admin_role_id,
149
+ username=username,
150
+ email=email,
151
+ password_salt=secrets.token_bytes(DEFAULT_SECRET_LENGTH),
152
+ password_hash=secrets.token_bytes(DEFAULT_SECRET_LENGTH),
153
+ reset_password=True,
154
+ )
155
+ await session.execute(insert(models.User).values(values))
@@ -37,6 +37,8 @@ from phoenix.server.api.types.Trace import Trace
37
37
  from phoenix.server.api.types.ValidationResult import ValidationResult
38
38
  from phoenix.trace.dsl import SpanFilter
39
39
 
40
+ DEFAULT_PAGE_SIZE = 30
41
+
40
42
 
41
43
  @strawberry.type
42
44
  class Project(Node):
@@ -215,7 +217,7 @@ class Project(Node):
215
217
  self,
216
218
  info: Info[Context, None],
217
219
  time_range: Optional[TimeRange] = UNSET,
218
- first: Optional[int] = 50,
220
+ first: Optional[int] = DEFAULT_PAGE_SIZE,
219
221
  last: Optional[int] = UNSET,
220
222
  after: Optional[CursorString] = UNSET,
221
223
  before: Optional[CursorString] = UNSET,
@@ -299,7 +301,7 @@ class Project(Node):
299
301
  self,
300
302
  info: Info[Context, None],
301
303
  time_range: Optional[TimeRange] = UNSET,
302
- first: Optional[int] = 50,
304
+ first: Optional[int] = DEFAULT_PAGE_SIZE,
303
305
  after: Optional[CursorString] = UNSET,
304
306
  sort: Optional[ProjectSessionSort] = UNSET,
305
307
  filter_io_substring: Optional[str] = UNSET,
@@ -1,22 +1,22 @@
1
1
  {
2
- "_components-DYW3PtZk.js": {
3
- "file": "assets/components-DYW3PtZk.js",
2
+ "_components-CV-CKm8I.js": {
3
+ "file": "assets/components-CV-CKm8I.js",
4
4
  "name": "components",
5
5
  "imports": [
6
6
  "_vendor-BT2CVKel.js",
7
- "_pages-DDiYyoa9.js",
7
+ "_pages-OfCFR5QY.js",
8
8
  "_vendor-arizeai-Dzsaenki.js",
9
9
  "_vendor-codemirror-D2R3PB3i.js",
10
10
  "_vendor-three-C5WAXd5r.js"
11
11
  ]
12
12
  },
13
- "_pages-DDiYyoa9.js": {
14
- "file": "assets/pages-DDiYyoa9.js",
13
+ "_pages-OfCFR5QY.js": {
14
+ "file": "assets/pages-OfCFR5QY.js",
15
15
  "name": "pages",
16
16
  "imports": [
17
17
  "_vendor-BT2CVKel.js",
18
18
  "_vendor-arizeai-Dzsaenki.js",
19
- "_components-DYW3PtZk.js",
19
+ "_components-CV-CKm8I.js",
20
20
  "_vendor-codemirror-D2R3PB3i.js",
21
21
  "_vendor-recharts-DetvdWCF.js"
22
22
  ]
@@ -69,15 +69,15 @@
69
69
  "name": "vendor-three"
70
70
  },
71
71
  "index.tsx": {
72
- "file": "assets/index-DtECKZJO.js",
72
+ "file": "assets/index-DZ8xGEMv.js",
73
73
  "name": "index",
74
74
  "src": "index.tsx",
75
75
  "isEntry": true,
76
76
  "imports": [
77
77
  "_vendor-BT2CVKel.js",
78
78
  "_vendor-arizeai-Dzsaenki.js",
79
- "_pages-DDiYyoa9.js",
80
- "_components-DYW3PtZk.js",
79
+ "_pages-OfCFR5QY.js",
80
+ "_components-CV-CKm8I.js",
81
81
  "_vendor-three-C5WAXd5r.js",
82
82
  "_vendor-codemirror-D2R3PB3i.js",
83
83
  "_vendor-shiki-dzrzjP7E.js",
@@ -1,4 +1,4 @@
1
- import{r as p,R as U,j as e,u as ya,a as Te,e as i1,s as D1,b as V1,c as Ke,d as Q1,f as fi,g as ve,h as bi,i as Ci,k as q1,l as s,m as vi,n as ze,C as s1,o as Qe,p as qe,q as yi,t as Li,v as N,w as cn,L as La,x as wa,y as xa,z as de,A as v,B as h1,D as dn,E as g,F as ka,$ as wi,G as Sa,H as Ma,I as q,J as xi,K as un,M as ki,N as Si,O as B,P as X1,Q as O,S as H,T as R,U as Ta,V as za,W as Mi,X as f1,Y as Ia,Z as Ti,_ as zi,a0 as Ii,a1 as Ai,a2 as Ei,a3 as Di,a4 as Vi,a5 as Pi,a6 as Oi,a7 as b1,a8 as _i,a9 as Fi,aa as Ni,ab as Ri,ac as Se,ad as Y1,ae as J1,af as en,ag as F,ah as _e,ai as Nn,aj as $i,ak as Hi,al as Aa,am as Ki,an as Bi,ao as Zi,ap as ji,aq as Gi,ar as Ui,as as Wi,at as Qi,au as qi,av as Xi,aw as _,ax as mn,ay as Yi,az as Ji,aA as er,aB as nr,aC as ar,aD as Rn,aE as Ee,aF as Ea,aG as tr,aH as ir,aI as Da,aJ as rr,aK as or,aL as gn,aM as lr,aN as sr,aO as cr,aP as dr,aQ as ur,aR as $n,aS as mr,aT as gr,aU as pr,aV as P1,aW as hr,aX as fr,aY as br,aZ as Cr,a_ as vr,a$ as yr,b0 as Lr,b1 as wr,b2 as xr}from"./vendor-BT2CVKel.js";import{a as Hn,R as kr,b as Sr,c as Mr,m as Tr,T as zr,u as Ir}from"./pages-DDiYyoa9.js";import{u as Ar,_ as Va,a as ge,T as re,E as Pa,b as Fe,c as pe,d as Er,A as Xe,D as C1,e as Dr,f as ce,g as Vr,C as v1,P as pn,h as Oa,i as Pr,F as _a,I as Or,j as _r,k as Fr,l as Nr,m as Rr,n as $r,o as Hr,p as Kr,q as Fa,r as Na,s as Br,t as Zr}from"./vendor-arizeai-Dzsaenki.js";import{L as Ra,a as $a,d as je,E as hn,k as Ha,b as Ka,l as nn,h as jr,j as Gr,c as Ur,e as Wr,f as Qr,s as qr,g as Ye,i as Je,R as e1,p as Xr,m as Yr}from"./vendor-codemirror-D2R3PB3i.js";import{V as Jr}from"./vendor-three-C5WAXd5r.js";const Ba=function(){var n={defaultValue:null,kind:"LocalArgument",name:"clusters"},a={defaultValue:null,kind:"LocalArgument",name:"dataQualityMetricColumnName"},t={defaultValue:null,kind:"LocalArgument",name:"fetchDataQualityMetric"},i={defaultValue:null,kind:"LocalArgument",name:"fetchPerformanceMetric"},r={defaultValue:null,kind:"LocalArgument",name:"performanceMetric"},o=[{alias:null,args:null,kind:"ScalarField",name:"primaryValue",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"referenceValue",storageKey:null}],l=[{alias:null,args:[{kind:"Variable",name:"clusters",variableName:"clusters"}],concreteType:"Cluster",kind:"LinkedField",name:"clusters",plural:!0,selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"eventIds",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"driftRatio",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"primaryToCorpusRatio",storageKey:null},{condition:"fetchDataQualityMetric",kind:"Condition",passingValue:!0,selections:[{alias:null,args:[{fields:[{kind:"Variable",name:"columnName",variableName:"dataQualityMetricColumnName"},{kind:"Literal",name:"metric",value:"mean"}],kind:"ObjectValue",name:"metric"}],concreteType:"DatasetValues",kind:"LinkedField",name:"dataQualityMetric",plural:!1,selections:o,storageKey:null}]},{condition:"fetchPerformanceMetric",kind:"Condition",passingValue:!0,selections:[{alias:null,args:[{fields:[{kind:"Variable",name:"metric",variableName:"performanceMetric"}],kind:"ObjectValue",name:"metric"}],concreteType:"DatasetValues",kind:"LinkedField",name:"performanceMetric",plural:!1,selections:o,storageKey:null}]}],storageKey:null}];return{fragment:{argumentDefinitions:[n,a,t,i,r],kind:"Fragment",metadata:null,name:"pointCloudStore_clusterMetricsQuery",selections:l,type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:[n,t,a,i,r],kind:"Operation",name:"pointCloudStore_clusterMetricsQuery",selections:l},params:{cacheID:"86666967012812887ac0a0149d2d2535",id:null,metadata:{},name:"pointCloudStore_clusterMetricsQuery",operationKind:"query",text:`query pointCloudStore_clusterMetricsQuery(
1
+ import{r as p,R as U,j as e,u as ya,a as Te,e as i1,s as D1,b as V1,c as Ke,d as Q1,f as fi,g as ve,h as bi,i as Ci,k as q1,l as s,m as vi,n as ze,C as s1,o as Qe,p as qe,q as yi,t as Li,v as N,w as cn,L as La,x as wa,y as xa,z as de,A as v,B as h1,D as dn,E as g,F as ka,$ as wi,G as Sa,H as Ma,I as q,J as xi,K as un,M as ki,N as Si,O as B,P as X1,Q as O,S as H,T as R,U as Ta,V as za,W as Mi,X as f1,Y as Ia,Z as Ti,_ as zi,a0 as Ii,a1 as Ai,a2 as Ei,a3 as Di,a4 as Vi,a5 as Pi,a6 as Oi,a7 as b1,a8 as _i,a9 as Fi,aa as Ni,ab as Ri,ac as Se,ad as Y1,ae as J1,af as en,ag as F,ah as _e,ai as Nn,aj as $i,ak as Hi,al as Aa,am as Ki,an as Bi,ao as Zi,ap as ji,aq as Gi,ar as Ui,as as Wi,at as Qi,au as qi,av as Xi,aw as _,ax as mn,ay as Yi,az as Ji,aA as er,aB as nr,aC as ar,aD as Rn,aE as Ee,aF as Ea,aG as tr,aH as ir,aI as Da,aJ as rr,aK as or,aL as gn,aM as lr,aN as sr,aO as cr,aP as dr,aQ as ur,aR as $n,aS as mr,aT as gr,aU as pr,aV as P1,aW as hr,aX as fr,aY as br,aZ as Cr,a_ as vr,a$ as yr,b0 as Lr,b1 as wr,b2 as xr}from"./vendor-BT2CVKel.js";import{a as Hn,R as kr,b as Sr,c as Mr,m as Tr,T as zr,u as Ir}from"./pages-OfCFR5QY.js";import{u as Ar,_ as Va,a as ge,T as re,E as Pa,b as Fe,c as pe,d as Er,A as Xe,D as C1,e as Dr,f as ce,g as Vr,C as v1,P as pn,h as Oa,i as Pr,F as _a,I as Or,j as _r,k as Fr,l as Nr,m as Rr,n as $r,o as Hr,p as Kr,q as Fa,r as Na,s as Br,t as Zr}from"./vendor-arizeai-Dzsaenki.js";import{L as Ra,a as $a,d as je,E as hn,k as Ha,b as Ka,l as nn,h as jr,j as Gr,c as Ur,e as Wr,f as Qr,s as qr,g as Ye,i as Je,R as e1,p as Xr,m as Yr}from"./vendor-codemirror-D2R3PB3i.js";import{V as Jr}from"./vendor-three-C5WAXd5r.js";const Ba=function(){var n={defaultValue:null,kind:"LocalArgument",name:"clusters"},a={defaultValue:null,kind:"LocalArgument",name:"dataQualityMetricColumnName"},t={defaultValue:null,kind:"LocalArgument",name:"fetchDataQualityMetric"},i={defaultValue:null,kind:"LocalArgument",name:"fetchPerformanceMetric"},r={defaultValue:null,kind:"LocalArgument",name:"performanceMetric"},o=[{alias:null,args:null,kind:"ScalarField",name:"primaryValue",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"referenceValue",storageKey:null}],l=[{alias:null,args:[{kind:"Variable",name:"clusters",variableName:"clusters"}],concreteType:"Cluster",kind:"LinkedField",name:"clusters",plural:!0,selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"eventIds",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"driftRatio",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"primaryToCorpusRatio",storageKey:null},{condition:"fetchDataQualityMetric",kind:"Condition",passingValue:!0,selections:[{alias:null,args:[{fields:[{kind:"Variable",name:"columnName",variableName:"dataQualityMetricColumnName"},{kind:"Literal",name:"metric",value:"mean"}],kind:"ObjectValue",name:"metric"}],concreteType:"DatasetValues",kind:"LinkedField",name:"dataQualityMetric",plural:!1,selections:o,storageKey:null}]},{condition:"fetchPerformanceMetric",kind:"Condition",passingValue:!0,selections:[{alias:null,args:[{fields:[{kind:"Variable",name:"metric",variableName:"performanceMetric"}],kind:"ObjectValue",name:"metric"}],concreteType:"DatasetValues",kind:"LinkedField",name:"performanceMetric",plural:!1,selections:o,storageKey:null}]}],storageKey:null}];return{fragment:{argumentDefinitions:[n,a,t,i,r],kind:"Fragment",metadata:null,name:"pointCloudStore_clusterMetricsQuery",selections:l,type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:[n,t,a,i,r],kind:"Operation",name:"pointCloudStore_clusterMetricsQuery",selections:l},params:{cacheID:"86666967012812887ac0a0149d2d2535",id:null,metadata:{},name:"pointCloudStore_clusterMetricsQuery",operationKind:"query",text:`query pointCloudStore_clusterMetricsQuery(
2
2
  $clusters: [ClusterInput!]!
3
3
  $fetchDataQualityMetric: Boolean!
4
4
  $dataQualityMetricColumnName: String
@@ -174,7 +174,7 @@ import{r as p,R as U,j as e,u as ya,a as Te,e as i1,s as D1,b as V1,c as Ke,d as
174
174
  justify-content: center;
175
175
  align-items: center;
176
176
  background-color: rgba(0, 0, 0, 0.2);
177
- `,children:e(Va,{isIndeterminate:!0,"aria-label":"loading"})}),Tl=({message:n,size:a})=>s("div",{css:g`
177
+ `,children:e(Va,{isIndeterminate:!0,"aria-label":"loading"})}),Tl=({message:n,size:a,className:t})=>s("div",{className:t,css:g`
178
178
  display: flex;
179
179
  flex-direction: column;
180
180
  justify-content: center;
@@ -901,7 +901,7 @@ import{r as p,R as U,j as e,u as ya,a as Te,e as i1,s as D1,b as V1,c as Ke,d as
901
901
  `;function j2(n,a){const{size:t="M",...i}=n;return e(Pi,{...i,"data-size":t,ref:a,css:Z2})}const t4=U.forwardRef(j2),G2=n=>{const a=t=>({markdownDisplayMode:"text",setMarkdownDisplayMode:i=>{t({markdownDisplayMode:i})},traceStreamingEnabled:!0,setTraceStreamingEnabled:i=>{t({traceStreamingEnabled:i})},lastNTimeRangeKey:"7d",setLastNTimeRangeKey:i=>{t({lastNTimeRangeKey:i})},projectsAutoRefreshEnabled:!0,setProjectAutoRefreshEnabled:i=>{t({projectsAutoRefreshEnabled:i})},showSpanAside:!0,setShowSpanAside:i=>{t({showSpanAside:i})},showMetricsInTraceTree:!0,setShowMetricsInTraceTree:i=>{t({showMetricsInTraceTree:i})},modelConfigByProvider:{},setModelConfigForProvider:({provider:i,modelConfig:r})=>{t(o=>({modelConfigByProvider:{...o.modelConfigByProvider,[i]:r}}))},playgroundStreamingEnabled:!0,setPlaygroundStreamingEnabled:i=>{t({playgroundStreamingEnabled:i})},...n});return Qe()(cn(qe(a),{name:"arize-phoenix-preferences"}))},kt=p.createContext(null);function i4({children:n,...a}){const[t]=p.useState(()=>G2(a));return e(kt.Provider,{value:t,children:n})}function xe(n,a){const t=U.useContext(kt);if(!t)throw new Error("Missing PreferencesContext.Provider in the tree");return ya(t,n,a)}const z1=[{key:"15m",label:"Last 15 Min"},{key:"1h",label:"Last Hour"},{key:"12h",label:"Last 12 Hours"},{key:"1d",label:"Last Day"},{key:"7d",label:"Last 7 Days"},{key:"30d",label:"Last Month"}];z1.reduce((n,a)=>({...n,[a.key]:a}),{});function an(n){const a=Date.now();switch(n){case"15m":return{start:Q1(Oi(a))};case"1h":return{start:Q1(q1(a,1))};case"12h":return{start:Ke(q1(a,12))};case"1d":return{start:Ke(ve(a,1))};case"7d":return{start:Ke(ve(a,7))};case"30d":return{start:Ke(ve(a,30))};default:I()}}function tn(n){return z1.some(a=>a.key===n)}function U2(n){return tn(n)||n==="custom"}const St=p.createContext(null);function W2(){const n=U.useContext(St);if(n===null)throw new Error("useTimeRange must be used within a TimeRangeContextProvider");return n}function r4({children:n}){const a=xe(l=>l.lastNTimeRangeKey),t=xe(l=>l.setLastNTimeRangeKey),[i,r]=p.useState(()=>tn(a)?{timeRangeKey:a,...an(a)}:{timeRangeKey:"7d",...an("7d")}),o=p.useCallback(l=>{r(l),tn(l.timeRangeKey)&&t(l.timeRangeKey)},[t]);return e(St.Provider,{value:{timeRange:i,setTimeRange:o},children:n})}const ye=b1("%x %H:%M:%S %p");b1("%H:%M %p");const Q2=n=>n.start&&n.end?`${ye(n.start)} - ${ye(n.end)}`:n.start?`From ${ye(n.start)}`:n.end?`Until ${ye(n.end)}`:"All Time";function o4(n){return new Intl.DateTimeFormat(n,{day:"2-digit",month:"2-digit",year:"numeric"}).formatToParts(new Date).map(i=>{switch(i.type){case"day":return"dd";case"month":return"mm";case"year":return"yyyy";case"literal":return i.value;default:return""}}).join("")}const q2=g`
902
902
  width: 120px;
903
903
  padding: var(--ac-global-dimension-size-50);
904
- `;function X2({timeRangeKey:n,start:a,end:t}){if(n==="custom")return Q2({start:a,end:t});const i=z1.find(r=>r.key===n);return i?i.label:"invalid"}function Y2(n){const{value:a,isDisabled:t,onChange:i}=n,{timeRangeKey:r,start:o,end:l}=a,[c,d]=p.useState(!1);return s(Fi,{children:[e(V,{size:"S",leadingVisual:e(T,{svg:e(r2,{})}),isDisabled:t,onPress:()=>d(!0),children:X2(a)}),e(K2,{placement:"bottom end",isOpen:c,children:s(_i,{children:[e(R2,{}),s(k,{direction:"row",children:[e(J2,{visible:r==="custom",children:r==="custom"&&s(k,{direction:"column",gap:"size-100",justifyContent:"end",height:"100%",children:[e(K,{level:4,weight:"heavy",children:"Time Range"}),e(l0,{initialValue:{start:o,end:l},onSubmit:m=>{i&&i({timeRangeKey:"custom",...m}),d(!1)}})]})}),s(m0,{"aria-label":"time range preset selection",selectionMode:"single",selectedKeys:[r],css:q2,onSelectionChange:m=>{if(m==="all"||m.size===0)return;const u=m.keys().next().value;U2(u)&&(u!=="custom"?(i({timeRangeKey:u,...an(u)}),d(!1)):i({timeRangeKey:u,start:o,end:l}))},children:[z1.map(({key:m,label:u})=>e(X1,{id:m,children:u},m)),e(X1,{id:"custom",children:"Custom"},"custom")]})]})]})})]})}function J2({children:n,visible:a}){return e("div",{css:g`
904
+ `;function X2({timeRangeKey:n,start:a,end:t}){if(n==="custom")return Q2({start:a,end:t});const i=z1.find(r=>r.key===n);return i?i.label:"invalid"}function Y2(n){const{value:a,isDisabled:t,onChange:i}=n,{timeRangeKey:r,start:o,end:l}=a,[c,d]=p.useState(!1);return s(Fi,{children:[e(V,{size:"S",leadingVisual:e(T,{svg:e(r2,{})}),isDisabled:t,onPress:()=>d(!0),children:X2(a)}),e(K2,{placement:"bottom end",isOpen:c,children:s(_i,{children:[e(R2,{}),s(k,{direction:"row",children:[e(J2,{visible:r==="custom",children:r==="custom"&&s(k,{direction:"column",gap:"size-100",justifyContent:"end",height:"100%",children:[e(K,{level:4,weight:"heavy",children:"Time Range"}),e(l0,{initialValue:{start:o,end:l},onSubmit:m=>{i&&i({timeRangeKey:"custom",...m}),d(!1)}})]})}),s(m0,{"aria-label":"time range preset selection",selectionMode:"single",selectedKeys:[r],css:q2,onSelectionChange:m=>{if(m==="all"||m.size===0){d(!1);return}const u=m.keys().next().value;U2(u)&&(u!=="custom"?(i({timeRangeKey:u,...an(u)}),d(!1)):i({timeRangeKey:u,start:o,end:l}))},children:[z1.map(({key:m,label:u})=>e(X1,{id:m,children:u},m)),e(X1,{id:"custom",children:"Custom"},"custom")]})]})]})})]})}function J2({children:n,visible:a}){return e("div",{css:g`
905
905
  display: ${a?"block":"none"};
906
906
  `,children:e(w,{borderEndWidth:"thin",borderColor:"light",padding:"size-100",height:"100%",children:n})})}function l4(){const{timeRange:n,setTimeRange:a}=W2(),t=p.useCallback(i=>{p.startTransition(()=>{a(i)})},[a]);return e(Y2,{value:n,onChange:t})}const e0=g`
907
907
  --date-field-vertical-padding: 6px;
@@ -1756,7 +1756,8 @@ fragment ViewerContext_viewer on Query {
1756
1756
  word-wrap: break-word;
1757
1757
  `;function ma(n,a){return n.length>a?`${n.slice(0,a)}...`:n}function Q0({json:n,maxLength:a,space:t=0,disableTitle:i=!1,collapseSingleKey:r=!0}){const o=typeof a=="number",l=p.useMemo(()=>JSON.stringify(n,null,t),[n,t]),c=p.useMemo(()=>JSON.stringify(n,null,2),[n]),d=i?void 0:c;if(!J(n))return console.warn("JSONText component received a non-object value",n),e("span",{title:d,children:String(n)});const m=n;if(Object.keys(m).length===0)return e("span",{title:d,children:"--"});if(Object.keys(m).length===1&&r){const b=Object.keys(m)[0],C=m[b];if(typeof C=="string"){const L=o?ma(C,a):C;return e("span",{title:d,children:L})}}const u=o?ma(l,a):l;return e(o?"span":"pre",{title:d,css:o?void 0:W0,children:u})}const q0=100;function k4({getValue:n}){const a=n();return e(Q0,{json:a,maxLength:q0})}const X0=g`
1758
1758
  position: relative;
1759
- min-height: 75px;
1759
+ height: 100%;
1760
+ min-height: 100%;
1760
1761
  .controls {
1761
1762
  transition: opacity 0.2s ease-in-out;
1762
1763
  opacity: 0;
@@ -3110,4 +3111,4 @@ resource: new Resource({
3110
3111
  __typename
3111
3112
  }
3112
3113
  }
3113
- `}}}();pi.hash="c7f4f68f0256356c77264cc16b83e638";function F9(n){const[a,t]=N.useMutation(pi),{projectId:i,isQuiet:r=!1}=n,o=Da(),[l,c]=p.useState(null),d=L1(),m=po(),u=n.onExperimentDeleted,h=p.useCallback(C=>{a({variables:{input:{experimentIds:[C]}},onCompleted:()=>{d({title:"Experiment deleted",message:"The experiment has been deleted."})},onError:L=>{const S=Ft(L);m({title:"An error occurred",message:`Failed to delete experiment: ${(S==null?void 0:S[0])??L.message}`})}}),u==null||u()},[a,d,m,u]),f=p.useCallback(C=>{c(s(pe,{size:"S",title:"Delete Experiment",isDismissable:!0,onDismiss:()=>c(null),children:[e(w,{padding:"size-200",children:e(y,{color:"danger",children:"Are you sure you want to delete this experiment and its annotations and traces?"})}),e(w,{paddingEnd:"size-200",paddingTop:"size-100",paddingBottom:"size-100",borderTopColor:"light",borderTopWidth:"thin",children:e(k,{direction:"row",justifyContent:"end",children:e(V,{variant:"danger",onPress:()=>{h(C),c(null)},children:"Delete Experiment"})})})]}))},[h]),b=[e(_,{children:s(k,{direction:"row",gap:"size-75",justifyContent:"start",alignItems:"center",children:[e(T,{svg:e(k2,{})}),e(y,{children:"View run traces"})]})},"GO_TO_EXPERIMENT_RUN_TRACES"),e(_,{children:s(k,{direction:"row",gap:"size-75",justifyContent:"start",alignItems:"center",children:[e(T,{svg:e(wt,{})}),e(y,{children:"View metadata"})]})},"VIEW_METADATA"),e(_,{children:s(k,{direction:"row",gap:"size-75",justifyContent:"start",alignItems:"center",children:[e(T,{svg:e(Lt,{})}),e(y,{children:"Copy experiment ID"})]})},"COPY_EXPERIMENT_ID")];return n.canDeleteExperiment&&b.push(e(_,{children:s(k,{direction:"row",gap:"size-75",justifyContent:"start",alignItems:"center",children:[e(T,{svg:e(Vn,{})}),e(y,{children:t?"Deleting...":"Delete"})]})},"DELETE_EXPERIMENT")),s("div",{onClick:C=>{C.preventDefault(),C.stopPropagation()},children:[e(Oa,{buttonSize:"compact",align:"end",isQuiet:r,disabledKeys:i?[]:["GO_TO_EXPERIMENT_RUN_TRACES"],onAction:C=>{switch(C){case"GO_TO_EXPERIMENT_RUN_TRACES":return o(`/projects/${i}`);case"VIEW_METADATA":{c(e(pe,{title:"Metadata",onDismiss:()=>c(null),children:e(Tt,{value:JSON.stringify(n.metadata,null,2)})}));break}case"COPY_EXPERIMENT_ID":{ka(n.experimentId),d({title:"Copied",message:"The experiment ID has been copied to your clipboard"});break}case"DELETE_EXPERIMENT":{f(n.experimentId);break}default:I()}},children:b}),e(C1,{type:"modal",isDismissable:!0,onDismiss:()=>{c(null)},children:l})]})}export{z4 as $,$ as A,po as B,L1 as C,ot as D,V5 as E,Ft as F,p4 as G,w4 as H,T as I,M4 as J,w5 as K,L5 as L,$0 as M,y4 as N,Tl as O,xt as P,v4 as Q,a1 as R,L0 as S,me as T,oa as U,u4 as V,v0 as W,b4 as X,B0 as Y,I4 as Z,k as _,k1 as a,D0 as a$,H4 as a0,Vn as a1,na as a2,ss as a3,K4 as a4,cs as a5,gs as a6,n1 as a7,T3 as a8,zn as a9,K3 as aA,c5 as aB,m5 as aC,K as aD,t4 as aE,Y3 as aF,J3 as aG,e5 as aH,Y4 as aI,X4 as aJ,Q3 as aK,S1 as aL,M1 as aM,ol as aN,C4 as aO,P0 as aP,V0 as aQ,we as aR,J4 as aS,ht as aT,D5 as aU,P5 as aV,d4 as aW,kl as aX,$o as aY,t5 as aZ,al as a_,Vt as aa,q4 as ab,G4 as ac,z3 as ad,j4 as ae,W4 as af,T5 as ag,R5 as ah,A5 as ai,U5 as aj,Z5 as ak,M5 as al,Y5 as am,B4 as an,H5 as ao,Z4 as ap,G5 as aq,Q4 as ar,B5 as as,U4 as at,h5 as au,O3 as av,p5 as aw,g5 as ax,Tt as ay,B3 as az,dt as b,U3 as b$,K5 as b0,q5 as b1,f4 as b2,zs as b3,r9 as b4,i9 as b5,wt as b6,k2 as b7,n9 as b8,C5 as b9,y3 as bA,u9 as bB,g9 as bC,m9 as bD,da as bE,F5 as bF,ec as bG,d9 as bH,a9 as bI,Ds as bJ,sl as bK,c9 as bL,Q0 as bM,h4 as bN,T4 as bO,_5 as bP,Y as bQ,bl as bR,s5 as bS,l5 as bT,b5 as bU,f5 as bV,D2 as bW,c4 as bX,s4 as bY,_3 as bZ,W3 as b_,jl as ba,G as bb,l9 as bc,yt as bd,vt as be,o5 as bf,ke as bg,Ms as bh,ks as bi,p9 as bj,Vs as bk,ye as bl,Es as bm,h9 as bn,Lt as bo,x4 as bp,I5 as bq,O5 as br,s9 as bs,W5 as bt,xe as bu,n4 as bv,e4 as bw,d5 as bx,X as by,x5 as bz,ct as c,V4 as c$,G3 as c0,ie as c1,t1 as c2,a5 as c3,b9 as c4,R3 as c5,N3 as c6,hl as c7,m4 as c8,g4 as c9,D4 as cA,F4 as cB,A4 as cC,Gc as cD,Uc as cE,at as cF,Jc as cG,Ze as cH,Le as cI,ci as cJ,on as cK,Ve as cL,E9 as cM,T9 as cN,Ln as cO,z9 as cP,A9 as cQ,D3 as cR,E3 as cS,V3 as cT,x3 as cU,k9 as cV,r5 as cW,M9 as cX,I9 as cY,S9 as cZ,K0 as c_,f9 as ca,C9 as cb,t9 as cc,e9 as cd,Q5 as ce,K2 as cf,R2 as cg,$4 as ch,Dn as ci,y1 as cj,mo as ck,v9 as cl,y9 as cm,L9 as cn,x9 as co,w9 as cp,so as cq,lo as cr,x as cs,Qa as ct,E5 as cu,Ac as cv,P4 as cw,O4 as cx,_4 as cy,E4 as cz,L3 as d,N4 as d0,_t as d1,W2 as d2,Nt as d3,H0 as d4,Ot as d5,u5 as d6,l4 as d7,P3 as d8,X5 as d9,Ss as dA,_9 as dB,F9 as dC,S4 as dD,ea as dE,m2 as dF,$5 as dG,A3 as dH,I3 as dI,Dt as dJ,v5 as dK,L4 as dL,k5 as dM,N5 as dN,J5 as dO,M3 as dP,i4 as dQ,S3 as dR,z5 as da,ae as db,Vd as dc,j0 as dd,j3 as de,V9 as df,P9 as dg,S5 as dh,a4 as di,Is as dj,D9 as dk,ac as dl,j5 as dm,O9 as dn,k3 as dp,w3 as dq,r4 as dr,o4 as ds,R4 as dt,rn as du,o9 as dv,k4 as dw,s2 as dx,R0 as dy,y5 as dz,Z3 as e,Sl as f,u1 as g,n5 as h,J as i,d1 as j,Ho as k,ll as l,I as m,F3 as n,pl as o,q3 as p,X3 as q,$3 as r,uo as s,H3 as t,Jo as u,i5 as v,y as w,V as x,Mt as y,w as z};
3114
+ `}}}();pi.hash="c7f4f68f0256356c77264cc16b83e638";function F9(n){const[a,t]=N.useMutation(pi),{projectId:i,isQuiet:r=!1}=n,o=Da(),[l,c]=p.useState(null),d=L1(),m=po(),u=n.onExperimentDeleted,h=p.useCallback(C=>{a({variables:{input:{experimentIds:[C]}},onCompleted:()=>{d({title:"Experiment deleted",message:"The experiment has been deleted."})},onError:L=>{const S=Ft(L);m({title:"An error occurred",message:`Failed to delete experiment: ${(S==null?void 0:S[0])??L.message}`})}}),u==null||u()},[a,d,m,u]),f=p.useCallback(C=>{c(s(pe,{size:"S",title:"Delete Experiment",isDismissable:!0,onDismiss:()=>c(null),children:[e(w,{padding:"size-200",children:e(y,{color:"danger",children:"Are you sure you want to delete this experiment and its annotations and traces?"})}),e(w,{paddingEnd:"size-200",paddingTop:"size-100",paddingBottom:"size-100",borderTopColor:"light",borderTopWidth:"thin",children:e(k,{direction:"row",justifyContent:"end",children:e(V,{variant:"danger",onPress:()=>{h(C),c(null)},children:"Delete Experiment"})})})]}))},[h]),b=[e(_,{children:s(k,{direction:"row",gap:"size-75",justifyContent:"start",alignItems:"center",children:[e(T,{svg:e(k2,{})}),e(y,{children:"View run traces"})]})},"GO_TO_EXPERIMENT_RUN_TRACES"),e(_,{children:s(k,{direction:"row",gap:"size-75",justifyContent:"start",alignItems:"center",children:[e(T,{svg:e(wt,{})}),e(y,{children:"View metadata"})]})},"VIEW_METADATA"),e(_,{children:s(k,{direction:"row",gap:"size-75",justifyContent:"start",alignItems:"center",children:[e(T,{svg:e(Lt,{})}),e(y,{children:"Copy experiment ID"})]})},"COPY_EXPERIMENT_ID")];return n.canDeleteExperiment&&b.push(e(_,{children:s(k,{direction:"row",gap:"size-75",justifyContent:"start",alignItems:"center",children:[e(T,{svg:e(Vn,{})}),e(y,{children:t?"Deleting...":"Delete"})]})},"DELETE_EXPERIMENT")),s("div",{onClick:C=>{C.preventDefault(),C.stopPropagation()},children:[e(Oa,{buttonSize:"compact",align:"end",isQuiet:r,disabledKeys:i?[]:["GO_TO_EXPERIMENT_RUN_TRACES"],onAction:C=>{switch(C){case"GO_TO_EXPERIMENT_RUN_TRACES":return o(`/projects/${i}`);case"VIEW_METADATA":{c(e(pe,{title:"Metadata",onDismiss:()=>c(null),children:e(Tt,{value:JSON.stringify(n.metadata,null,2)})}));break}case"COPY_EXPERIMENT_ID":{ka(n.experimentId),d({title:"Copied",message:"The experiment ID has been copied to your clipboard"});break}case"DELETE_EXPERIMENT":{f(n.experimentId);break}default:I()}},children:b}),e(C1,{type:"modal",isDismissable:!0,onDismiss:()=>{c(null)},children:l})]})}export{z4 as $,$ as A,po as B,L1 as C,ot as D,V5 as E,Ft as F,p4 as G,w4 as H,T as I,M4 as J,w5 as K,L5 as L,$0 as M,y4 as N,Tl as O,xt as P,v4 as Q,a1 as R,L0 as S,me as T,oa as U,u4 as V,v0 as W,b4 as X,B0 as Y,I4 as Z,k as _,k1 as a,D0 as a$,H4 as a0,Vn as a1,na as a2,ss as a3,K4 as a4,cs as a5,gs as a6,n1 as a7,T3 as a8,zn as a9,K3 as aA,c5 as aB,m5 as aC,K as aD,t4 as aE,Y3 as aF,J3 as aG,e5 as aH,Y4 as aI,X4 as aJ,Q3 as aK,S1 as aL,M1 as aM,ol as aN,C4 as aO,P0 as aP,V0 as aQ,we as aR,J4 as aS,ht as aT,D5 as aU,P5 as aV,d4 as aW,kl as aX,$o as aY,t5 as aZ,al as a_,Vt as aa,q4 as ab,G4 as ac,z3 as ad,j4 as ae,W4 as af,T5 as ag,R5 as ah,A5 as ai,U5 as aj,Z5 as ak,M5 as al,Y5 as am,B4 as an,H5 as ao,Z4 as ap,G5 as aq,Q4 as ar,B5 as as,U4 as at,h5 as au,O3 as av,p5 as aw,g5 as ax,Tt as ay,B3 as az,dt as b,U3 as b$,K5 as b0,q5 as b1,f4 as b2,zs as b3,r9 as b4,i9 as b5,wt as b6,k2 as b7,n9 as b8,C5 as b9,x5 as bA,y3 as bB,u9 as bC,g9 as bD,m9 as bE,da as bF,F5 as bG,ec as bH,d9 as bI,a9 as bJ,Ds as bK,sl as bL,c9 as bM,h4 as bN,T4 as bO,_5 as bP,Y as bQ,bl as bR,s5 as bS,l5 as bT,b5 as bU,f5 as bV,D2 as bW,c4 as bX,s4 as bY,_3 as bZ,W3 as b_,jl as ba,G as bb,l9 as bc,yt as bd,vt as be,o5 as bf,ke as bg,Ms as bh,ks as bi,p9 as bj,Vs as bk,ye as bl,Es as bm,h9 as bn,Lt as bo,x4 as bp,Q0 as bq,I5 as br,O5 as bs,s9 as bt,W5 as bu,xe as bv,n4 as bw,e4 as bx,d5 as by,X as bz,ct as c,V4 as c$,G3 as c0,ie as c1,t1 as c2,a5 as c3,b9 as c4,R3 as c5,N3 as c6,hl as c7,m4 as c8,g4 as c9,D4 as cA,F4 as cB,A4 as cC,Gc as cD,Uc as cE,at as cF,Jc as cG,Ze as cH,Le as cI,ci as cJ,on as cK,Ve as cL,E9 as cM,T9 as cN,Ln as cO,z9 as cP,A9 as cQ,D3 as cR,E3 as cS,V3 as cT,x3 as cU,k9 as cV,r5 as cW,M9 as cX,I9 as cY,S9 as cZ,K0 as c_,f9 as ca,C9 as cb,t9 as cc,e9 as cd,Q5 as ce,K2 as cf,R2 as cg,$4 as ch,Dn as ci,y1 as cj,mo as ck,v9 as cl,y9 as cm,L9 as cn,x9 as co,w9 as cp,so as cq,lo as cr,x as cs,Qa as ct,E5 as cu,Ac as cv,P4 as cw,O4 as cx,_4 as cy,E4 as cz,L3 as d,N4 as d0,_t as d1,W2 as d2,Nt as d3,H0 as d4,Ot as d5,u5 as d6,l4 as d7,P3 as d8,X5 as d9,Ss as dA,_9 as dB,F9 as dC,S4 as dD,ea as dE,m2 as dF,$5 as dG,A3 as dH,I3 as dI,Dt as dJ,v5 as dK,L4 as dL,k5 as dM,N5 as dN,J5 as dO,M3 as dP,i4 as dQ,S3 as dR,z5 as da,ae as db,Vd as dc,j0 as dd,j3 as de,V9 as df,P9 as dg,S5 as dh,a4 as di,Is as dj,D9 as dk,ac as dl,j5 as dm,O9 as dn,k3 as dp,w3 as dq,r4 as dr,o4 as ds,R4 as dt,rn as du,o9 as dv,k4 as dw,s2 as dx,R0 as dy,y5 as dz,Z3 as e,Sl as f,u1 as g,n5 as h,J as i,d1 as j,Ho as k,ll as l,I as m,F3 as n,pl as o,q3 as p,X3 as q,$3 as r,uo as s,H3 as t,Jo as u,i5 as v,y as w,V as x,Mt as y,w as z};
@@ -1,4 +1,4 @@
1
- import{r as t,j as o,bo as z,l as c,O as w,R as P,E as b,cx as k,ei as S,ej as F,ek as L,el as l,v as C,em as E}from"./vendor-BT2CVKel.js";import{c as R,x as I,D as j,M as A,N as T}from"./vendor-arizeai-Dzsaenki.js";import{L as _,r as D,d as O,e as G,F as M,f as N,P as V,h as q,M as m,g as U,D as W,i as B,E as J,j as K,k as $,p as H,l as Q,n as p,o as Y,q as X,s as Z,S as oo,t as lo,v as ao,w as ro,x as co,y as u,z as f,A as y,B as go,C as eo,G as bo,H as no,I as io,J as so,K as to,N as mo,O as po,Q as uo,U as fo,V as yo,W as vo,X as ho,Y as xo,Z as zo,_ as wo,$ as Po,a0 as ko,a1 as So,a2 as Fo,a3 as Lo,a4 as Co,a5 as Eo,a6 as Ro,a7 as Io,a8 as jo,a9 as Ao,aa as To,ab as _o,ac as Do,ad as Oo,ae as Go,af as Mo}from"./pages-DDiYyoa9.js";import{z as No,dP as Vo,by as qo,R as Uo,dQ as Wo,dR as Bo}from"./components-DYW3PtZk.js";import"./vendor-three-C5WAXd5r.js";import"./vendor-codemirror-D2R3PB3i.js";import"./vendor-shiki-dzrzjP7E.js";import"./vendor-recharts-DetvdWCF.js";(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const g of r)if(g.type==="childList")for(const n of g.addedNodes)n.tagName==="LINK"&&n.rel==="modulepreload"&&s(n)}).observe(document,{childList:!0,subtree:!0});function i(r){const g={};return r.integrity&&(g.integrity=r.integrity),r.referrerPolicy&&(g.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?g.credentials="include":r.crossOrigin==="anonymous"?g.credentials="omit":g.credentials="same-origin",g}function s(r){if(r.ep)return;r.ep=!0;const g=i(r);fetch(r.href,g)}})();const v="arize-phoenix-feature-flags",d={__RESET__:!1};function Jo(){const a=localStorage.getItem(v);if(!a)return d;try{const e=JSON.parse(a);return Object.assign({},d,e)}catch{return d}}const h=t.createContext(null);function Ko(){const a=P.useContext(h);if(a===null)throw new Error("useFeatureFlags must be used within a FeatureFlagsProvider");return a}function $o(a){const[e,i]=t.useState(Jo()),s=r=>{localStorage.setItem(v,JSON.stringify(r)),i(r)};return o(h.Provider,{value:{featureFlags:e,setFeatureFlags:s},children:o(Ho,{children:a.children})})}function Ho(a){const{children:e}=a,{featureFlags:i,setFeatureFlags:s}=Ko(),[r,g]=t.useState(!1);return z("ctrl+shift+f",()=>g(!0)),c(w,{children:[e,o(j,{type:"modal",isDismissable:!0,onDismiss:()=>g(!1),children:r&&o(R,{title:"Feature Flags",children:o(No,{height:"size-1000",padding:"size-100",children:Object.keys(i).map(n=>o(I,{isSelected:i[n],onChange:x=>s({...i,[n]:x}),children:n},n))})})})]})}const Qo=b`
1
+ import{r as t,j as o,bo as z,l as c,O as w,R as P,E as b,cx as k,ei as S,ej as F,ek as L,el as l,v as C,em as E}from"./vendor-BT2CVKel.js";import{c as R,x as I,D as j,M as A,N as T}from"./vendor-arizeai-Dzsaenki.js";import{L as _,r as D,d as O,e as G,F as M,f as N,P as V,h as q,M as m,g as U,D as W,i as B,E as J,j as K,k as $,p as H,l as Q,n as p,o as Y,q as X,s as Z,S as oo,t as lo,v as ao,w as ro,x as co,y as u,z as f,A as y,B as go,C as eo,G as bo,H as no,I as io,J as so,K as to,N as mo,O as po,Q as uo,U as fo,V as yo,W as vo,X as ho,Y as xo,Z as zo,_ as wo,$ as Po,a0 as ko,a1 as So,a2 as Fo,a3 as Lo,a4 as Co,a5 as Eo,a6 as Ro,a7 as Io,a8 as jo,a9 as Ao,aa as To,ab as _o,ac as Do,ad as Oo,ae as Go,af as Mo}from"./pages-OfCFR5QY.js";import{z as No,dP as Vo,bz as qo,R as Uo,dQ as Wo,dR as Bo}from"./components-CV-CKm8I.js";import"./vendor-three-C5WAXd5r.js";import"./vendor-codemirror-D2R3PB3i.js";import"./vendor-shiki-dzrzjP7E.js";import"./vendor-recharts-DetvdWCF.js";(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))s(r);new MutationObserver(r=>{for(const g of r)if(g.type==="childList")for(const n of g.addedNodes)n.tagName==="LINK"&&n.rel==="modulepreload"&&s(n)}).observe(document,{childList:!0,subtree:!0});function i(r){const g={};return r.integrity&&(g.integrity=r.integrity),r.referrerPolicy&&(g.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?g.credentials="include":r.crossOrigin==="anonymous"?g.credentials="omit":g.credentials="same-origin",g}function s(r){if(r.ep)return;r.ep=!0;const g=i(r);fetch(r.href,g)}})();const v="arize-phoenix-feature-flags",d={__RESET__:!1};function Jo(){const a=localStorage.getItem(v);if(!a)return d;try{const e=JSON.parse(a);return Object.assign({},d,e)}catch{return d}}const h=t.createContext(null);function Ko(){const a=P.useContext(h);if(a===null)throw new Error("useFeatureFlags must be used within a FeatureFlagsProvider");return a}function $o(a){const[e,i]=t.useState(Jo()),s=r=>{localStorage.setItem(v,JSON.stringify(r)),i(r)};return o(h.Provider,{value:{featureFlags:e,setFeatureFlags:s},children:o(Ho,{children:a.children})})}function Ho(a){const{children:e}=a,{featureFlags:i,setFeatureFlags:s}=Ko(),[r,g]=t.useState(!1);return z("ctrl+shift+f",()=>g(!0)),c(w,{children:[e,o(j,{type:"modal",isDismissable:!0,onDismiss:()=>g(!1),children:r&&o(R,{title:"Feature Flags",children:o(No,{height:"size-1000",padding:"size-100",children:Object.keys(i).map(n=>o(I,{isSelected:i[n],onChange:x=>s({...i,[n]:x}),children:n},n))})})})]})}const Qo=b`
2
2
  :root {
3
3
  --ac-global-dimension-scale-factor: 1;
4
4
  --ac-global-dimension-size-0: 0px;