arize-phoenix 3.19.2__tar.gz → 3.19.3rc1__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.
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/PKG-INFO +4 -4
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/README.md +1 -1
- arize_phoenix-3.19.3rc1/examples/manually-instrumented-chatbot/chat/app.py +189 -0
- arize_phoenix-3.19.3rc1/examples/manually-instrumented-chatbot/chat/types.py +18 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/pyproject.toml +1 -1
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/app.py +1 -2
- arize_phoenix-3.19.3rc1/src/phoenix/server/static/index.css +153 -0
- arize_phoenix-3.19.3rc1/src/phoenix/server/static/index.css.map +7 -0
- arize_phoenix-3.19.3rc1/src/phoenix/server/static/index.js +217610 -0
- arize_phoenix-3.19.3rc1/src/phoenix/server/static/index.js.map +7 -0
- arize_phoenix-3.19.3rc1/src/phoenix/storage/__init__.py +0 -0
- arize_phoenix-3.19.3rc1/src/phoenix/version.py +1 -0
- arize_phoenix-3.19.2/src/phoenix/server/static/index.css +0 -6
- arize_phoenix-3.19.2/src/phoenix/server/static/index.js +0 -7479
- arize_phoenix-3.19.2/src/phoenix/version.py +0 -1
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/.gitignore +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/IP_NOTICE +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/LICENSE +0 -0
- {arize_phoenix-3.19.2/src/phoenix/core → arize_phoenix-3.19.3rc1/examples/manually-instrumented-chatbot/chat}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/config.py +0 -0
- {arize_phoenix-3.19.2/src/phoenix/datasets → arize_phoenix-3.19.3rc1/src/phoenix/core}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/core/embedding_dimension.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/core/model.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/core/model_schema.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/core/model_schema_adapter.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/core/project.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/core/traces.py +0 -0
- {arize_phoenix-3.19.2/src/phoenix/experimental → arize_phoenix-3.19.3rc1/src/phoenix/datasets}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/datasets/dataset.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/datasets/errors.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/datasets/fixtures.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/datasets/schema.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/datasets/validation.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/datetime_utils.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/exceptions.py +0 -0
- {arize_phoenix-3.19.2/src/phoenix/server → arize_phoenix-3.19.3rc1/src/phoenix/experimental}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/evaluators.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/functions/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/functions/classify.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/functions/executor.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/functions/generate.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/functions/processing.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/models/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/models/anthropic.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/models/base.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/models/bedrock.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/models/litellm.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/models/openai.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/models/rate_limiters.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/models/vertex.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/models/vertexai.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/retrievals.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/templates/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/templates/default_templates.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/templates/template.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/utils/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/experimental/evals/utils/threads.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/metrics/README.md +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/metrics/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/metrics/binning.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/metrics/metrics.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/metrics/mixins.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/metrics/retrieval_metrics.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/metrics/timeseries.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/metrics/wrappers.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/pointcloud/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/pointcloud/clustering.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/pointcloud/pointcloud.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/pointcloud/projectors.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/pointcloud/umap_parameters.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/py.typed +0 -0
- {arize_phoenix-3.19.2/src/phoenix/server/api → arize_phoenix-3.19.3rc1/src/phoenix/server}/__init__.py +0 -0
- {arize_phoenix-3.19.2/src/phoenix/server/api/input_types → arize_phoenix-3.19.3rc1/src/phoenix/server/api}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/context.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/helpers.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/input_types/ClusterInput.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/input_types/Coordinates.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/input_types/DataQualityMetricInput.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/input_types/DimensionFilter.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/input_types/DimensionInput.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/input_types/Granularity.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/input_types/PerformanceMetricInput.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/input_types/SpanSort.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/input_types/TimeRange.py +0 -0
- {arize_phoenix-3.19.2/src/phoenix/server/api/routers → arize_phoenix-3.19.3rc1/src/phoenix/server/api/input_types}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/interceptor.py +0 -0
- {arize_phoenix-3.19.2/src/phoenix/server/api/types → arize_phoenix-3.19.3rc1/src/phoenix/server/api/routers}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/routers/evaluation_handler.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/routers/span_handler.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/routers/trace_handler.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/routers/utils.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/schema.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Cluster.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/DataQualityMetric.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Dataset.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/DatasetRole.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/DatasetValues.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Dimension.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/DimensionDataType.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/DimensionShape.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/DimensionType.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/DimensionWithValue.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/DocumentEvaluationSummary.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/DocumentRetrievalMetrics.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/EmbeddingDimension.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/EmbeddingMetadata.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Evaluation.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/EvaluationSummary.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Event.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/EventMetadata.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/ExportEventsMutation.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/ExportedFile.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Functionality.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/MimeType.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Model.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/NumericRange.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/PerformanceMetric.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Project.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/PromptResponse.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Retrieval.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/ScalarDriftMetricEnum.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Segments.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/SortDir.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Span.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/TimeSeries.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/Trace.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/UMAPPoints.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/ValidationResult.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/VectorDriftMetricEnum.py +0 -0
- {arize_phoenix-3.19.2/src/phoenix/server/templates → arize_phoenix-3.19.3rc1/src/phoenix/server/api/types}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/node.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/api/types/pagination.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/main.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/prometheus.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/apple-touch-icon-114x114.png +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/apple-touch-icon-120x120.png +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/apple-touch-icon-144x144.png +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/apple-touch-icon-152x152.png +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/apple-touch-icon-180x180.png +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/apple-touch-icon-72x72.png +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/apple-touch-icon-76x76.png +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/apple-touch-icon.png +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/favicon.ico +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/static/modernizr.js +0 -0
- {arize_phoenix-3.19.2/src/phoenix/session → arize_phoenix-3.19.3rc1/src/phoenix/server/templates}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/templates/index.html +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/server/thread_server.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/services.py +0 -0
- {arize_phoenix-3.19.2/src/phoenix/storage → arize_phoenix-3.19.3rc1/src/phoenix/session}/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/session/client.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/session/data_extractor.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/session/evaluation.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/session/session.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/storage/span_store/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/storage/span_store/text_file.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/dsl/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/dsl/filter.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/dsl/helpers.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/dsl/missing.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/dsl/query.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/errors.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/evaluation_conventions.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/exporter.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/fixtures.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/langchain/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/langchain/instrumentor.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/llama_index/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/llama_index/callback.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/openai/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/openai/instrumentor.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/otel.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/projects.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/schemas.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/span_evaluations.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/span_json_decoder.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/span_json_encoder.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/trace_dataset.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/utils.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/v1/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/v1/evaluation_pb2.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/trace/v1/evaluation_pb2.pyi +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/utilities/__init__.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/utilities/error_handling.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/utilities/logging.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/utilities/project.py +0 -0
- {arize_phoenix-3.19.2 → arize_phoenix-3.19.3rc1}/src/phoenix/utilities/span_store.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: arize-phoenix
|
|
3
|
-
Version: 3.19.
|
|
3
|
+
Version: 3.19.3rc1
|
|
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
|
|
7
7
|
Project-URL: Source, https://github.com/Arize-ai/phoenix
|
|
8
8
|
Author-email: Arize AI <phoenix-devs@arize.com>
|
|
9
|
-
License
|
|
9
|
+
License: Elastic-2.0
|
|
10
10
|
License-File: IP_NOTICE
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Keywords: Explainability,Monitoring,Observability
|
|
@@ -100,7 +100,7 @@ Description-Content-Type: text/markdown
|
|
|
100
100
|
<a target="_blank" href="https://pypi.org/project/arize-phoenix/">
|
|
101
101
|
<img src="https://img.shields.io/pypi/pyversions/arize-phoenix">
|
|
102
102
|
</a>
|
|
103
|
-
<a target="_blank" href="https://hub.docker.com/
|
|
103
|
+
<a target="_blank" href="https://hub.docker.com/r/arizephoenix/phoenix/tags">
|
|
104
104
|
<img src="https://img.shields.io/docker/v/arizephoenix/phoenix?sort=semver&logo=docker&label=image&color=blue">
|
|
105
105
|
</a>
|
|
106
106
|
</p>
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<a target="_blank" href="https://pypi.org/project/arize-phoenix/">
|
|
23
23
|
<img src="https://img.shields.io/pypi/pyversions/arize-phoenix">
|
|
24
24
|
</a>
|
|
25
|
-
<a target="_blank" href="https://hub.docker.com/
|
|
25
|
+
<a target="_blank" href="https://hub.docker.com/r/arizephoenix/phoenix/tags">
|
|
26
26
|
<img src="https://img.shields.io/docker/v/arizephoenix/phoenix?sort=semver&logo=docker&label=image&color=blue">
|
|
27
27
|
</a>
|
|
28
28
|
</p>
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import os
|
|
3
|
+
from typing import Any, Dict, Iterator, List, Tuple
|
|
4
|
+
|
|
5
|
+
from fastapi import FastAPI, HTTPException
|
|
6
|
+
from httpx import AsyncClient
|
|
7
|
+
from openinference.semconv.trace import (
|
|
8
|
+
MessageAttributes,
|
|
9
|
+
OpenInferenceMimeTypeValues,
|
|
10
|
+
OpenInferenceSpanKindValues,
|
|
11
|
+
SpanAttributes,
|
|
12
|
+
)
|
|
13
|
+
from opentelemetry import trace as trace_api
|
|
14
|
+
from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter
|
|
15
|
+
from opentelemetry.sdk import trace as trace_sdk
|
|
16
|
+
from opentelemetry.sdk.trace.export import (
|
|
17
|
+
SimpleSpanProcessor,
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
from chat.types import Message, MessagesPayload, MessagesResponse
|
|
21
|
+
|
|
22
|
+
endpoint = "http://127.0.0.1:6006/v1/traces"
|
|
23
|
+
tracer_provider = trace_sdk.TracerProvider()
|
|
24
|
+
tracer_provider.add_span_processor(SimpleSpanProcessor(OTLPSpanExporter(endpoint)))
|
|
25
|
+
trace_api.set_tracer_provider(tracer_provider)
|
|
26
|
+
tracer = trace_api.get_tracer(__name__)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def getenv_or_raise(key: str) -> str:
|
|
30
|
+
if not (value := os.getenv(key)):
|
|
31
|
+
raise ValueError(f"Please set the {key} environment variable.")
|
|
32
|
+
return value
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
OPENAI_API_KEY = getenv_or_raise("OPENAI_API_KEY")
|
|
36
|
+
OPENAI_API_URL = "https://api.openai.com/v1/chat/completions"
|
|
37
|
+
OPENAI_MODEL = "gpt-4"
|
|
38
|
+
|
|
39
|
+
http_client = AsyncClient()
|
|
40
|
+
app = FastAPI()
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
class OpenAIException(HTTPException):
|
|
44
|
+
pass
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
@app.post("/messages/")
|
|
48
|
+
async def messages(messages_payload: MessagesPayload) -> MessagesResponse:
|
|
49
|
+
messages = messages_payload.messages
|
|
50
|
+
invocation_parameters = {"temperature": 0.1}
|
|
51
|
+
openai_payload = {
|
|
52
|
+
"model": OPENAI_MODEL,
|
|
53
|
+
**invocation_parameters,
|
|
54
|
+
"messages": [message.model_dump() for message in messages],
|
|
55
|
+
}
|
|
56
|
+
with tracer.start_as_current_span("OpenAI Async Chat Completion") as span:
|
|
57
|
+
for attribute_key, attribute_value in (
|
|
58
|
+
*_llm_span_kind_attributes(),
|
|
59
|
+
*_llm_model_name_attributes(OPENAI_MODEL),
|
|
60
|
+
*_llm_invocation_parameters_attributes(invocation_parameters),
|
|
61
|
+
*_input_attributes(openai_payload),
|
|
62
|
+
*_llm_input_messages_attributes(messages),
|
|
63
|
+
):
|
|
64
|
+
span.set_attribute(attribute_key, attribute_value)
|
|
65
|
+
response = await http_client.post(
|
|
66
|
+
OPENAI_API_URL,
|
|
67
|
+
headers={
|
|
68
|
+
"Content-Type": "application/json",
|
|
69
|
+
"Authorization": f"Bearer {OPENAI_API_KEY}",
|
|
70
|
+
},
|
|
71
|
+
json=openai_payload,
|
|
72
|
+
)
|
|
73
|
+
if not (200 <= response.status_code < 300):
|
|
74
|
+
raise OpenAIException(
|
|
75
|
+
status_code=500, detail=response.content.decode("utf-8")
|
|
76
|
+
)
|
|
77
|
+
span.set_status(trace_api.StatusCode.OK)
|
|
78
|
+
response_data = response.json()
|
|
79
|
+
assistant_message_content = response_data["choices"][0]["message"]["content"]
|
|
80
|
+
assistant_message = Message(
|
|
81
|
+
role="assistant",
|
|
82
|
+
content=assistant_message_content,
|
|
83
|
+
)
|
|
84
|
+
for (
|
|
85
|
+
attribute_key,
|
|
86
|
+
attribute_value,
|
|
87
|
+
) in (
|
|
88
|
+
*_output_attributes(response_data),
|
|
89
|
+
*_llm_output_message_attributes(assistant_message),
|
|
90
|
+
*_llm_token_usage_attributes(response_data),
|
|
91
|
+
):
|
|
92
|
+
span.set_attribute(attribute_key, attribute_value)
|
|
93
|
+
return MessagesResponse(message=assistant_message)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
def _llm_span_kind_attributes() -> Iterator[Tuple[str, str]]:
|
|
97
|
+
"""
|
|
98
|
+
Yields the OpenInference span kind attribute for LLMs.
|
|
99
|
+
"""
|
|
100
|
+
yield SpanAttributes.OPENINFERENCE_SPAN_KIND, OpenInferenceSpanKindValues.LLM.value
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
def _llm_model_name_attributes(model_name: str) -> Iterator[Tuple[str, str]]:
|
|
104
|
+
"""
|
|
105
|
+
Yields the OpenInference model name attribute.
|
|
106
|
+
"""
|
|
107
|
+
yield SpanAttributes.LLM_MODEL_NAME, model_name
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
def _llm_invocation_parameters_attributes(
|
|
111
|
+
invocation_parameters: Dict[str, Any],
|
|
112
|
+
) -> Iterator[Tuple[str, str]]:
|
|
113
|
+
"""
|
|
114
|
+
Yields the OpenInference invocation parameters attribute as a JSON string.
|
|
115
|
+
"""
|
|
116
|
+
yield SpanAttributes.LLM_INVOCATION_PARAMETERS, json.dumps(invocation_parameters)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
def _input_attributes(payload: Any) -> Iterator[Tuple[str, str]]:
|
|
120
|
+
"""
|
|
121
|
+
Yields the OpenInference input value attribute as a JSON string if the
|
|
122
|
+
payload can be serialized as JSON, otherwise as a string.
|
|
123
|
+
"""
|
|
124
|
+
try:
|
|
125
|
+
yield SpanAttributes.INPUT_VALUE, json.dumps(payload)
|
|
126
|
+
yield SpanAttributes.INPUT_MIME_TYPE, OpenInferenceMimeTypeValues.JSON.value
|
|
127
|
+
except json.JSONDecodeError:
|
|
128
|
+
yield SpanAttributes.INPUT_VALUE, str(payload)
|
|
129
|
+
yield SpanAttributes.INPUT_MIME_TYPE, OpenInferenceMimeTypeValues.TEXT.value
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
def _llm_input_messages_attributes(
|
|
133
|
+
messages: List[Message],
|
|
134
|
+
) -> Iterator[Tuple[str, str]]:
|
|
135
|
+
"""
|
|
136
|
+
Yields the OpenInference input messages attributes for each message in the list.
|
|
137
|
+
"""
|
|
138
|
+
for messages_index, message in enumerate(messages):
|
|
139
|
+
yield (
|
|
140
|
+
f"{SpanAttributes.LLM_INPUT_MESSAGES}.{messages_index}.{MessageAttributes.MESSAGE_ROLE}",
|
|
141
|
+
message.role,
|
|
142
|
+
)
|
|
143
|
+
yield (
|
|
144
|
+
f"{SpanAttributes.LLM_INPUT_MESSAGES}.{messages_index}.{MessageAttributes.MESSAGE_CONTENT}",
|
|
145
|
+
message.content,
|
|
146
|
+
)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
def _output_attributes(payload: Any) -> Iterator[Tuple[str, str]]:
|
|
150
|
+
"""
|
|
151
|
+
Yields the OpenInference output value attribute as a JSON string if the
|
|
152
|
+
payload can be serialized as JSON, otherwise as a string.
|
|
153
|
+
"""
|
|
154
|
+
try:
|
|
155
|
+
yield SpanAttributes.OUTPUT_VALUE, json.dumps(payload)
|
|
156
|
+
yield SpanAttributes.OUTPUT_MIME_TYPE, OpenInferenceMimeTypeValues.JSON.value
|
|
157
|
+
except json.JSONDecodeError:
|
|
158
|
+
yield SpanAttributes.OUTPUT_VALUE, str(payload)
|
|
159
|
+
yield SpanAttributes.OUTPUT_MIME_TYPE, OpenInferenceMimeTypeValues.TEXT.value
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
def _llm_output_message_attributes(message: Message) -> Iterator[Tuple[str, str]]:
|
|
163
|
+
"""
|
|
164
|
+
Yields the OpenInference output message attributes.
|
|
165
|
+
"""
|
|
166
|
+
yield (
|
|
167
|
+
f"{SpanAttributes.LLM_OUTPUT_MESSAGES}.0.{MessageAttributes.MESSAGE_ROLE}",
|
|
168
|
+
message.role,
|
|
169
|
+
)
|
|
170
|
+
yield (
|
|
171
|
+
f"{SpanAttributes.LLM_OUTPUT_MESSAGES}.0.{MessageAttributes.MESSAGE_CONTENT}",
|
|
172
|
+
message.content,
|
|
173
|
+
)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
def _llm_token_usage_attributes(
|
|
177
|
+
response_data: Dict[str, Any],
|
|
178
|
+
) -> Iterator[Tuple[str, int]]:
|
|
179
|
+
"""
|
|
180
|
+
Parses and yields token usage attributes from the response data.
|
|
181
|
+
"""
|
|
182
|
+
if not isinstance((usage := response_data.get("usage")), dict):
|
|
183
|
+
return
|
|
184
|
+
if prompt_tokens := usage.get("prompt_tokens"):
|
|
185
|
+
yield SpanAttributes.LLM_TOKEN_COUNT_PROMPT, prompt_tokens
|
|
186
|
+
if completion_tokens := usage.get("completion_tokens"):
|
|
187
|
+
yield SpanAttributes.LLM_TOKEN_COUNT_COMPLETION, completion_tokens
|
|
188
|
+
if total_tokens := usage.get("total_tokens"):
|
|
189
|
+
yield SpanAttributes.LLM_TOKEN_COUNT_TOTAL, total_tokens
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from typing import List, Literal
|
|
2
|
+
|
|
3
|
+
from pydantic import BaseModel
|
|
4
|
+
|
|
5
|
+
Role = Literal["system", "assistant", "user"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class Message(BaseModel):
|
|
9
|
+
role: Role
|
|
10
|
+
content: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class MessagesPayload(BaseModel):
|
|
14
|
+
messages: List[Message]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class MessagesResponse(BaseModel):
|
|
18
|
+
message: Message
|
|
@@ -3,7 +3,7 @@ name = "arize-phoenix"
|
|
|
3
3
|
description = "AI Observability and Evaluation"
|
|
4
4
|
readme = "README.md"
|
|
5
5
|
requires-python = ">=3.8, <3.13"
|
|
6
|
-
license = "Elastic-2.0"
|
|
6
|
+
license = {text="Elastic-2.0"}
|
|
7
7
|
license-files = { paths = ["LICENSE", "IP_NOTICE"] }
|
|
8
8
|
keywords = [
|
|
9
9
|
"Observability",
|
|
@@ -10,7 +10,7 @@ from starlette.middleware import Middleware
|
|
|
10
10
|
from starlette.middleware.base import BaseHTTPMiddleware, RequestResponseEndpoint
|
|
11
11
|
from starlette.requests import Request
|
|
12
12
|
from starlette.responses import FileResponse, PlainTextResponse, Response
|
|
13
|
-
from starlette.routing import Mount, Route
|
|
13
|
+
from starlette.routing import Mount, Route
|
|
14
14
|
from starlette.staticfiles import StaticFiles
|
|
15
15
|
from starlette.templating import Jinja2Templates
|
|
16
16
|
from starlette.types import Scope
|
|
@@ -205,7 +205,6 @@ def create_app(
|
|
|
205
205
|
"/graphql",
|
|
206
206
|
graphql,
|
|
207
207
|
),
|
|
208
|
-
WebSocketRoute("/graphql", graphql),
|
|
209
208
|
Mount(
|
|
210
209
|
"/",
|
|
211
210
|
app=Static(
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
/* node_modules/.pnpm/normalize.css@8.0.1/node_modules/normalize.css/normalize.css */
|
|
2
|
+
html {
|
|
3
|
+
line-height: 1.15;
|
|
4
|
+
-webkit-text-size-adjust: 100%;
|
|
5
|
+
}
|
|
6
|
+
body {
|
|
7
|
+
margin: 0;
|
|
8
|
+
}
|
|
9
|
+
main {
|
|
10
|
+
display: block;
|
|
11
|
+
}
|
|
12
|
+
h1 {
|
|
13
|
+
font-size: 2em;
|
|
14
|
+
margin: 0.67em 0;
|
|
15
|
+
}
|
|
16
|
+
hr {
|
|
17
|
+
box-sizing: content-box;
|
|
18
|
+
height: 0;
|
|
19
|
+
overflow: visible;
|
|
20
|
+
}
|
|
21
|
+
pre {
|
|
22
|
+
font-family: monospace, monospace;
|
|
23
|
+
font-size: 1em;
|
|
24
|
+
}
|
|
25
|
+
a {
|
|
26
|
+
background-color: transparent;
|
|
27
|
+
}
|
|
28
|
+
abbr[title] {
|
|
29
|
+
border-bottom: none;
|
|
30
|
+
text-decoration: underline;
|
|
31
|
+
text-decoration: underline dotted;
|
|
32
|
+
}
|
|
33
|
+
b,
|
|
34
|
+
strong {
|
|
35
|
+
font-weight: bolder;
|
|
36
|
+
}
|
|
37
|
+
code,
|
|
38
|
+
kbd,
|
|
39
|
+
samp {
|
|
40
|
+
font-family: monospace, monospace;
|
|
41
|
+
font-size: 1em;
|
|
42
|
+
}
|
|
43
|
+
small {
|
|
44
|
+
font-size: 80%;
|
|
45
|
+
}
|
|
46
|
+
sub,
|
|
47
|
+
sup {
|
|
48
|
+
font-size: 75%;
|
|
49
|
+
line-height: 0;
|
|
50
|
+
position: relative;
|
|
51
|
+
vertical-align: baseline;
|
|
52
|
+
}
|
|
53
|
+
sub {
|
|
54
|
+
bottom: -0.25em;
|
|
55
|
+
}
|
|
56
|
+
sup {
|
|
57
|
+
top: -0.5em;
|
|
58
|
+
}
|
|
59
|
+
img {
|
|
60
|
+
border-style: none;
|
|
61
|
+
}
|
|
62
|
+
button,
|
|
63
|
+
input,
|
|
64
|
+
optgroup,
|
|
65
|
+
select,
|
|
66
|
+
textarea {
|
|
67
|
+
font-family: inherit;
|
|
68
|
+
font-size: 100%;
|
|
69
|
+
line-height: 1.15;
|
|
70
|
+
margin: 0;
|
|
71
|
+
}
|
|
72
|
+
button,
|
|
73
|
+
input {
|
|
74
|
+
overflow: visible;
|
|
75
|
+
}
|
|
76
|
+
button,
|
|
77
|
+
select {
|
|
78
|
+
text-transform: none;
|
|
79
|
+
}
|
|
80
|
+
button,
|
|
81
|
+
[type=button],
|
|
82
|
+
[type=reset],
|
|
83
|
+
[type=submit] {
|
|
84
|
+
-webkit-appearance: button;
|
|
85
|
+
}
|
|
86
|
+
button::-moz-focus-inner,
|
|
87
|
+
[type=button]::-moz-focus-inner,
|
|
88
|
+
[type=reset]::-moz-focus-inner,
|
|
89
|
+
[type=submit]::-moz-focus-inner {
|
|
90
|
+
border-style: none;
|
|
91
|
+
padding: 0;
|
|
92
|
+
}
|
|
93
|
+
button:-moz-focusring,
|
|
94
|
+
[type=button]:-moz-focusring,
|
|
95
|
+
[type=reset]:-moz-focusring,
|
|
96
|
+
[type=submit]:-moz-focusring {
|
|
97
|
+
outline: 1px dotted ButtonText;
|
|
98
|
+
}
|
|
99
|
+
fieldset {
|
|
100
|
+
padding: 0.35em 0.75em 0.625em;
|
|
101
|
+
}
|
|
102
|
+
legend {
|
|
103
|
+
box-sizing: border-box;
|
|
104
|
+
color: inherit;
|
|
105
|
+
display: table;
|
|
106
|
+
max-width: 100%;
|
|
107
|
+
padding: 0;
|
|
108
|
+
white-space: normal;
|
|
109
|
+
}
|
|
110
|
+
progress {
|
|
111
|
+
vertical-align: baseline;
|
|
112
|
+
}
|
|
113
|
+
textarea {
|
|
114
|
+
overflow: auto;
|
|
115
|
+
}
|
|
116
|
+
[type=checkbox],
|
|
117
|
+
[type=radio] {
|
|
118
|
+
box-sizing: border-box;
|
|
119
|
+
padding: 0;
|
|
120
|
+
}
|
|
121
|
+
[type=number]::-webkit-inner-spin-button,
|
|
122
|
+
[type=number]::-webkit-outer-spin-button {
|
|
123
|
+
height: auto;
|
|
124
|
+
}
|
|
125
|
+
[type=search] {
|
|
126
|
+
-webkit-appearance: textfield;
|
|
127
|
+
outline-offset: -2px;
|
|
128
|
+
}
|
|
129
|
+
[type=search]::-webkit-search-decoration {
|
|
130
|
+
-webkit-appearance: none;
|
|
131
|
+
}
|
|
132
|
+
::-webkit-file-upload-button {
|
|
133
|
+
-webkit-appearance: button;
|
|
134
|
+
font: inherit;
|
|
135
|
+
}
|
|
136
|
+
details {
|
|
137
|
+
display: block;
|
|
138
|
+
}
|
|
139
|
+
summary {
|
|
140
|
+
display: list-item;
|
|
141
|
+
}
|
|
142
|
+
template {
|
|
143
|
+
display: none;
|
|
144
|
+
}
|
|
145
|
+
[hidden] {
|
|
146
|
+
display: none;
|
|
147
|
+
}
|
|
148
|
+
/*! Bundled license information:
|
|
149
|
+
|
|
150
|
+
normalize.css/normalize.css:
|
|
151
|
+
(*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css *)
|
|
152
|
+
*/
|
|
153
|
+
/*# sourceMappingURL=index.css.map */
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../app/node_modules/.pnpm/normalize.css@8.0.1/node_modules/normalize.css/normalize.css"],
|
|
4
|
+
"sourcesContent": ["/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n\nbody {\n margin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\n\nmain {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n background-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\n\nimg {\n border-style: none;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\n\nfieldset {\n padding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\ndetails {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Misc\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n display: none;\n}\n"],
|
|
5
|
+
"mappings": ";AAUA;AACE,eAAa;AACb,4BAA0B;AAC5B;AASA;AACE,UAAQ;AACV;AAMA;AACE,WAAS;AACX;AAOA;AACE,aAAW;AACX,UAAQ,OAAO;AACjB;AAUA;AACE,cAAY;AACZ,UAAQ;AACR,YAAU;AACZ;AAOA;AACE,eAAa,SAAS,EAAE;AACxB,aAAW;AACb;AASA;AACE,oBAAkB;AACpB;AAOA,IAAI,CAAC;AACH,iBAAe;AACf,mBAAiB;AACjB,mBAAiB,UAAU;AAC7B;AAMA;AACA;AACE,eAAa;AACf;AAOA;AACA;AACA;AACE,eAAa,SAAS,EAAE;AACxB,aAAW;AACb;AAMA;AACE,aAAW;AACb;AAOA;AACA;AACE,aAAW;AACX,eAAa;AACb,YAAU;AACV,kBAAgB;AAClB;AAEA;AACE,UAAQ;AACV;AAEA;AACE,OAAK;AACP;AASA;AACE,gBAAc;AAChB;AAUA;AACA;AACA;AACA;AACA;AACE,eAAa;AACb,aAAW;AACX,eAAa;AACb,UAAQ;AACV;AAOA;AACA;AACE,YAAU;AACZ;AAOA;AACA;AACE,kBAAgB;AAClB;AAMA;AACA,CAAC;AACD,CAAC;AACD,CAAC;AACC,sBAAoB;AACtB;AAMA,MAAM;AACN,CAAC,YAAc;AACf,CAAC,WAAa;AACd,CAAC,YAAc;AACb,gBAAc;AACd,WAAS;AACX;AAMA,MAAM;AACN,CAAC,YAAc;AACf,CAAC,WAAa;AACd,CAAC,YAAc;AACb,WAAS,IAAI,OAAO;AACtB;AAMA;AACE,WAAS,OAAO,OAAO;AACzB;AASA;AACE,cAAY;AACZ,SAAO;AACP,WAAS;AACT,aAAW;AACX,WAAS;AACT,eAAa;AACf;AAMA;AACE,kBAAgB;AAClB;AAMA;AACE,YAAU;AACZ;AAOA,CAAC;AACD,CAAC;AACC,cAAY;AACZ,WAAS;AACX;AAMA,CAAC,YAAc;AACf,CAAC,YAAc;AACb,UAAQ;AACV;AAOA,CAAC;AACC,sBAAoB;AACpB,kBAAgB;AAClB;AAMA,CAAC,YAAc;AACb,sBAAoB;AACtB;AAOA;AACE,sBAAoB;AACpB,QAAM;AACR;AASA;AACE,WAAS;AACX;AAMA;AACE,WAAS;AACX;AASA;AACE,WAAS;AACX;AAMA,CAAC;AACC,WAAS;AACX;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|