haystack-ai 2.2.2__tar.gz → 2.2.3__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.2 → haystack_ai-2.2.3}/PKG-INFO +3 -3
- haystack_ai-2.2.3/VERSION.txt +1 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/builders/__init__.py +2 -1
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/pyproject.toml +2 -2
- haystack_ai-2.2.2/VERSION.txt +0 -1
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/.gitignore +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/LICENSE +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/README.md +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/audio/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/audio/whisper_local.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/audio/whisper_remote.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/builders/answer_builder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/builders/chat_prompt_builder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/builders/dynamic_chat_prompt_builder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/builders/dynamic_prompt_builder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/builders/prompt_builder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/caching/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/caching/cache_checker.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/classifiers/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/classifiers/document_language_classifier.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/connectors/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/connectors/openapi_service.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/azure.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/html.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/markdown.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/openapi_functions.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/output_adapter.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/pdfminer.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/pypdf.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/tika.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/txt.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/converters/utils.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/azure_document_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/azure_text_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/backends/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/backends/sentence_transformers_backend.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/hugging_face_api_document_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/hugging_face_api_text_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/hugging_face_tei_document_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/hugging_face_tei_text_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/openai_document_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/openai_text_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/sentence_transformers_document_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/sentence_transformers_text_embedder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/evaluators/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/evaluators/answer_exact_match.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/evaluators/context_relevance.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/evaluators/document_map.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/evaluators/document_mrr.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/evaluators/document_recall.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/evaluators/faithfulness.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/evaluators/llm_evaluator.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/evaluators/sas_evaluator.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/extractors/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/extractors/named_entity_extractor.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/fetchers/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/fetchers/link_content.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/azure.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/chat/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/chat/azure.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/chat/hugging_face_api.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/chat/hugging_face_local.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/chat/hugging_face_tgi.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/chat/openai.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/hugging_face_api.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/hugging_face_local.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/hugging_face_tgi.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/openai.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/utils.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/joiners/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/joiners/branch.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/joiners/document_joiner.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/others/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/others/multiplexer.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/preprocessors/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/preprocessors/document_cleaner.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/preprocessors/document_splitter.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/preprocessors/text_cleaner.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/rankers/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/rankers/lost_in_the_middle.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/rankers/meta_field.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/rankers/sentence_transformers_diversity.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/rankers/transformers_similarity.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/readers/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/readers/extractive.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/retrievers/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/retrievers/filter_retriever.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/retrievers/in_memory/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/retrievers/in_memory/bm25_retriever.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/retrievers/in_memory/embedding_retriever.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/routers/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/routers/conditional_router.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/routers/file_type_router.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/routers/metadata_router.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/routers/text_language_router.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/routers/zero_shot_text_router.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/samplers/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/samplers/top_p.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/validators/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/validators/json_schema.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/websearch/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/websearch/searchapi.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/websearch/serper_dev.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/writers/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/writers/document_writer.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/component/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/component/component.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/component/sockets.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/component/types.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/errors.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/base.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/descriptions.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/draw.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/pipeline.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/predefined/chat_with_website.yaml.jinja2 +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/predefined/generative_qa.yaml.jinja2 +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/predefined/indexing.yaml.jinja2 +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/predefined/rag.yaml.jinja2 +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/template.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/pipeline/utils.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/serialization.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/core/type_utils.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/dataclasses/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/dataclasses/answer.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/dataclasses/byte_stream.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/dataclasses/chat_message.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/dataclasses/document.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/dataclasses/sparse_embedding.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/dataclasses/streaming_chunk.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/document_stores/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/document_stores/errors/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/document_stores/errors/errors.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/document_stores/in_memory/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/document_stores/in_memory/document_store.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/document_stores/types/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/document_stores/types/policy.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/document_stores/types/protocol.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/errors.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/evaluation/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/evaluation/eval_run_result.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/lazy_imports.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/logging.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/marshal/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/marshal/protocol.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/marshal/yaml.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/telemetry/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/telemetry/_environment.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/telemetry/_telemetry.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/document_store.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/factory.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/accumulate.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/add_value.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/concatenate.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/double.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/fstring.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/greet.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/hello.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/joiner.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/parity.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/remainder.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/repeat.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/self_loop.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/subtract.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/sum.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/text_splitter.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/sample_components/threshold.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/testing/test_utils.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/tracing/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/tracing/datadog.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/tracing/opentelemetry.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/tracing/tracer.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/tracing/utils.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/__init__.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/auth.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/callable_serialization.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/device.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/expit.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/filters.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/hf.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/jupyter.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/requests_utils.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/type_serialization.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/utils/url_validation.py +0 -0
- {haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/version.py +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.3
|
|
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
|
|
@@ -27,14 +27,14 @@ Requires-Dist: jinja2
|
|
|
27
27
|
Requires-Dist: lazy-imports
|
|
28
28
|
Requires-Dist: more-itertools
|
|
29
29
|
Requires-Dist: networkx
|
|
30
|
-
Requires-Dist: numpy
|
|
30
|
+
Requires-Dist: numpy<2
|
|
31
31
|
Requires-Dist: openai>=1.1.0
|
|
32
32
|
Requires-Dist: pandas
|
|
33
33
|
Requires-Dist: posthog
|
|
34
34
|
Requires-Dist: python-dateutil
|
|
35
35
|
Requires-Dist: pyyaml
|
|
36
36
|
Requires-Dist: requests
|
|
37
|
-
Requires-Dist: tenacity
|
|
37
|
+
Requires-Dist: tenacity!=8.4.0
|
|
38
38
|
Requires-Dist: tqdm
|
|
39
39
|
Requires-Dist: typing-extensions>=4.7
|
|
40
40
|
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.2.3
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
# SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
|
|
5
5
|
from haystack.components.builders.answer_builder import AnswerBuilder
|
|
6
|
+
from haystack.components.builders.chat_prompt_builder import ChatPromptBuilder
|
|
6
7
|
from haystack.components.builders.dynamic_chat_prompt_builder import DynamicChatPromptBuilder
|
|
7
8
|
from haystack.components.builders.dynamic_prompt_builder import DynamicPromptBuilder
|
|
8
9
|
from haystack.components.builders.prompt_builder import PromptBuilder
|
|
9
10
|
|
|
10
|
-
__all__ = ["AnswerBuilder", "PromptBuilder", "DynamicPromptBuilder", "DynamicChatPromptBuilder"]
|
|
11
|
+
__all__ = ["AnswerBuilder", "PromptBuilder", "DynamicPromptBuilder", "DynamicChatPromptBuilder", "ChatPromptBuilder"]
|
|
@@ -48,7 +48,7 @@ classifiers = [
|
|
|
48
48
|
dependencies = [
|
|
49
49
|
"pandas",
|
|
50
50
|
"tqdm",
|
|
51
|
-
"tenacity",
|
|
51
|
+
"tenacity!=8.4.0",
|
|
52
52
|
"lazy-imports",
|
|
53
53
|
"openai>=1.1.0",
|
|
54
54
|
"Jinja2",
|
|
@@ -58,7 +58,7 @@ dependencies = [
|
|
|
58
58
|
"networkx", # Pipeline graphs
|
|
59
59
|
"typing_extensions>=4.7", # typing support for Python 3.8
|
|
60
60
|
"requests",
|
|
61
|
-
"numpy",
|
|
61
|
+
"numpy<2",
|
|
62
62
|
"python-dateutil",
|
|
63
63
|
]
|
|
64
64
|
|
haystack_ai-2.2.2/VERSION.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.2.2
|
|
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.2 → haystack_ai-2.2.3}/haystack/components/builders/dynamic_chat_prompt_builder.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/haystack/components/embedders/azure_document_embedder.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/haystack/components/embedders/openai_document_embedder.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/embedders/openai_text_embedder.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/haystack/components/generators/chat/hugging_face_api.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/chat/hugging_face_local.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/haystack/components/generators/chat/hugging_face_tgi.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/haystack/components/preprocessors/document_cleaner.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/haystack/components/retrievers/in_memory/__init__.py
RENAMED
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/haystack/core/pipeline/predefined/generative_qa.yaml.jinja2
RENAMED
|
File without changes
|
{haystack_ai-2.2.2 → haystack_ai-2.2.3}/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.2 → haystack_ai-2.2.3}/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
|