haystack-ai 2.2.1__tar.gz → 2.2.2__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.
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/PKG-INFO +1 -1
- haystack_ai-2.2.2/VERSION.txt +1 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/evaluation/eval_run_result.py +3 -1
- haystack_ai-2.2.1/VERSION.txt +0 -1
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/.gitignore +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/LICENSE +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/README.md +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/audio/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/audio/whisper_local.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/audio/whisper_remote.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/builders/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/builders/answer_builder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/builders/chat_prompt_builder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/builders/dynamic_chat_prompt_builder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/builders/dynamic_prompt_builder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/builders/prompt_builder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/caching/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/caching/cache_checker.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/classifiers/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/classifiers/document_language_classifier.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/connectors/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/connectors/openapi_service.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/azure.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/html.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/markdown.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/openapi_functions.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/output_adapter.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/pdfminer.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/pypdf.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/tika.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/txt.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/converters/utils.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/azure_document_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/azure_text_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/backends/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/backends/sentence_transformers_backend.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/hugging_face_api_document_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/hugging_face_api_text_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/hugging_face_tei_document_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/hugging_face_tei_text_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/openai_document_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/openai_text_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/sentence_transformers_document_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/sentence_transformers_text_embedder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/answer_exact_match.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/context_relevance.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/document_map.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/document_mrr.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/document_recall.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/faithfulness.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/llm_evaluator.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/sas_evaluator.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/extractors/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/extractors/named_entity_extractor.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/fetchers/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/fetchers/link_content.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/azure.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/chat/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/chat/azure.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/chat/hugging_face_api.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/chat/hugging_face_local.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/chat/hugging_face_tgi.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/chat/openai.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/hugging_face_api.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/hugging_face_local.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/hugging_face_tgi.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/openai.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/utils.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/joiners/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/joiners/branch.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/joiners/document_joiner.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/others/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/others/multiplexer.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/preprocessors/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/preprocessors/document_cleaner.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/preprocessors/document_splitter.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/preprocessors/text_cleaner.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/rankers/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/rankers/lost_in_the_middle.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/rankers/meta_field.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/rankers/sentence_transformers_diversity.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/rankers/transformers_similarity.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/readers/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/readers/extractive.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/retrievers/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/retrievers/filter_retriever.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/retrievers/in_memory/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/retrievers/in_memory/bm25_retriever.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/retrievers/in_memory/embedding_retriever.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/routers/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/routers/conditional_router.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/routers/file_type_router.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/routers/metadata_router.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/routers/text_language_router.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/routers/zero_shot_text_router.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/samplers/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/samplers/top_p.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/validators/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/validators/json_schema.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/websearch/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/websearch/searchapi.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/websearch/serper_dev.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/writers/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/writers/document_writer.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/component/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/component/component.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/component/sockets.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/component/types.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/errors.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/base.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/descriptions.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/draw.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/pipeline.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/predefined/chat_with_website.yaml.jinja2 +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/predefined/generative_qa.yaml.jinja2 +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/predefined/indexing.yaml.jinja2 +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/predefined/rag.yaml.jinja2 +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/template.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/utils.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/serialization.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/type_utils.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/dataclasses/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/dataclasses/answer.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/dataclasses/byte_stream.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/dataclasses/chat_message.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/dataclasses/document.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/dataclasses/sparse_embedding.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/dataclasses/streaming_chunk.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/document_stores/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/document_stores/errors/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/document_stores/errors/errors.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/document_stores/in_memory/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/document_stores/in_memory/document_store.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/document_stores/types/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/document_stores/types/policy.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/document_stores/types/protocol.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/errors.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/evaluation/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/lazy_imports.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/logging.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/marshal/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/marshal/protocol.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/marshal/yaml.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/telemetry/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/telemetry/_environment.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/telemetry/_telemetry.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/document_store.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/factory.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/accumulate.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/add_value.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/concatenate.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/double.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/fstring.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/greet.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/hello.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/joiner.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/parity.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/remainder.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/repeat.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/self_loop.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/subtract.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/sum.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/text_splitter.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/sample_components/threshold.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/testing/test_utils.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/tracing/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/tracing/datadog.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/tracing/opentelemetry.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/tracing/tracer.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/tracing/utils.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/__init__.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/auth.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/callable_serialization.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/device.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/expit.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/filters.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/hf.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/jupyter.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/requests_utils.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/type_serialization.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/utils/url_validation.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/version.py +0 -0
- {haystack_ai-2.2.1 → haystack_ai-2.2.2}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: haystack-ai
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.2
|
|
4
4
|
Summary: LLM framework to build customizable, production-ready LLM applications. Connect components (models, vector DBs, file converters) to pipelines or agents that can interact with your data.
|
|
5
5
|
Project-URL: CI: GitHub, https://github.com/deepset-ai/haystack/actions
|
|
6
6
|
Project-URL: Docs: RTD, https://haystack.deepset.ai/overview/intro
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.2.2
|
|
@@ -97,7 +97,9 @@ class EvaluationRunResult(BaseEvaluationRunResult):
|
|
|
97
97
|
|
|
98
98
|
def score_report(self) -> DataFrame: # noqa: D102
|
|
99
99
|
results = {k: v["score"] for k, v in self.results.items()}
|
|
100
|
-
|
|
100
|
+
df = DataFrame.from_dict(results, orient="index", columns=["score"]).reset_index()
|
|
101
|
+
df.columns = ["metrics", "score"]
|
|
102
|
+
return df
|
|
101
103
|
|
|
102
104
|
def to_pandas(self) -> DataFrame: # noqa: D102
|
|
103
105
|
inputs_columns = list(self.inputs.keys())
|
haystack_ai-2.2.1/VERSION.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.2.1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/builders/dynamic_chat_prompt_builder.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/builders/dynamic_prompt_builder.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/azure_document_embedder.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/azure_text_embedder.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/openai_document_embedder.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/embedders/openai_text_embedder.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/evaluators/answer_exact_match.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/extractors/named_entity_extractor.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/chat/hugging_face_api.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/chat/hugging_face_local.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/chat/hugging_face_tgi.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/generators/hugging_face_local.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/preprocessors/document_cleaner.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/preprocessors/document_splitter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/rankers/transformers_similarity.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/retrievers/in_memory/__init__.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/retrievers/in_memory/bm25_retriever.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/components/routers/zero_shot_text_router.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/predefined/generative_qa.yaml.jinja2
RENAMED
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/core/pipeline/predefined/indexing.yaml.jinja2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.1 → haystack_ai-2.2.2}/haystack/document_stores/in_memory/document_store.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|