arize-phoenix 5.4.0__tar.gz → 5.5.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 (324) hide show
  1. arize_phoenix-5.5.1/PKG-INFO +262 -0
  2. arize_phoenix-5.5.1/README.md +135 -0
  3. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/pyproject.toml +1 -0
  4. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/subscriptions.py +227 -94
  5. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/.vite/manifest.json +14 -14
  6. arize_phoenix-5.4.0/src/phoenix/server/static/assets/components-8zh9kCOG.js → arize_phoenix-5.5.1/src/phoenix/server/static/assets/components-mVBxvljU.js +2 -2
  7. arize_phoenix-5.4.0/src/phoenix/server/static/assets/index-Ci93KI-L.js → arize_phoenix-5.5.1/src/phoenix/server/static/assets/index-BHfTZ6x_.js +1 -1
  8. arize_phoenix-5.4.0/src/phoenix/server/static/assets/pages-CFNU-U_5.js → arize_phoenix-5.5.1/src/phoenix/server/static/assets/pages-aAez_Ntk.js +173 -173
  9. arize_phoenix-5.4.0/src/phoenix/server/static/assets/vendor-arizeai-uC2sozJ6.js → arize_phoenix-5.5.1/src/phoenix/server/static/assets/vendor-arizeai-DRZuoyuF.js +26 -26
  10. arize_phoenix-5.5.1/src/phoenix/version.py +1 -0
  11. arize_phoenix-5.4.0/PKG-INFO +0 -202
  12. arize_phoenix-5.4.0/README.md +0 -76
  13. arize_phoenix-5.4.0/src/phoenix/version.py +0 -1
  14. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/.gitignore +0 -0
  15. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/IP_NOTICE +0 -0
  16. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/LICENSE +0 -0
  17. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/__init__.py +0 -0
  18. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/auth.py +0 -0
  19. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/config.py +0 -0
  20. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/core/__init__.py +0 -0
  21. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/core/embedding_dimension.py +0 -0
  22. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/core/model.py +0 -0
  23. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/core/model_schema.py +0 -0
  24. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/core/model_schema_adapter.py +0 -0
  25. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/datetime_utils.py +0 -0
  26. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/README.md +0 -0
  27. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/__init__.py +0 -0
  28. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/alembic.ini +0 -0
  29. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/bulk_inserter.py +0 -0
  30. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/engines.py +0 -0
  31. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/enums.py +0 -0
  32. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/facilitator.py +0 -0
  33. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/helpers.py +0 -0
  34. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/__init__.py +0 -0
  35. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/constants.py +0 -0
  36. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/dataset.py +0 -0
  37. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/document_annotation.py +0 -0
  38. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/evaluation.py +0 -0
  39. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/helpers.py +0 -0
  40. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/span.py +0 -0
  41. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/span_annotation.py +0 -0
  42. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/trace_annotation.py +0 -0
  43. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/insertion/types.py +0 -0
  44. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/migrate.py +0 -0
  45. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/migrations/__init__.py +0 -0
  46. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/migrations/env.py +0 -0
  47. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/migrations/script.py.mako +0 -0
  48. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/migrations/versions/10460e46d750_datasets.py +0 -0
  49. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/migrations/versions/3be8647b87d8_add_token_columns_to_spans_table.py +0 -0
  50. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/migrations/versions/cd164e83824f_users_and_tokens.py +0 -0
  51. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/migrations/versions/cf03bd6bae1d_init.py +0 -0
  52. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/db/models.py +0 -0
  53. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/exceptions.py +0 -0
  54. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/__init__.py +0 -0
  55. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/evaluators/__init__.py +0 -0
  56. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/evaluators/base.py +0 -0
  57. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/evaluators/code_evaluators.py +0 -0
  58. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/evaluators/llm_evaluators.py +0 -0
  59. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/evaluators/utils.py +0 -0
  60. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/functions.py +0 -0
  61. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/tracing.py +0 -0
  62. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/types.py +0 -0
  63. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/experiments/utils.py +0 -0
  64. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/inferences/__init__.py +0 -0
  65. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/inferences/errors.py +0 -0
  66. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/inferences/fixtures.py +0 -0
  67. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/inferences/inferences.py +0 -0
  68. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/inferences/schema.py +0 -0
  69. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/inferences/validation.py +0 -0
  70. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/logging/__init__.py +0 -0
  71. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/logging/_config.py +0 -0
  72. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/logging/_filter.py +0 -0
  73. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/logging/_formatter.py +0 -0
  74. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/metrics/README.md +0 -0
  75. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/metrics/__init__.py +0 -0
  76. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/metrics/binning.py +0 -0
  77. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/metrics/metrics.py +0 -0
  78. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/metrics/mixins.py +0 -0
  79. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/metrics/retrieval_metrics.py +0 -0
  80. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/metrics/timeseries.py +0 -0
  81. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/metrics/wrappers.py +0 -0
  82. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/pointcloud/__init__.py +0 -0
  83. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/pointcloud/clustering.py +0 -0
  84. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/pointcloud/pointcloud.py +0 -0
  85. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/pointcloud/projectors.py +0 -0
  86. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/pointcloud/umap_parameters.py +0 -0
  87. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/py.typed +0 -0
  88. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/__init__.py +0 -0
  89. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/README.md +0 -0
  90. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/__init__.py +0 -0
  91. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/auth.py +0 -0
  92. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/context.py +0 -0
  93. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/__init__.py +0 -0
  94. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/annotation_summaries.py +0 -0
  95. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/average_experiment_run_latency.py +0 -0
  96. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/cache/__init__.py +0 -0
  97. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/cache/two_tier_cache.py +0 -0
  98. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/dataset_example_revisions.py +0 -0
  99. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/dataset_example_spans.py +0 -0
  100. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/document_evaluation_summaries.py +0 -0
  101. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/document_evaluations.py +0 -0
  102. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/document_retrieval_metrics.py +0 -0
  103. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/experiment_annotation_summaries.py +0 -0
  104. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/experiment_error_rates.py +0 -0
  105. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/experiment_run_annotations.py +0 -0
  106. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/experiment_run_counts.py +0 -0
  107. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/experiment_sequence_number.py +0 -0
  108. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/latency_ms_quantile.py +0 -0
  109. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/min_start_or_max_end_times.py +0 -0
  110. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/project_by_name.py +0 -0
  111. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/record_counts.py +0 -0
  112. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/span_annotations.py +0 -0
  113. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/span_dataset_examples.py +0 -0
  114. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/span_descendants.py +0 -0
  115. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/span_projects.py +0 -0
  116. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/token_counts.py +0 -0
  117. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/trace_row_ids.py +0 -0
  118. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/user_roles.py +0 -0
  119. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/dataloaders/users.py +0 -0
  120. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/exceptions.py +0 -0
  121. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/helpers/__init__.py +0 -0
  122. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/helpers/dataset_helpers.py +0 -0
  123. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/AddExamplesToDatasetInput.py +0 -0
  124. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/AddSpansToDatasetInput.py +0 -0
  125. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/ChatCompletionMessageInput.py +0 -0
  126. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/ClearProjectInput.py +0 -0
  127. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/ClusterInput.py +0 -0
  128. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/Coordinates.py +0 -0
  129. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/CreateDatasetInput.py +0 -0
  130. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/CreateSpanAnnotationInput.py +0 -0
  131. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/CreateTraceAnnotationInput.py +0 -0
  132. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DataQualityMetricInput.py +0 -0
  133. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DatasetExampleInput.py +0 -0
  134. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DatasetSort.py +0 -0
  135. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DatasetVersionSort.py +0 -0
  136. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DeleteAnnotationsInput.py +0 -0
  137. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DeleteDatasetExamplesInput.py +0 -0
  138. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DeleteDatasetInput.py +0 -0
  139. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DeleteExperimentsInput.py +0 -0
  140. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DimensionFilter.py +0 -0
  141. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/DimensionInput.py +0 -0
  142. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/Granularity.py +0 -0
  143. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/InvocationParameters.py +0 -0
  144. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/PatchAnnotationInput.py +0 -0
  145. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/PatchDatasetExamplesInput.py +0 -0
  146. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/PatchDatasetInput.py +0 -0
  147. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/PerformanceMetricInput.py +0 -0
  148. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/SpanAnnotationSort.py +0 -0
  149. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/SpanSort.py +0 -0
  150. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/TimeRange.py +0 -0
  151. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/TraceAnnotationSort.py +0 -0
  152. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/UserRoleInput.py +0 -0
  153. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/input_types/__init__.py +0 -0
  154. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/interceptor.py +0 -0
  155. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/mutations/__init__.py +0 -0
  156. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/mutations/api_key_mutations.py +0 -0
  157. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/mutations/dataset_mutations.py +0 -0
  158. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/mutations/experiment_mutations.py +0 -0
  159. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/mutations/export_events_mutations.py +0 -0
  160. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/mutations/project_mutations.py +0 -0
  161. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/mutations/span_annotations_mutations.py +0 -0
  162. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/mutations/trace_annotations_mutations.py +0 -0
  163. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/mutations/user_mutations.py +0 -0
  164. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/openapi/__init__.py +0 -0
  165. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/openapi/main.py +0 -0
  166. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/openapi/schema.py +0 -0
  167. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/queries.py +0 -0
  168. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/__init__.py +0 -0
  169. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/auth.py +0 -0
  170. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/embeddings.py +0 -0
  171. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/oauth2.py +0 -0
  172. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/utils.py +0 -0
  173. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/__init__.py +0 -0
  174. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/datasets.py +0 -0
  175. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/evaluations.py +0 -0
  176. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/experiment_evaluations.py +0 -0
  177. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/experiment_runs.py +0 -0
  178. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/experiments.py +0 -0
  179. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/pydantic_compat.py +0 -0
  180. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/spans.py +0 -0
  181. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/traces.py +0 -0
  182. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/routers/v1/utils.py +0 -0
  183. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/schema.py +0 -0
  184. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Annotation.py +0 -0
  185. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/AnnotationSummary.py +0 -0
  186. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/AnnotatorKind.py +0 -0
  187. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ApiKey.py +0 -0
  188. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/AuthMethod.py +0 -0
  189. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ChatCompletionMessageRole.py +0 -0
  190. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Cluster.py +0 -0
  191. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/CreateDatasetPayload.py +0 -0
  192. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DataQualityMetric.py +0 -0
  193. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Dataset.py +0 -0
  194. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DatasetExample.py +0 -0
  195. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DatasetExampleRevision.py +0 -0
  196. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DatasetValues.py +0 -0
  197. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DatasetVersion.py +0 -0
  198. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Dimension.py +0 -0
  199. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DimensionDataType.py +0 -0
  200. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DimensionShape.py +0 -0
  201. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DimensionType.py +0 -0
  202. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DimensionWithValue.py +0 -0
  203. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DocumentEvaluationSummary.py +0 -0
  204. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/DocumentRetrievalMetrics.py +0 -0
  205. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/EmbeddingDimension.py +0 -0
  206. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/EmbeddingMetadata.py +0 -0
  207. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Evaluation.py +0 -0
  208. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/EvaluationSummary.py +0 -0
  209. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Event.py +0 -0
  210. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/EventMetadata.py +0 -0
  211. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ExampleRevisionInterface.py +0 -0
  212. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Experiment.py +0 -0
  213. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ExperimentAnnotationSummary.py +0 -0
  214. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ExperimentComparison.py +0 -0
  215. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ExperimentRun.py +0 -0
  216. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ExperimentRunAnnotation.py +0 -0
  217. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ExportedFile.py +0 -0
  218. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Functionality.py +0 -0
  219. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/GenerativeModel.py +0 -0
  220. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/GenerativeProvider.py +0 -0
  221. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Inferences.py +0 -0
  222. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/InferencesRole.py +0 -0
  223. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/LabelFraction.py +0 -0
  224. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/MimeType.py +0 -0
  225. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Model.py +0 -0
  226. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/NumericRange.py +0 -0
  227. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/PerformanceMetric.py +0 -0
  228. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Project.py +0 -0
  229. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/PromptResponse.py +0 -0
  230. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Retrieval.py +0 -0
  231. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ScalarDriftMetricEnum.py +0 -0
  232. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Segments.py +0 -0
  233. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/SortDir.py +0 -0
  234. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Span.py +0 -0
  235. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/SpanAnnotation.py +0 -0
  236. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/SystemApiKey.py +0 -0
  237. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/TimeSeries.py +0 -0
  238. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/Trace.py +0 -0
  239. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/TraceAnnotation.py +0 -0
  240. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/UMAPPoints.py +0 -0
  241. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/User.py +0 -0
  242. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/UserApiKey.py +0 -0
  243. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/UserRole.py +0 -0
  244. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/ValidationResult.py +0 -0
  245. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/VectorDriftMetricEnum.py +0 -0
  246. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/__init__.py +0 -0
  247. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/node.py +0 -0
  248. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/types/pagination.py +0 -0
  249. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/api/utils.py +0 -0
  250. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/app.py +0 -0
  251. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/bearer_auth.py +0 -0
  252. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/dml_event.py +0 -0
  253. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/dml_event_handler.py +0 -0
  254. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/email/__init__.py +0 -0
  255. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/email/sender.py +0 -0
  256. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/email/templates/__init__.py +0 -0
  257. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/email/templates/password_reset.html +0 -0
  258. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/email/types.py +0 -0
  259. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/grpc_server.py +0 -0
  260. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/jwt_store.py +0 -0
  261. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/main.py +0 -0
  262. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/oauth2.py +0 -0
  263. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/openapi/__init__.py +0 -0
  264. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/prometheus.py +0 -0
  265. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/rate_limiters.py +0 -0
  266. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/apple-touch-icon-114x114.png +0 -0
  267. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/apple-touch-icon-120x120.png +0 -0
  268. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/apple-touch-icon-144x144.png +0 -0
  269. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/apple-touch-icon-152x152.png +0 -0
  270. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/apple-touch-icon-180x180.png +0 -0
  271. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/apple-touch-icon-72x72.png +0 -0
  272. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/apple-touch-icon-76x76.png +0 -0
  273. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/apple-touch-icon.png +0 -0
  274. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/assets/vendor-6IcPAw_j.js +0 -0
  275. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/assets/vendor-DxkFTwjz.css +0 -0
  276. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/assets/vendor-codemirror-DVE2_WBr.js +0 -0
  277. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/assets/vendor-recharts-DwrexFA4.js +0 -0
  278. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/assets/vendor-three-DwGkEfCM.js +0 -0
  279. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/favicon.ico +0 -0
  280. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/static/modernizr.js +0 -0
  281. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/telemetry.py +0 -0
  282. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/templates/__init__.py +0 -0
  283. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/templates/index.html +0 -0
  284. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/thread_server.py +0 -0
  285. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/server/types.py +0 -0
  286. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/services.py +0 -0
  287. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/session/__init__.py +0 -0
  288. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/session/client.py +0 -0
  289. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/session/data_extractor.py +0 -0
  290. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/session/evaluation.py +0 -0
  291. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/session/session.py +0 -0
  292. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/settings.py +0 -0
  293. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/__init__.py +0 -0
  294. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/attributes.py +0 -0
  295. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/dsl/README.md +0 -0
  296. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/dsl/__init__.py +0 -0
  297. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/dsl/filter.py +0 -0
  298. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/dsl/helpers.py +0 -0
  299. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/dsl/query.py +0 -0
  300. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/errors.py +0 -0
  301. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/evaluation_conventions.py +0 -0
  302. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/exporter.py +0 -0
  303. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/fixtures.py +0 -0
  304. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/otel.py +0 -0
  305. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/projects.py +0 -0
  306. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/schemas.py +0 -0
  307. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/span_evaluations.py +0 -0
  308. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/span_json_decoder.py +0 -0
  309. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/span_json_encoder.py +0 -0
  310. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/trace_dataset.py +0 -0
  311. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/utils.py +0 -0
  312. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/v1/__init__.py +0 -0
  313. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/v1/evaluation_pb2.py +0 -0
  314. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/trace/v1/evaluation_pb2.pyi +0 -0
  315. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/__init__.py +0 -0
  316. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/client.py +0 -0
  317. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/deprecation.py +0 -0
  318. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/error_handling.py +0 -0
  319. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/json.py +0 -0
  320. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/logging.py +0 -0
  321. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/project.py +0 -0
  322. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/re.py +0 -0
  323. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/span_store.py +0 -0
  324. {arize_phoenix-5.4.0 → arize_phoenix-5.5.1}/src/phoenix/utilities/template_formatters.py +0 -0
@@ -0,0 +1,262 @@
1
+ Metadata-Version: 2.3
2
+ Name: arize-phoenix
3
+ Version: 5.5.1
4
+ Summary: AI Observability and Evaluation
5
+ Project-URL: Documentation, https://docs.arize.com/phoenix/
6
+ Project-URL: Issues, https://github.com/Arize-ai/phoenix/issues
7
+ Project-URL: Source, https://github.com/Arize-ai/phoenix
8
+ Author-email: Arize AI <phoenix-devs@arize.com>
9
+ License: Elastic-2.0
10
+ License-File: IP_NOTICE
11
+ License-File: LICENSE
12
+ Keywords: Explainability,Monitoring,Observability
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Requires-Python: <3.13,>=3.9
19
+ Requires-Dist: aioitertools
20
+ Requires-Dist: aiosqlite
21
+ Requires-Dist: alembic<2,>=1.3.0
22
+ Requires-Dist: arize-phoenix-evals>=0.13.1
23
+ Requires-Dist: arize-phoenix-otel>=0.5.1
24
+ Requires-Dist: authlib
25
+ Requires-Dist: cachetools
26
+ Requires-Dist: fast-hdbscan>=0.2.0
27
+ Requires-Dist: fastapi
28
+ Requires-Dist: grpc-interceptor
29
+ Requires-Dist: grpcio
30
+ Requires-Dist: httpx
31
+ Requires-Dist: jinja2
32
+ Requires-Dist: numba>=0.60.0
33
+ Requires-Dist: numpy!=2.0.0
34
+ Requires-Dist: openinference-instrumentation>=0.1.12
35
+ Requires-Dist: openinference-semantic-conventions>=0.1.9
36
+ Requires-Dist: opentelemetry-exporter-otlp
37
+ Requires-Dist: opentelemetry-proto>=1.12.0
38
+ Requires-Dist: opentelemetry-sdk
39
+ Requires-Dist: opentelemetry-semantic-conventions
40
+ Requires-Dist: pandas>=1.0
41
+ Requires-Dist: protobuf<6.0,>=3.20.2
42
+ Requires-Dist: psutil
43
+ Requires-Dist: pyarrow
44
+ Requires-Dist: pydantic!=2.0.*,<3,>=1.0
45
+ Requires-Dist: python-multipart
46
+ Requires-Dist: scikit-learn
47
+ Requires-Dist: scipy
48
+ Requires-Dist: sqlalchemy[asyncio]<3,>=2.0.4
49
+ Requires-Dist: sqlean-py>=3.45.1
50
+ Requires-Dist: starlette
51
+ Requires-Dist: strawberry-graphql==0.243.1
52
+ Requires-Dist: tqdm
53
+ Requires-Dist: typing-extensions>=4.6
54
+ Requires-Dist: umap-learn
55
+ Requires-Dist: uvicorn
56
+ Requires-Dist: websockets
57
+ Requires-Dist: wrapt
58
+ Provides-Extra: container
59
+ Requires-Dist: anthropic; extra == 'container'
60
+ Requires-Dist: fast-hdbscan>=0.2.0; extra == 'container'
61
+ Requires-Dist: numba>=0.60.0; extra == 'container'
62
+ Requires-Dist: openai>=1.0.0; extra == 'container'
63
+ Requires-Dist: opentelemetry-exporter-otlp; extra == 'container'
64
+ Requires-Dist: opentelemetry-instrumentation-fastapi; extra == 'container'
65
+ Requires-Dist: opentelemetry-instrumentation-grpc; extra == 'container'
66
+ Requires-Dist: opentelemetry-instrumentation-sqlalchemy; extra == 'container'
67
+ Requires-Dist: opentelemetry-proto>=1.12.0; extra == 'container'
68
+ Requires-Dist: opentelemetry-sdk; extra == 'container'
69
+ Requires-Dist: opentelemetry-semantic-conventions; extra == 'container'
70
+ Requires-Dist: prometheus-client; extra == 'container'
71
+ Requires-Dist: py-grpc-prometheus; extra == 'container'
72
+ Requires-Dist: strawberry-graphql[opentelemetry]==0.243.1; extra == 'container'
73
+ Requires-Dist: umap-learn; extra == 'container'
74
+ Requires-Dist: uvloop; (platform_system != 'Windows') and extra == 'container'
75
+ Provides-Extra: dev
76
+ Requires-Dist: anthropic; extra == 'dev'
77
+ Requires-Dist: arize[autoembeddings,llm-evaluation]; extra == 'dev'
78
+ Requires-Dist: asgi-lifespan; extra == 'dev'
79
+ Requires-Dist: asyncpg; extra == 'dev'
80
+ Requires-Dist: faker>=30.1.0; extra == 'dev'
81
+ Requires-Dist: gcsfs; extra == 'dev'
82
+ Requires-Dist: google-cloud-aiplatform>=1.3; extra == 'dev'
83
+ Requires-Dist: grpc-interceptor[testing]; extra == 'dev'
84
+ Requires-Dist: hatch; extra == 'dev'
85
+ Requires-Dist: jupyter; extra == 'dev'
86
+ Requires-Dist: langchain>=0.0.334; extra == 'dev'
87
+ Requires-Dist: litellm>=1.0.3; extra == 'dev'
88
+ Requires-Dist: llama-index>=0.10.3; extra == 'dev'
89
+ Requires-Dist: mypy==1.11.2; extra == 'dev'
90
+ Requires-Dist: nbqa; extra == 'dev'
91
+ Requires-Dist: pandas-stubs==2.2.2.240603; extra == 'dev'
92
+ Requires-Dist: pandas>=1.0; extra == 'dev'
93
+ Requires-Dist: portpicker; extra == 'dev'
94
+ Requires-Dist: pre-commit; extra == 'dev'
95
+ Requires-Dist: prometheus-client; extra == 'dev'
96
+ Requires-Dist: psycopg[binary,pool]; extra == 'dev'
97
+ Requires-Dist: pytest-asyncio; extra == 'dev'
98
+ Requires-Dist: pytest-cov; extra == 'dev'
99
+ Requires-Dist: pytest-postgresql; extra == 'dev'
100
+ Requires-Dist: pytest-xdist; extra == 'dev'
101
+ Requires-Dist: pytest==8.3.3; extra == 'dev'
102
+ Requires-Dist: ruff==0.6.9; extra == 'dev'
103
+ Requires-Dist: strawberry-graphql[debug-server,opentelemetry]==0.243.1; extra == 'dev'
104
+ Requires-Dist: tabulate; extra == 'dev'
105
+ Requires-Dist: tox-uv==1.11.3; extra == 'dev'
106
+ Requires-Dist: tox==4.18.1; extra == 'dev'
107
+ Requires-Dist: types-tabulate; extra == 'dev'
108
+ Requires-Dist: uv==0.4.8; extra == 'dev'
109
+ Requires-Dist: uvloop; (platform_system != 'Windows') and extra == 'dev'
110
+ Provides-Extra: embeddings
111
+ Requires-Dist: fast-hdbscan>=0.2.0; extra == 'embeddings'
112
+ Requires-Dist: numba>=0.60.0; extra == 'embeddings'
113
+ Requires-Dist: umap-learn; extra == 'embeddings'
114
+ Provides-Extra: evals
115
+ Provides-Extra: experimental
116
+ Provides-Extra: llama-index
117
+ Requires-Dist: llama-index-agent-openai==0.2.7; extra == 'llama-index'
118
+ Requires-Dist: llama-index-embeddings-openai==0.1.10; extra == 'llama-index'
119
+ Requires-Dist: llama-index-llms-openai==0.1.24; extra == 'llama-index'
120
+ Requires-Dist: llama-index-readers-file==0.1.25; extra == 'llama-index'
121
+ Requires-Dist: llama-index==0.10.51; extra == 'llama-index'
122
+ Provides-Extra: pg
123
+ Requires-Dist: asyncpg; extra == 'pg'
124
+ Requires-Dist: psycopg[binary,pool]; extra == 'pg'
125
+ Provides-Extra: test
126
+ Description-Content-Type: text/markdown
127
+
128
+ <p align="center">
129
+ <a target="_blank" href="https://phoenix.arize.com" style="background:none">
130
+ <img alt="phoenix banner" src="https://github.com/Arize-ai/phoenix-assets/blob/main/images/socal/github-large-banner-phoenix.jpg?raw=true" width="auto" height="auto"></img>
131
+ </a>
132
+ <br/>
133
+ <br/>
134
+ <a href="https://docs.arize.com/phoenix/">
135
+ <img src="https://img.shields.io/static/v1?message=Docs&logo=data:image/png;base64,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&labelColor=grey&color=blue&logoColor=white&label=%20"/>
136
+ </a>
137
+ <a target="_blank" href="https://join.slack.com/t/arize-ai/shared_invite/zt-1px8dcmlf-fmThhDFD_V_48oU7ALan4Q">
138
+ <img src="https://img.shields.io/static/v1?message=Community&logo=slack&labelColor=grey&color=blue&logoColor=white&label=%20"/>
139
+ </a>
140
+ <a target="_blank" href="https://twitter.com/ArizePhoenix">
141
+ <img src="https://img.shields.io/badge/-ArizePhoenix-blue.svg?color=blue&labelColor=gray&logo=twitter">
142
+ </a>
143
+ <a target="_blank" href="https://pypi.org/project/arize-phoenix/">
144
+ <img src="https://img.shields.io/pypi/v/arize-phoenix?color=blue">
145
+ </a>
146
+ <a target="_blank" href="https://anaconda.org/conda-forge/arize-phoenix">
147
+ <img src="https://img.shields.io/conda/vn/conda-forge/arize-phoenix.svg?color=blue">
148
+ </a>
149
+ <a target="_blank" href="https://pypi.org/project/arize-phoenix/">
150
+ <img src="https://img.shields.io/pypi/pyversions/arize-phoenix">
151
+ </a>
152
+ <a target="_blank" href="https://hub.docker.com/r/arizephoenix/phoenix/tags">
153
+ <img src="https://img.shields.io/docker/v/arizephoenix/phoenix?sort=semver&logo=docker&label=image&color=blue">
154
+ </a>
155
+ </p>
156
+
157
+ Phoenix is an open-source AI observability platform designed for experimentation, evaluation, and troubleshooting. It provides:
158
+
159
+ - [**_Tracing_**](https://docs.arize.com/phoenix/tracing/integrations-tracing/llm-traces) - Trace your LLM application's runtime using OpenTelemetry-based instrumentation.
160
+ - [**_Evaluation_**](https://docs.arize.com/phoenix/evaluation/llm-evals) - Leverage LLMs to benchmark your application's performance using response and retrieval evals.
161
+ - [**_Datasets_**](https://docs.arize.com/phoenix/datasets-and-experiments/overview-datasets) - Create versioned datasets of examples for experimentation, evaluation, and fine-tuning.
162
+ - [**_Experiments_**](https://docs.arize.com/phoenix/datasets-and-experiments/overview-datasets#experiments) - Track and evaluate changes to prompts, LLMs, and retrieval.
163
+
164
+ Phoenix is vendor and language agnostic with out-of-the-box support for popular frameworks (🦙[LlamaIndex](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/llamaindex), 🦜⛓[LangChain](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/langchain), [Haystack](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/haystack), 🧩[DSPy](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/dspy)) and LLM providers ([OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/openai), [Bedrock](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/bedrock), [MistralAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/mistralai), [VertexAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/vertexai), [LiteLLM](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/litellm), and more). For details on auto-instrumentation, check out the [OpenInference](https://github.com/Arize-ai/openinference) project.
165
+
166
+ Phoenix runs practically anywhere, including your Jupyter notebook, local machine, containerized deployment, or in the cloud.
167
+
168
+ <img alt="phoenix_overview.gif" width="100%" src="https://github.com/Arize-ai/phoenix-assets/blob/main/gifs/phoenix_overview.gif?raw=true">
169
+
170
+ ## Installation
171
+
172
+ Install Phoenix via `pip` or `conda`
173
+
174
+ ```shell
175
+ pip install arize-phoenix
176
+ ```
177
+
178
+ Phoenix container images are available via [Docker Hub](https://hub.docker.com/r/arizephoenix/phoenix) and can be deployed using Docker or Kubernetes.
179
+
180
+ ## Features
181
+
182
+ | Key Features | Availability |
183
+ | ---------------------------------------------------------------------------------------------------------------- | -------------- |
184
+ | [Tracing](https://docs.arize.com/phoenix/tracing/concepts-tracing/what-are-traces) | ✅ |
185
+ | [Evaluation](https://docs.arize.com/phoenix/evaluation/llm-evals) | ✅ |
186
+ | [Retrieval (RAG) Analysis](https://docs.arize.com/phoenix/tracing/use-cases-tracing/rag-evaluation) | ✅ |
187
+ | [Datasets](https://docs.arize.com/phoenix/datasets-and-experiments/overview-datasets) | ✅ |
188
+ | [Fine-Tuning Export](https://docs.arize.com/phoenix/datasets-and-experiments/how-to-datasets/exporting-datasets) | ✅ |
189
+ | [Annotations](https://docs.arize.com/phoenix/tracing/concepts-tracing/how-to-annotate-traces) | ✅ |
190
+ | [Human Feedback](https://docs.arize.com/phoenix/tracing/how-to-tracing/capture-feedback) | ✅ |
191
+ | [Experiments](https://docs.arize.com/phoenix/datasets-and-experiments/how-to-experiments/run-experiments) | ✅ |
192
+ | [Embeddings Analysis](https://docs.arize.com/phoenix/inferences/phoenix-inferences) | ✅ |
193
+ | [Data Export](https://docs.arize.com/phoenix/tracing/how-to-tracing/extract-data-from-spans) | ✅ |
194
+ | REST API | ✅ |
195
+ | GraphQL API | ✅ |
196
+ | Data Retention | Costomizable |
197
+ | Authentication | ✅ |
198
+ | Social Login | ✅ |
199
+ | RBAC | ✅ |
200
+ | Projects | ✅ |
201
+ | [Self-Hosting](https://docs.arize.com/phoenix/deployment) | ✅ |
202
+ | Jupyter Notebooks | ✅ |
203
+ | [Sessions](https://github.com/Arize-ai/phoenix/issues/2619) | In Progress 🚧 |
204
+ | [Prompt Playground](https://github.com/Arize-ai/phoenix/issues/3435) | In Progress 🚧 |
205
+ | Prompt Management | Coming soon ⏱️ |
206
+
207
+ ## Tracing Integrations
208
+
209
+ Phoenix is built on top of OpenTelemetry and is vendor, language, and framework agnostic.
210
+
211
+ **Python**
212
+ | Integration | Package | Version Badge |
213
+ |------------------|-----------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
214
+ | [OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai) | `openinference-instrumentation-openai` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-openai.svg)](https://pypi.python.org/pypi/openinference-instrumentation-openai) |
215
+ | [LlamaIndex](https://docs.arize.com/phoenix/tracing/integrations-tracing/llamaindex) | `openinference-instrumentation-llama-index` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-llama-index.svg)](https://pypi.python.org/pypi/openinference-instrumentation-llama-index) |
216
+ | [DSPy](https://docs.arize.com/phoenix/tracing/integrations-tracing/dspy) | `openinference-instrumentation-dspy` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-dspy.svg)](https://pypi.python.org/pypi/openinference-instrumentation-dspy) |
217
+ | [AWS Bedrock](https://docs.arize.com/phoenix/tracing/integrations-tracing/bedrock) | `openinference-instrumentation-bedrock` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-bedrock.svg)](https://pypi.python.org/pypi/openinference-instrumentation-bedrock) |
218
+ | [LangChain](https://docs.arize.com/phoenix/tracing/integrations-tracing/langchain) | `openinference-instrumentation-langchain` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-langchain.svg)](https://pypi.python.org/pypi/openinference-instrumentation-langchain) |
219
+ | [MistralAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/mistralai) | `openinference-instrumentation-mistralai` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-mistralai.svg)](https://pypi.python.org/pypi/openinference-instrumentation-mistralai) |
220
+ | [Guardrails](https://docs.arize.com/phoenix/tracing/integrations-tracing/guardrails) | `openinference-instrumentation-guardrails` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-guardrails.svg)](https://pypi.python.org/pypi/openinference-instrumentation-guardrails) |
221
+ | [VertexAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/vertexai) | `openinference-instrumentation-vertexai` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-vertexai.svg)](https://pypi.python.org/pypi/openinference-instrumentation-vertexai) |
222
+ | [CrewAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/crewai) | `openinference-instrumentation-crewai` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-crewai.svg)](https://pypi.python.org/pypi/openinference-instrumentation-crewai) |
223
+ | [Haystack](https://docs.arize.com/phoenix/tracing/integrations-tracing/haystack) | `openinference-instrumentation-haystack` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-haystack.svg)](https://pypi.python.org/pypi/openinference-instrumentation-haystack) |
224
+ | [LiteLLM](https://docs.arize.com/phoenix/tracing/integrations-tracing/litellm) | `openinference-instrumentation-litellm` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-litellm.svg)](https://pypi.python.org/pypi/openinference-instrumentation-litellm) |
225
+ | [Groq](https://docs.arize.com/phoenix/tracing/integrations-tracing/groq) | `openinference-instrumentation-groq` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-groq.svg)](https://pypi.python.org/pypi/openinference-instrumentation-groq) |
226
+ | [Instructor](https://docs.arize.com/phoenix/tracing/integrations-tracing/instructor) | `openinference-instrumentation-instructor` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-instructor.svg)](https://pypi.python.org/pypi/openinference-instrumentation-instructor) |
227
+ | [Anthropic](https://docs.arize.com/phoenix/tracing/integrations-tracing/anthropic) | `openinference-instrumentation-anthropic` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-anthropic.svg)](https://pypi.python.org/pypi/openinference-instrumentation-anthropic) |
228
+
229
+ ### JavaScript
230
+
231
+ | Integration | Package | Version Badge |
232
+ | ------------------------------------------------------------------------------------------ | -------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
233
+ | [OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai-node-sdk) | `@arizeai/openinference-instrumentation-openai` | [![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-instrumentation-openai.svg)](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-openai) |
234
+ | [LangChain.js](https://docs.arize.com/phoenix/tracing/integrations-tracing/langchain.js) | `@arizeai/openinference-instrumentation-langchain` | [![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-instrumentation-langchain.svg)](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-langchain) |
235
+ | [Vercel AI SDK](https://docs.arize.com/phoenix/tracing/integrations-tracing/vercel-ai-sdk) | `@arizeai/openinference-vercel` | [![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-vercel)](https://www.npmjs.com/package/@arizeai/openinference-vercel) |
236
+
237
+ For details about tracing integrations and example applications, see the [OpenInference](https://github.com/Arize-ai/openinference) project.
238
+
239
+ ## Community
240
+
241
+ Join our community to connect with thousands of AI builders.
242
+
243
+ - 🌍 Join our [Slack community](https://join.slack.com/t/arize-ai/shared_invite/zt-1px8dcmlf-fmThhDFD_V_48oU7ALan4Q).
244
+ - 📚 Read our [documentation](https://docs.arize.com/phoenix).
245
+ - 💡 Ask questions and provide feedback in the _#phoenix-support_ channel.
246
+ - 🌟 Leave a star on our [GitHub](https://github.com/Arize-ai/phoenix).
247
+ - 🐞 Report bugs with [GitHub Issues](https://github.com/Arize-ai/phoenix/issues).
248
+ - 𝕏 Follow us on [𝕏](https://twitter.com/ArizePhoenix).
249
+ - 💌️ Sign up for our [mailing list](https://phoenix.arize.com/#updates).
250
+ - 🗺️ Check out our [roadmap](https://github.com/orgs/Arize-ai/projects/45) to see where we're heading next.
251
+
252
+ ## Breaking Changes
253
+
254
+ See the [migration guide](./MIGRATION.md) for a list of breaking changes.
255
+
256
+ ## Copyright, Patent, and License
257
+
258
+ Copyright 2024 Arize AI, Inc. All Rights Reserved.
259
+
260
+ Portions of this code are patent protected by one or more U.S. Patents. See [IP_NOTICE](https://github.com/Arize-ai/phoenix/blob/main/IP_NOTICE).
261
+
262
+ This software is licensed under the terms of the Elastic License 2.0 (ELv2). See [LICENSE](https://github.com/Arize-ai/phoenix/blob/main/LICENSE).
@@ -0,0 +1,135 @@
1
+ <p align="center">
2
+ <a target="_blank" href="https://phoenix.arize.com" style="background:none">
3
+ <img alt="phoenix banner" src="https://github.com/Arize-ai/phoenix-assets/blob/main/images/socal/github-large-banner-phoenix.jpg?raw=true" width="auto" height="auto"></img>
4
+ </a>
5
+ <br/>
6
+ <br/>
7
+ <a href="https://docs.arize.com/phoenix/">
8
+ <img src="https://img.shields.io/static/v1?message=Docs&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAG4ElEQVR4nO2d4XHjNhCFcTf+b3ZgdWCmgmMqOKUC0xXYrsBOBVEqsFRB7ApCVRCygrMriFQBM7h5mNlwKBECARLg7jeDscamSQj7sFgsQfBL27ZK4MtXsT1vRADMEQEwRwTAHBEAc0QAzBEBMEcEwBwRAHNEAMwRATBnjAByFGE+MqVUMcYOY24GVUqpb/h8VErVKAf87QNFcEcbd4WSw+D6803njHscO5sATmGEURGBiCj6yUlv1uX2gv91FsDViArbcA2RUKF8QhAV8RQc0b15DcOt0VaTE1oAfWj3dYdCBfGGsmSM0XX5HsP3nEMAXbqCeCdiOERQPx9og5exGJ0S4zRQN9KrUupfpdQWjZciure/YIj7K0bjqwTyAHdovA805iqCOg2xgnB1nZ97IvaoSCURdIPG/IHGjTH/YAz/A8KdJai7lBQzgbpx/0Hg6DT18UzWMXxSjMkDrElPNEmKfAbl6znwI3IMU/OCa0/1nfckwWaSbvWYYDnEsvCMJDNckhqu7GCMKWYOBXp9yPGd5kvqUAKf6rkAk7M2SY9QDXdEr9wEOr9x96EiejMFnixBNteDISsyNw7hHRqc22evWcP4vt39O85bzZH30AKg4+eo8cQRI4bHAJ7hyYM3CNHrG9RrimSXuZmUkZjN/O6nAPpcwCcJNmipAle2QM/1GU3vITCXhvY91u9geN/jOY27VuTnYL1PCeAcRhwh7/Bl8Ai+IuxPiOCShtfX/sPDtY8w+sZjby86dw6dBeoigD7obd/Ko6fI4BF8DA9HnGdrcU0fLt+n4dfE6H5jpjYcVdu2L23b5lpjHoo+18FDbcszddF1rUee/4C6ZiO+80rHZmjDoIQUQLdRtm3brkcKIUPjjqVPBIUHgW1GGN4YfawAL2IqAVB8iEE31tvIelARlCPPVaFOLoIupzY6xVcM4MoRUyHXyHhslH6PaPl5RP1Lh4UsOeKR2e8dzC0Aiuvc2Nx3fwhfxf/hknouUYbWUk5GTAIwmOh5e+H0cor8vEL91hfOdEqINLq1AV+RKImJ6869f9tFIBVc6y7gd3lHfWyNX0LEr7EuDElhRdAlQjig0e/RU31xxDltM4pF7IY3pLIgxAhhgzF/iC2M0Hi4dkOGlyGMd/g7dsMbUlsR9ICe9WhxbA3DjRkSdjiHzQzlBSKNJsCzIcUlYdfI0dcWS8LMkPDkcJ0n/O+Qyy/IAtDkSPnp4Fu4WpthQR/zm2VcoI/51fI28iYld9/HEh4Pf7D0Bm845pwIPnHMUJSf45pT5x68s5T9AW6INzhHDeP1BYcNMew5SghkinWOwVnaBhHGG5ybMn70zBDe8buh8X6DqV0Sa/5tWOIOIbcWQ8KBiGBnMb/P0OuTd/lddCrY5jn/VLm3nL+fY4X4YREuv8vS9wh6HSkAExMs0viKySZRd44iyOH2FzPe98Fll7A7GNMmjay4GF9BAKGXesfCN0sRsDG+YrhP4O2ACFgZXzHdKPL2RMJoxc34ivFOod3AMMNUj5XxFfOtYrUIXvB5MandS+G+V/AzZ+MrEcBPlpoFtUIEwBwRAG+OIgDe1CIA5ogAmCMCYI4IgDkiAOaIAJgjAmCOCIA5IgDmiACYIwJgjgiAOSIA5ogAmCMCYI4IgDkiAOaIAJgjAmCOCIA5IgDmiACYIwJgjgiAOSIA5ogAmCMCYI4IgDkiAOaIAJgjAmDOVYBXvwvxQV8NWJOd0esvJ94babZaz7B5ovldxnlDpYhp0JFr/KTlLKcEMMQKpcDPXIQxGXsYmhZnXAXQh/EWBQrr3bc80mATyyrEvs4+BdBHgbdxFOIhrDkSg1/6Iu2LCS0AyoqI4ftUF00EY/Q3h1fRj2JKAVCMGErmnsH1lfnemEsAlByvgl0z2qx5B8OPCuB8EIMADBlEEOV79j1whNE3c/X2PmISAGUNr7CEmUSUhjfEKgBDAY+QohCiNrwhdgEYzPv7UxkadvBg0RrekMrNoAozh3vLN4DPhc7S/WL52vkoSO1u4BZC+DOCulC0KJ/gqWaP7C8hlSGgjxyCmDuPsEePT/KuasrrAcyr4H+f6fq01yd7Sz1lD0CZ2hs06PVJufs+lrIiyLwufjfBtXYpjvWnWIoHoJSYe4dIK/t4HX1ULFEACkPCm8e8wXFJvZ6y1EWhJkDcWxw7RINzLc74auGrgg8e4oIm9Sh/CA7LwkvHqaIJ9pLI6Lmy1BigDy2EV8tjdzh+8XB6MGSLKH4INsZXDJ8MGhIBK+Mrpo+GnRIBO+MrZjFAFxoTNBwCvj6u4qvSZJiM3iNX4yvmHoA9Sh4PF0QAzBEBMEcEwBwRAHNEAMwRAXBGKfUfr5hKvglRfO4AAAAASUVORK5CYII=&labelColor=grey&color=blue&logoColor=white&label=%20"/>
9
+ </a>
10
+ <a target="_blank" href="https://join.slack.com/t/arize-ai/shared_invite/zt-1px8dcmlf-fmThhDFD_V_48oU7ALan4Q">
11
+ <img src="https://img.shields.io/static/v1?message=Community&logo=slack&labelColor=grey&color=blue&logoColor=white&label=%20"/>
12
+ </a>
13
+ <a target="_blank" href="https://twitter.com/ArizePhoenix">
14
+ <img src="https://img.shields.io/badge/-ArizePhoenix-blue.svg?color=blue&labelColor=gray&logo=twitter">
15
+ </a>
16
+ <a target="_blank" href="https://pypi.org/project/arize-phoenix/">
17
+ <img src="https://img.shields.io/pypi/v/arize-phoenix?color=blue">
18
+ </a>
19
+ <a target="_blank" href="https://anaconda.org/conda-forge/arize-phoenix">
20
+ <img src="https://img.shields.io/conda/vn/conda-forge/arize-phoenix.svg?color=blue">
21
+ </a>
22
+ <a target="_blank" href="https://pypi.org/project/arize-phoenix/">
23
+ <img src="https://img.shields.io/pypi/pyversions/arize-phoenix">
24
+ </a>
25
+ <a target="_blank" href="https://hub.docker.com/r/arizephoenix/phoenix/tags">
26
+ <img src="https://img.shields.io/docker/v/arizephoenix/phoenix?sort=semver&logo=docker&label=image&color=blue">
27
+ </a>
28
+ </p>
29
+
30
+ Phoenix is an open-source AI observability platform designed for experimentation, evaluation, and troubleshooting. It provides:
31
+
32
+ - [**_Tracing_**](https://docs.arize.com/phoenix/tracing/integrations-tracing/llm-traces) - Trace your LLM application's runtime using OpenTelemetry-based instrumentation.
33
+ - [**_Evaluation_**](https://docs.arize.com/phoenix/evaluation/llm-evals) - Leverage LLMs to benchmark your application's performance using response and retrieval evals.
34
+ - [**_Datasets_**](https://docs.arize.com/phoenix/datasets-and-experiments/overview-datasets) - Create versioned datasets of examples for experimentation, evaluation, and fine-tuning.
35
+ - [**_Experiments_**](https://docs.arize.com/phoenix/datasets-and-experiments/overview-datasets#experiments) - Track and evaluate changes to prompts, LLMs, and retrieval.
36
+
37
+ Phoenix is vendor and language agnostic with out-of-the-box support for popular frameworks (🦙[LlamaIndex](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/llamaindex), 🦜⛓[LangChain](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/langchain), [Haystack](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/haystack), 🧩[DSPy](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/dspy)) and LLM providers ([OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/openai), [Bedrock](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/bedrock), [MistralAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/mistralai), [VertexAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/vertexai), [LiteLLM](https://docs.arize.com/phoenix/tracing/integrations-tracing/integrations-tracing/litellm), and more). For details on auto-instrumentation, check out the [OpenInference](https://github.com/Arize-ai/openinference) project.
38
+
39
+ Phoenix runs practically anywhere, including your Jupyter notebook, local machine, containerized deployment, or in the cloud.
40
+
41
+ <img alt="phoenix_overview.gif" width="100%" src="https://github.com/Arize-ai/phoenix-assets/blob/main/gifs/phoenix_overview.gif?raw=true">
42
+
43
+ ## Installation
44
+
45
+ Install Phoenix via `pip` or `conda`
46
+
47
+ ```shell
48
+ pip install arize-phoenix
49
+ ```
50
+
51
+ Phoenix container images are available via [Docker Hub](https://hub.docker.com/r/arizephoenix/phoenix) and can be deployed using Docker or Kubernetes.
52
+
53
+ ## Features
54
+
55
+ | Key Features | Availability |
56
+ | ---------------------------------------------------------------------------------------------------------------- | -------------- |
57
+ | [Tracing](https://docs.arize.com/phoenix/tracing/concepts-tracing/what-are-traces) | ✅ |
58
+ | [Evaluation](https://docs.arize.com/phoenix/evaluation/llm-evals) | ✅ |
59
+ | [Retrieval (RAG) Analysis](https://docs.arize.com/phoenix/tracing/use-cases-tracing/rag-evaluation) | ✅ |
60
+ | [Datasets](https://docs.arize.com/phoenix/datasets-and-experiments/overview-datasets) | ✅ |
61
+ | [Fine-Tuning Export](https://docs.arize.com/phoenix/datasets-and-experiments/how-to-datasets/exporting-datasets) | ✅ |
62
+ | [Annotations](https://docs.arize.com/phoenix/tracing/concepts-tracing/how-to-annotate-traces) | ✅ |
63
+ | [Human Feedback](https://docs.arize.com/phoenix/tracing/how-to-tracing/capture-feedback) | ✅ |
64
+ | [Experiments](https://docs.arize.com/phoenix/datasets-and-experiments/how-to-experiments/run-experiments) | ✅ |
65
+ | [Embeddings Analysis](https://docs.arize.com/phoenix/inferences/phoenix-inferences) | ✅ |
66
+ | [Data Export](https://docs.arize.com/phoenix/tracing/how-to-tracing/extract-data-from-spans) | ✅ |
67
+ | REST API | ✅ |
68
+ | GraphQL API | ✅ |
69
+ | Data Retention | Costomizable |
70
+ | Authentication | ✅ |
71
+ | Social Login | ✅ |
72
+ | RBAC | ✅ |
73
+ | Projects | ✅ |
74
+ | [Self-Hosting](https://docs.arize.com/phoenix/deployment) | ✅ |
75
+ | Jupyter Notebooks | ✅ |
76
+ | [Sessions](https://github.com/Arize-ai/phoenix/issues/2619) | In Progress 🚧 |
77
+ | [Prompt Playground](https://github.com/Arize-ai/phoenix/issues/3435) | In Progress 🚧 |
78
+ | Prompt Management | Coming soon ⏱️ |
79
+
80
+ ## Tracing Integrations
81
+
82
+ Phoenix is built on top of OpenTelemetry and is vendor, language, and framework agnostic.
83
+
84
+ **Python**
85
+ | Integration | Package | Version Badge |
86
+ |------------------|-----------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|
87
+ | [OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai) | `openinference-instrumentation-openai` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-openai.svg)](https://pypi.python.org/pypi/openinference-instrumentation-openai) |
88
+ | [LlamaIndex](https://docs.arize.com/phoenix/tracing/integrations-tracing/llamaindex) | `openinference-instrumentation-llama-index` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-llama-index.svg)](https://pypi.python.org/pypi/openinference-instrumentation-llama-index) |
89
+ | [DSPy](https://docs.arize.com/phoenix/tracing/integrations-tracing/dspy) | `openinference-instrumentation-dspy` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-dspy.svg)](https://pypi.python.org/pypi/openinference-instrumentation-dspy) |
90
+ | [AWS Bedrock](https://docs.arize.com/phoenix/tracing/integrations-tracing/bedrock) | `openinference-instrumentation-bedrock` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-bedrock.svg)](https://pypi.python.org/pypi/openinference-instrumentation-bedrock) |
91
+ | [LangChain](https://docs.arize.com/phoenix/tracing/integrations-tracing/langchain) | `openinference-instrumentation-langchain` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-langchain.svg)](https://pypi.python.org/pypi/openinference-instrumentation-langchain) |
92
+ | [MistralAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/mistralai) | `openinference-instrumentation-mistralai` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-mistralai.svg)](https://pypi.python.org/pypi/openinference-instrumentation-mistralai) |
93
+ | [Guardrails](https://docs.arize.com/phoenix/tracing/integrations-tracing/guardrails) | `openinference-instrumentation-guardrails` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-guardrails.svg)](https://pypi.python.org/pypi/openinference-instrumentation-guardrails) |
94
+ | [VertexAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/vertexai) | `openinference-instrumentation-vertexai` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-vertexai.svg)](https://pypi.python.org/pypi/openinference-instrumentation-vertexai) |
95
+ | [CrewAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/crewai) | `openinference-instrumentation-crewai` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-crewai.svg)](https://pypi.python.org/pypi/openinference-instrumentation-crewai) |
96
+ | [Haystack](https://docs.arize.com/phoenix/tracing/integrations-tracing/haystack) | `openinference-instrumentation-haystack` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-haystack.svg)](https://pypi.python.org/pypi/openinference-instrumentation-haystack) |
97
+ | [LiteLLM](https://docs.arize.com/phoenix/tracing/integrations-tracing/litellm) | `openinference-instrumentation-litellm` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-litellm.svg)](https://pypi.python.org/pypi/openinference-instrumentation-litellm) |
98
+ | [Groq](https://docs.arize.com/phoenix/tracing/integrations-tracing/groq) | `openinference-instrumentation-groq` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-groq.svg)](https://pypi.python.org/pypi/openinference-instrumentation-groq) |
99
+ | [Instructor](https://docs.arize.com/phoenix/tracing/integrations-tracing/instructor) | `openinference-instrumentation-instructor` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-instructor.svg)](https://pypi.python.org/pypi/openinference-instrumentation-instructor) |
100
+ | [Anthropic](https://docs.arize.com/phoenix/tracing/integrations-tracing/anthropic) | `openinference-instrumentation-anthropic` | [![PyPI Version](https://img.shields.io/pypi/v/openinference-instrumentation-anthropic.svg)](https://pypi.python.org/pypi/openinference-instrumentation-anthropic) |
101
+
102
+ ### JavaScript
103
+
104
+ | Integration | Package | Version Badge |
105
+ | ------------------------------------------------------------------------------------------ | -------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
106
+ | [OpenAI](https://docs.arize.com/phoenix/tracing/integrations-tracing/openai-node-sdk) | `@arizeai/openinference-instrumentation-openai` | [![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-instrumentation-openai.svg)](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-openai) |
107
+ | [LangChain.js](https://docs.arize.com/phoenix/tracing/integrations-tracing/langchain.js) | `@arizeai/openinference-instrumentation-langchain` | [![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-instrumentation-langchain.svg)](https://www.npmjs.com/package/@arizeai/openinference-instrumentation-langchain) |
108
+ | [Vercel AI SDK](https://docs.arize.com/phoenix/tracing/integrations-tracing/vercel-ai-sdk) | `@arizeai/openinference-vercel` | [![NPM Version](https://img.shields.io/npm/v/@arizeai/openinference-vercel)](https://www.npmjs.com/package/@arizeai/openinference-vercel) |
109
+
110
+ For details about tracing integrations and example applications, see the [OpenInference](https://github.com/Arize-ai/openinference) project.
111
+
112
+ ## Community
113
+
114
+ Join our community to connect with thousands of AI builders.
115
+
116
+ - 🌍 Join our [Slack community](https://join.slack.com/t/arize-ai/shared_invite/zt-1px8dcmlf-fmThhDFD_V_48oU7ALan4Q).
117
+ - 📚 Read our [documentation](https://docs.arize.com/phoenix).
118
+ - 💡 Ask questions and provide feedback in the _#phoenix-support_ channel.
119
+ - 🌟 Leave a star on our [GitHub](https://github.com/Arize-ai/phoenix).
120
+ - 🐞 Report bugs with [GitHub Issues](https://github.com/Arize-ai/phoenix/issues).
121
+ - 𝕏 Follow us on [𝕏](https://twitter.com/ArizePhoenix).
122
+ - 💌️ Sign up for our [mailing list](https://phoenix.arize.com/#updates).
123
+ - 🗺️ Check out our [roadmap](https://github.com/orgs/Arize-ai/projects/45) to see where we're heading next.
124
+
125
+ ## Breaking Changes
126
+
127
+ See the [migration guide](./MIGRATION.md) for a list of breaking changes.
128
+
129
+ ## Copyright, Patent, and License
130
+
131
+ Copyright 2024 Arize AI, Inc. All Rights Reserved.
132
+
133
+ Portions of this code are patent protected by one or more U.S. Patents. See [IP_NOTICE](https://github.com/Arize-ai/phoenix/blob/main/IP_NOTICE).
134
+
135
+ This software is licensed under the terms of the Elastic License 2.0 (ELv2). See [LICENSE](https://github.com/Arize-ai/phoenix/blob/main/LICENSE).
@@ -123,6 +123,7 @@ pg = [
123
123
  "psycopg[binary,pool]",
124
124
  ]
125
125
  container = [
126
+ "anthropic",
126
127
  "prometheus-client",
127
128
  "openai>=1.0.0",
128
129
  "opentelemetry-sdk",