├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── breaking-change-proposal.md │ ├── bug_report.md │ ├── feature-request-for-existing-integrations.md │ └── new-integration-proposal.md ├── actions │ └── send_failure │ │ └── action.yml ├── dependabot.yml ├── labeler.yml ├── pull_request_template.md ├── utils │ ├── docstrings_checksum.py │ ├── pyproject_to_requirements.py │ └── validate_version.py └── workflows │ ├── CI_check_integration_format.yml │ ├── CI_docstring_labeler.yml │ ├── CI_docusaurus_sync.yml │ ├── CI_labeler.yml │ ├── CI_license_compliance.yml │ ├── CI_project.yml │ ├── CI_pypi_release.yml │ ├── CI_stale.yml │ ├── aimlapi.yml │ ├── amazon_bedrock.yml │ ├── amazon_sagemaker.yml │ ├── anthropic.yml │ ├── astra.yml │ ├── azure_ai_search.yml │ ├── chroma.yml │ ├── cohere.yml │ ├── cometapi.yml │ ├── deepeval.yml │ ├── elasticsearch.yml │ ├── fastembed.yml │ ├── github.yml │ ├── google_ai.yml │ ├── google_genai.yml │ ├── google_vertex.yml │ ├── hanlp.yml │ ├── jina.yml │ ├── langfuse.yml │ ├── llama_cpp.yml │ ├── llama_stack.yml │ ├── mcp.yml │ ├── meta_llama.yml │ ├── mistral.yml │ ├── mongodb_atlas.yml │ ├── nvidia.yml │ ├── ollama.yml │ ├── openrouter.yml │ ├── opensearch.yml │ ├── optimum.yml │ ├── pgvector.yml │ ├── pinecone.yml │ ├── qdrant.yml │ ├── ragas.yml │ ├── snowflake.yml │ ├── stackit.yml │ ├── togetherai.yml │ ├── unstructured.yml │ ├── watsonx.yml │ ├── weaviate.yml │ └── weights_and_biases_weave.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── cliff.toml ├── integrations ├── aimlapi │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── aimlapi_basic_example.py │ │ └── aimlapi_with_tools_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── generators │ │ │ ├── aimlapi │ │ │ ├── __init__.py │ │ │ └── chat │ │ │ │ ├── __init__.py │ │ │ │ └── chat_generator.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_aimlapi_chat_generator.py │ │ ├── test_aimlapi_chat_generator_async.py │ │ └── test_aimlapi_stub_async.py ├── amazon_bedrock │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── bedrock_ranker_example.py │ │ ├── chatgenerator_example.py │ │ ├── embedders_generator_with_rag_example.py │ │ └── s3_downloader_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── common │ │ │ ├── amazon_bedrock │ │ │ │ ├── __init__.py │ │ │ │ ├── errors.py │ │ │ │ └── utils.py │ │ │ ├── py.typed │ │ │ └── s3 │ │ │ │ ├── __init__.py │ │ │ │ ├── errors.py │ │ │ │ └── utils.py │ │ │ └── components │ │ │ ├── downloaders │ │ │ ├── py.typed │ │ │ └── s3 │ │ │ │ ├── __init__.py │ │ │ │ └── s3_downloader.py │ │ │ ├── embedders │ │ │ ├── amazon_bedrock │ │ │ │ ├── __init__.py │ │ │ │ ├── document_embedder.py │ │ │ │ ├── document_image_embedder.py │ │ │ │ └── text_embedder.py │ │ │ └── py.typed │ │ │ ├── generators │ │ │ ├── amazon_bedrock │ │ │ │ ├── __init__.py │ │ │ │ ├── adapters.py │ │ │ │ ├── chat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chat_generator.py │ │ │ │ │ └── utils.py │ │ │ │ └── generator.py │ │ │ └── py.typed │ │ │ └── rankers │ │ │ ├── amazon_bedrock │ │ │ ├── __init__.py │ │ │ └── ranker.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_chat_generator.py │ │ ├── test_chat_generator_utils.py │ │ ├── test_document_embedder.py │ │ ├── test_document_image_embedder.py │ │ ├── test_files │ │ ├── apple.jpg │ │ ├── haystack-logo.png │ │ └── sample_pdf_1.pdf │ │ ├── test_generator.py │ │ ├── test_ranker.py │ │ ├── test_s3_downloader.py │ │ └── test_text_embedder.py ├── amazon_sagemaker │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── generators │ │ │ ├── amazon_sagemaker │ │ │ ├── __init__.py │ │ │ ├── errors.py │ │ │ └── sagemaker.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_sagemaker.py ├── anthropic │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── example │ │ ├── documentation_rag_with_claude.py │ │ └── prompt_caching.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── generators │ │ │ ├── anthropic │ │ │ ├── __init__.py │ │ │ ├── chat │ │ │ │ ├── __init__.py │ │ │ │ ├── chat_generator.py │ │ │ │ ├── utils.py │ │ │ │ └── vertex_chat_generator.py │ │ │ └── generator.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_chat_generator.py │ │ ├── test_files │ │ └── apple.jpg │ │ ├── test_generator.py │ │ └── test_vertex_chat_generator.py ├── astra │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── data │ │ │ └── usr_01.txt │ │ ├── example.py │ │ ├── pipeline_example.py │ │ └── requirements.txt │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── astra │ │ │ │ ├── __init__.py │ │ │ │ └── retriever.py │ │ │ │ └── py.typed │ │ │ └── document_stores │ │ │ ├── astra │ │ │ ├── __init__.py │ │ │ ├── astra_client.py │ │ │ ├── document_store.py │ │ │ ├── errors.py │ │ │ └── filters.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_document_store.py │ │ ├── test_embedding_retrieval.py │ │ └── test_retriever.py ├── azure_ai_search │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── document_store.py │ │ └── embedding_retrieval.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── azure_ai_search │ │ │ │ ├── __init__.py │ │ │ │ ├── bm25_retriever.py │ │ │ │ ├── embedding_retriever.py │ │ │ │ └── hybrid_retriever.py │ │ │ │ └── py.typed │ │ │ └── document_stores │ │ │ ├── azure_ai_search │ │ │ ├── __init__.py │ │ │ ├── document_store.py │ │ │ ├── errors.py │ │ │ └── filters.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_bm25_retriever.py │ │ ├── test_document_store.py │ │ ├── test_embedding_retriever.py │ │ └── test_hybrid_retriever.py ├── chroma │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── data │ │ │ ├── usr_01.txt │ │ │ ├── usr_02.txt │ │ │ ├── usr_03.txt │ │ │ ├── usr_04.txt │ │ │ ├── usr_05.txt │ │ │ ├── usr_06.txt │ │ │ ├── usr_07.txt │ │ │ ├── usr_08.txt │ │ │ ├── usr_09.txt │ │ │ ├── usr_10.txt │ │ │ ├── usr_11.txt │ │ │ ├── usr_12.txt │ │ │ ├── usr_20.txt │ │ │ ├── usr_21.txt │ │ │ ├── usr_22.txt │ │ │ ├── usr_23.txt │ │ │ ├── usr_24.txt │ │ │ ├── usr_25.txt │ │ │ ├── usr_26.txt │ │ │ ├── usr_27.txt │ │ │ ├── usr_28.txt │ │ │ ├── usr_29.txt │ │ │ ├── usr_30.txt │ │ │ ├── usr_31.txt │ │ │ ├── usr_32.txt │ │ │ ├── usr_40.txt │ │ │ ├── usr_41.txt │ │ │ ├── usr_42.txt │ │ │ ├── usr_43.txt │ │ │ ├── usr_44.txt │ │ │ ├── usr_45.txt │ │ │ ├── usr_46.txt │ │ │ ├── usr_50.txt │ │ │ ├── usr_51.txt │ │ │ ├── usr_52.txt │ │ │ └── usr_90.txt │ │ └── example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── chroma │ │ │ │ ├── __init__.py │ │ │ │ └── retriever.py │ │ │ │ └── py.typed │ │ │ └── document_stores │ │ │ ├── chroma │ │ │ ├── __init__.py │ │ │ ├── document_store.py │ │ │ ├── errors.py │ │ │ ├── filters.py │ │ │ └── utils.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_document_store.py │ │ ├── test_document_store_async.py │ │ └── test_retriever.py ├── cohere │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── cohere_embedding.py │ │ ├── cohere_generation.py │ │ └── cohere_ranker.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── embedders │ │ │ ├── cohere │ │ │ │ ├── __init__.py │ │ │ │ ├── document_embedder.py │ │ │ │ ├── document_image_embedder.py │ │ │ │ ├── embedding_types.py │ │ │ │ ├── text_embedder.py │ │ │ │ └── utils.py │ │ │ └── py.typed │ │ │ ├── generators │ │ │ ├── cohere │ │ │ │ ├── __init__.py │ │ │ │ ├── chat │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── chat_generator.py │ │ │ │ └── generator.py │ │ │ └── py.typed │ │ │ └── rankers │ │ │ ├── cohere │ │ │ ├── __init__.py │ │ │ └── ranker.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_chat_generator.py │ │ ├── test_chat_generator_async.py │ │ ├── test_chat_generator_chunks.py │ │ ├── test_document_embedder.py │ │ ├── test_document_image_embedder.py │ │ ├── test_files │ │ ├── apple.jpg │ │ └── sample_pdf_1.pdf │ │ ├── test_generator.py │ │ ├── test_ranker.py │ │ └── test_text_embedder.py ├── cometapi │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── generators │ │ │ ├── cometapi │ │ │ ├── __init__.py │ │ │ └── chat │ │ │ │ └── chat_generator.py │ │ │ └── py.typed │ └── tests │ │ ├── test_cometapi_chat_generator.py │ │ └── test_cometapi_chat_generator_async.py ├── deepeval │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── example │ │ └── example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── evaluators │ │ │ ├── deepeval │ │ │ ├── __init__.py │ │ │ ├── evaluator.py │ │ │ └── metrics.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_evaluator.py │ │ └── test_metrics.py ├── elasticsearch │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── docker-compose.yml │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── elasticsearch │ │ │ │ ├── __init__.py │ │ │ │ ├── bm25_retriever.py │ │ │ │ └── embedding_retriever.py │ │ │ │ └── py.typed │ │ │ └── document_stores │ │ │ ├── elasticsearch │ │ │ ├── __init__.py │ │ │ ├── document_store.py │ │ │ └── filters.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_bm25_retriever.py │ │ ├── test_document_store.py │ │ ├── test_embedding_retriever.py │ │ └── test_filters.py ├── fastembed │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── example.py │ │ ├── ranker_example.py │ │ └── sparse_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── embedders │ │ │ ├── fastembed │ │ │ │ ├── __init__.py │ │ │ │ ├── embedding_backend │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── fastembed_backend.py │ │ │ │ ├── fastembed_document_embedder.py │ │ │ │ ├── fastembed_sparse_document_embedder.py │ │ │ │ ├── fastembed_sparse_text_embedder.py │ │ │ │ └── fastembed_text_embedder.py │ │ │ └── py.typed │ │ │ └── rankers │ │ │ ├── fastembed │ │ │ ├── __init__.py │ │ │ └── ranker.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_fastembed_backend.py │ │ ├── test_fastembed_document_embedder.py │ │ ├── test_fastembed_ranker.py │ │ ├── test_fastembed_sparse_document_embedder.py │ │ ├── test_fastembed_sparse_text_embedder.py │ │ └── test_fastembed_text_embedder.py ├── github │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── connectors │ │ │ │ ├── github │ │ │ │ ├── __init__.py │ │ │ │ ├── file_editor.py │ │ │ │ ├── issue_commenter.py │ │ │ │ ├── issue_viewer.py │ │ │ │ ├── pr_creator.py │ │ │ │ ├── repo_forker.py │ │ │ │ └── repo_viewer.py │ │ │ │ └── py.typed │ │ │ ├── prompts │ │ │ ├── github │ │ │ │ ├── __init__.py │ │ │ │ ├── context_prompt.py │ │ │ │ ├── file_editor_prompt.py │ │ │ │ ├── issue_commenter_prompt.py │ │ │ │ ├── issue_viewer_prompt.py │ │ │ │ ├── pr_creator_prompt.py │ │ │ │ ├── repo_forker_prompt.py │ │ │ │ ├── repo_viewer_prompt.py │ │ │ │ └── system_prompt.py │ │ │ └── py.typed │ │ │ └── tools │ │ │ ├── github │ │ │ ├── __init__.py │ │ │ ├── file_editor_tool.py │ │ │ ├── issue_commenter_tool.py │ │ │ ├── issue_viewer_tool.py │ │ │ ├── pr_creator_tool.py │ │ │ ├── repo_forker_tool.py │ │ │ ├── repo_viewer_tool.py │ │ │ └── utils.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_file_editor.py │ │ ├── test_file_editor_tool.py │ │ ├── test_issue_commenter.py │ │ ├── test_issue_commenter_tool.py │ │ ├── test_issue_viewer.py │ │ ├── test_issue_viewer_tool.py │ │ ├── test_pr_creator.py │ │ ├── test_pr_creator_tool.py │ │ ├── test_repo_forker.py │ │ ├── test_repo_forker_tool.py │ │ ├── test_repo_viewer.py │ │ └── test_repo_viewer_tool.py ├── google_ai │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── example_assets │ │ ├── robot1.jpg │ │ ├── robot2.jpg │ │ ├── robot3.jpg │ │ └── robot4.jpg │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── generators │ │ │ └── google_ai │ │ │ ├── __init__.py │ │ │ ├── chat │ │ │ └── gemini.py │ │ │ └── gemini.py │ └── tests │ │ ├── __init__.py │ │ └── generators │ │ ├── chat │ │ └── test_chat_gemini.py │ │ └── test_gemini.py ├── google_genai │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ └── chatgenerator_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── common │ │ │ ├── google_genai │ │ │ │ ├── __init__.py │ │ │ │ └── utils.py │ │ │ └── py.typed │ │ │ ├── embedders │ │ │ ├── google_genai │ │ │ │ ├── __init__.py │ │ │ │ ├── document_embedder.py │ │ │ │ └── text_embedder.py │ │ │ └── py.typed │ │ │ └── generators │ │ │ ├── google_genai │ │ │ ├── __init__.py │ │ │ └── chat │ │ │ │ ├── chat_generator.py │ │ │ │ └── utils.py │ │ │ └── py.typed │ └── tests │ │ ├── conftest.py │ │ ├── test_chat_generator.py │ │ ├── test_document_embedder.py │ │ ├── test_files │ │ ├── apple.jpg │ │ └── banana.png │ │ ├── test_text_embedder.py │ │ └── test_utils.py ├── google_vertex │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── example_assets │ │ └── robot1.jpg │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── embedders │ │ │ └── google_vertex │ │ │ │ ├── __init__.py │ │ │ │ ├── document_embedder.py │ │ │ │ └── text_embedder.py │ │ │ └── generators │ │ │ └── google_vertex │ │ │ ├── __init__.py │ │ │ ├── captioner.py │ │ │ ├── chat │ │ │ ├── __init__.py │ │ │ └── gemini.py │ │ │ ├── code_generator.py │ │ │ ├── gemini.py │ │ │ ├── image_generator.py │ │ │ ├── question_answering.py │ │ │ └── text_generator.py │ └── tests │ │ ├── __init__.py │ │ ├── chat │ │ └── test_gemini.py │ │ ├── test_captioner.py │ │ ├── test_code_generator.py │ │ ├── test_document_embedder.py │ │ ├── test_gemini.py │ │ ├── test_image_generator.py │ │ ├── test_question_answering.py │ │ ├── test_text_embedder.py │ │ └── test_text_generator.py ├── hanlp │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── preprocessors │ │ │ ├── hanlp │ │ │ ├── __init__.py │ │ │ └── chinese_document_splitter.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ └── test_chinese_document_splitter.py ├── hatch.toml ├── jina │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ └── jina_reader_connector.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── connectors │ │ │ ├── jina │ │ │ │ ├── __init__.py │ │ │ │ ├── reader.py │ │ │ │ └── reader_mode.py │ │ │ └── py.typed │ │ │ ├── embedders │ │ │ ├── jina │ │ │ │ ├── __init__.py │ │ │ │ ├── document_embedder.py │ │ │ │ ├── document_image_embedder.py │ │ │ │ └── text_embedder.py │ │ │ └── py.typed │ │ │ └── rankers │ │ │ └── jina │ │ │ ├── __init__.py │ │ │ └── ranker.py │ └── tests │ │ ├── __init__.py │ │ ├── test_document_embedder.py │ │ ├── test_document_image_embedder.py │ │ ├── test_ranker.py │ │ ├── test_reader_connector.py │ │ └── test_text_embedder.py ├── langfuse │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── example │ │ ├── basic_rag.py │ │ ├── chat.py │ │ └── requirements.txt │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── connectors │ │ │ │ ├── __init__.py │ │ │ │ ├── langfuse │ │ │ │ ├── __init__.py │ │ │ │ └── langfuse_connector.py │ │ │ │ └── py.typed │ │ │ └── tracing │ │ │ ├── langfuse │ │ │ ├── __init__.py │ │ │ └── tracer.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_langfuse_connector.py │ │ ├── test_tracer.py │ │ └── test_tracing.py ├── llama_cpp │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── llama_cpp_generator_example.py │ │ └── rag_pipeline_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── generators │ │ │ ├── llama_cpp │ │ │ ├── __init__.py │ │ │ ├── chat │ │ │ │ └── chat_generator.py │ │ │ └── generator.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── models │ │ └── .gitignore │ │ ├── test_chat_generator.py │ │ ├── test_files │ │ └── apple.jpg │ │ └── test_generator.py ├── llama_stack │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── chatgenerator_with_structured_outputs.py │ │ └── llama-stack-with-tools.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── generators │ │ │ ├── llama_stack │ │ │ ├── __init__.py │ │ │ └── chat │ │ │ │ ├── __init__.py │ │ │ │ └── chat_generator.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ └── test_llama_stack_chat_generator.py ├── mcp │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── mcp_client.py │ │ ├── mcp_filtered_tools.py │ │ ├── mcp_server.py │ │ ├── mcp_sse_toolset.py │ │ ├── mcp_stdio_client.py │ │ ├── mcp_stdio_toolset.py │ │ ├── time_pipeline.py │ │ └── time_pipeline_toolset.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── tools │ │ │ └── mcp │ │ │ ├── __init__.py │ │ │ ├── mcp_tool.py │ │ │ ├── mcp_toolset.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── mcp_memory_transport.py │ │ ├── mcp_servers_fixtures.py │ │ ├── test_mcp_integration.py │ │ ├── test_mcp_server_info.py │ │ ├── test_mcp_timeout_reconnection.py │ │ ├── test_mcp_tool.py │ │ └── test_mcp_toolset.py ├── meta_llama │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── chat_generator_with_structured_output.py │ │ └── rag_with_llama.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── generators │ │ │ ├── meta_llama │ │ │ ├── __init__.py │ │ │ └── chat │ │ │ │ ├── __init__.py │ │ │ │ └── chat_generator.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_llama_chat_generator.py │ │ └── test_llama_chat_generator_async.py ├── mistral │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── chat_generator_with_structured_output.py │ │ ├── indexing_ocr_pipeline.py │ │ ├── indexing_pipeline.py │ │ └── streaming_chat_with_rag.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── converters │ │ │ ├── mistral │ │ │ │ ├── __init__.py │ │ │ │ └── ocr_document_converter.py │ │ │ └── py.typed │ │ │ ├── embedders │ │ │ ├── mistral │ │ │ │ ├── __init__.py │ │ │ │ ├── document_embedder.py │ │ │ │ └── text_embedder.py │ │ │ └── py.typed │ │ │ └── generators │ │ │ ├── mistral │ │ │ ├── __init__.py │ │ │ └── chat │ │ │ │ ├── __init__.py │ │ │ │ └── chat_generator.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_mistral_chat_generator.py │ │ ├── test_mistral_chat_generator_async.py │ │ ├── test_mistral_document_embedder.py │ │ ├── test_mistral_text_embedder.py │ │ └── test_ocr_document_converter.py ├── mongodb_atlas │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── embedding_retrieval.py │ │ └── hybrid_retrieval.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── mongodb_atlas │ │ │ │ ├── __init__.py │ │ │ │ ├── embedding_retriever.py │ │ │ │ └── full_text_retriever.py │ │ │ │ └── py.typed │ │ │ └── document_stores │ │ │ ├── mongodb_atlas │ │ │ ├── __init__.py │ │ │ ├── document_store.py │ │ │ └── filters.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_document_store.py │ │ ├── test_document_store_async.py │ │ ├── test_embedding_retrieval.py │ │ ├── test_fulltext_retrieval.py │ │ ├── test_fulltext_retrieval_async.py │ │ └── test_retriever.py ├── nvidia │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ └── chat_generator_with_structured_outputs.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ ├── embedders │ │ │ │ ├── nvidia │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── document_embedder.py │ │ │ │ │ ├── text_embedder.py │ │ │ │ │ └── truncate.py │ │ │ │ └── py.typed │ │ │ ├── generators │ │ │ │ ├── nvidia │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chat │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── chat_generator.py │ │ │ │ │ └── generator.py │ │ │ │ └── py.typed │ │ │ └── rankers │ │ │ │ └── nvidia │ │ │ │ ├── __init__.py │ │ │ │ ├── py.typed │ │ │ │ ├── ranker.py │ │ │ │ └── truncate.py │ │ │ └── utils │ │ │ ├── nvidia │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── models.py │ │ │ ├── nim_backend.py │ │ │ └── utils.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_base_url.py │ │ ├── test_document_embedder.py │ │ ├── test_embedding_truncate_mode.py │ │ ├── test_generator.py │ │ ├── test_nim_backend.py │ │ ├── test_nvidia_chat_generator.py │ │ ├── test_ranker.py │ │ ├── test_text_embedder.py │ │ └── test_utils.py ├── ollama │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── chat_generator_example.py │ │ ├── embedders_example.py │ │ └── generator_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── embedders │ │ │ ├── ollama │ │ │ │ ├── __init__.py │ │ │ │ ├── document_embedder.py │ │ │ │ └── text_embedder.py │ │ │ └── py.typed │ │ │ └── generators │ │ │ ├── ollama │ │ │ ├── __init__.py │ │ │ ├── chat │ │ │ │ ├── __init__.py │ │ │ │ └── chat_generator.py │ │ │ └── generator.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_chat_generator.py │ │ ├── test_document_embedder.py │ │ ├── test_files │ │ └── apple.jpg │ │ ├── test_generator.py │ │ └── test_text_embedder.py ├── openrouter │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── openrouter_with_structured_outputs.py │ │ └── openrouter_with_tools_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── generators │ │ │ ├── openrouter │ │ │ ├── __init__.py │ │ │ └── chat │ │ │ │ ├── __init__.py │ │ │ │ └── chat_generator.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_openrouter_chat_generator.py │ │ └── test_openrouter_chat_generator_async.py ├── opensearch │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── docker-compose.yml │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── opensearch │ │ │ │ ├── __init__.py │ │ │ │ ├── bm25_retriever.py │ │ │ │ ├── embedding_retriever.py │ │ │ │ └── open_search_hybrid_retriever.py │ │ │ │ └── py.typed │ │ │ └── document_stores │ │ │ ├── opensearch │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── document_store.py │ │ │ └── filters.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_auth.py │ │ ├── test_bm25_retriever.py │ │ ├── test_document_store.py │ │ ├── test_document_store_async.py │ │ ├── test_embedding_retriever.py │ │ ├── test_filters.py │ │ └── test_open_search_hybrid_retriever.py ├── optimum │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── example │ │ └── example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── embedders │ │ │ ├── optimum │ │ │ ├── __init__.py │ │ │ ├── _backend.py │ │ │ ├── optimization.py │ │ │ ├── optimum_document_embedder.py │ │ │ ├── optimum_text_embedder.py │ │ │ ├── pooling.py │ │ │ └── quantization.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_optimum_document_embedder.py │ │ └── test_optimum_text_embedder.py ├── pgvector │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── embedding_retrieval.py │ │ └── hybrid_retrieval.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── pgvector │ │ │ │ ├── __init__.py │ │ │ │ ├── embedding_retriever.py │ │ │ │ └── keyword_retriever.py │ │ │ │ └── py.typed │ │ │ └── document_stores │ │ │ ├── pgvector │ │ │ ├── __init__.py │ │ │ ├── converters.py │ │ │ ├── document_store.py │ │ │ └── filters.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_converters.py │ │ ├── test_document_store.py │ │ ├── test_document_store_async.py │ │ ├── test_filters.py │ │ ├── test_retrieval.py │ │ ├── test_retrieval_async.py │ │ └── test_retrievers.py ├── pinecone │ ├── CHANGELOG.md │ ├── README.md │ ├── examples │ │ └── example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── pinecone │ │ │ │ ├── __init__.py │ │ │ │ └── embedding_retriever.py │ │ │ │ └── py.typed │ │ │ └── document_stores │ │ │ ├── pinecone │ │ │ ├── __init__.py │ │ │ ├── document_store.py │ │ │ └── filters.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_document_store.py │ │ ├── test_document_store_async.py │ │ ├── test_embedding_retriever.py │ │ └── test_filters.py ├── qdrant │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ └── embedding_retrieval.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── py.typed │ │ │ │ └── qdrant │ │ │ │ ├── __init__.py │ │ │ │ └── retriever.py │ │ │ └── document_stores │ │ │ ├── py.typed │ │ │ └── qdrant │ │ │ ├── __init__.py │ │ │ ├── converters.py │ │ │ ├── document_store.py │ │ │ ├── filters.py │ │ │ └── migrate_to_sparse.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_converters.py │ │ ├── test_dict_converters.py │ │ ├── test_document_store.py │ │ ├── test_document_store_async.py │ │ ├── test_embedding_retriever.py │ │ ├── test_filters.py │ │ ├── test_hybrid_retriever.py │ │ └── test_sparse_embedding_retriever.py ├── ragas │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── example │ │ ├── evaluation_from_pipeline_example.py │ │ └── evaluation_with_components_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── evaluators │ │ │ ├── py.typed │ │ │ └── ragas │ │ │ ├── __init__.py │ │ │ └── evaluator.py │ └── tests │ │ ├── __init__.py │ │ └── test_evaluator.py ├── snowflake │ ├── CHANGELOG.md │ ├── README.md │ ├── example │ │ └── text2sql_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── retrievers │ │ │ ├── py.typed │ │ │ └── snowflake │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ └── snowflake_table_retriever.py │ └── tests │ │ ├── __init__.py │ │ ├── test_auth.py │ │ └── test_snowflake_table_retriever.py ├── stackit │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── chat_as_component.py │ │ ├── chat_as_pipeline.py │ │ ├── chat_generators_with_structured_outputs.py │ │ └── streaming_chat_with_rag.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── embedders │ │ │ ├── py.typed │ │ │ └── stackit │ │ │ │ ├── __init__.py │ │ │ │ ├── document_embedder.py │ │ │ │ └── text_embedder.py │ │ │ └── generators │ │ │ ├── py.typed │ │ │ └── stackit │ │ │ ├── __init__.py │ │ │ └── chat │ │ │ ├── __init__.py │ │ │ └── chat_generator.py │ └── tests │ │ ├── __init__.py │ │ ├── test_stackit_chat_generator.py │ │ ├── test_stackit_document_embedder.py │ │ └── test_stackit_text_embedder.py ├── togetherai │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── chat_generator_with_tools.py │ │ ├── chatgenerator_with_structured_outputs.py │ │ └── generator_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── generators │ │ │ └── togetherai │ │ │ │ ├── __init__.py │ │ │ │ ├── chat │ │ │ │ ├── __init__.py │ │ │ │ └── chat_generator.py │ │ │ │ └── generator.py │ │ │ └── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── test_togetherai_chat_generator.py │ │ ├── test_togetherai_chat_generator_async.py │ │ └── test_togetherai_generator.py ├── unstructured │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ └── converters │ │ │ ├── py.typed │ │ │ └── unstructured │ │ │ ├── __init__.py │ │ │ └── converter.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── samples │ │ ├── sample_pdf.pdf │ │ └── sample_pdf2.pdf │ │ └── test_converter.py ├── watsonx │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── examples │ │ ├── chat_generator_example.py │ │ ├── embedders_example.py │ │ └── generator_example.py │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ └── components │ │ │ ├── embedders │ │ │ ├── py.typed │ │ │ └── watsonx │ │ │ │ ├── __init__.py │ │ │ │ ├── document_embedder.py │ │ │ │ └── text_embedder.py │ │ │ └── generators │ │ │ ├── py.typed │ │ │ └── watsonx │ │ │ ├── __init__.py │ │ │ ├── chat │ │ │ ├── __init__.py │ │ │ └── chat_generator.py │ │ │ └── generator.py │ └── tests │ │ ├── __init__.py │ │ ├── test_chat_generator.py │ │ ├── test_document_embedder.py │ │ ├── test_files │ │ └── apple.jpg │ │ ├── test_generator.py │ │ └── test_text_embedder.py ├── weaviate │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── docker-compose.yml │ ├── pydoc │ │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ │ └── haystack_integrations │ │ │ ├── components │ │ │ └── retrievers │ │ │ │ ├── py.typed │ │ │ │ └── weaviate │ │ │ │ ├── __init__.py │ │ │ │ ├── bm25_retriever.py │ │ │ │ ├── embedding_retriever.py │ │ │ │ └── hybrid_retriever.py │ │ │ └── document_stores │ │ │ ├── py.typed │ │ │ └── weaviate │ │ │ ├── __init__.py │ │ │ ├── _filters.py │ │ │ ├── auth.py │ │ │ └── document_store.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_auth.py │ │ ├── test_bm25_retriever.py │ │ ├── test_document_store.py │ │ ├── test_embedding_retriever.py │ │ ├── test_files │ │ └── robot1.jpg │ │ ├── test_filters.py │ │ └── test_hybrid_retriever.py └── weights_and_biases_weave │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── example │ ├── README.md │ └── hybrid_retrieval.py │ ├── pydoc │ └── config_docusaurus.yml │ ├── pyproject.toml │ ├── src │ └── haystack_integrations │ │ ├── components │ │ └── connectors │ │ │ ├── py.typed │ │ │ └── weave │ │ │ ├── __init__.py │ │ │ └── weave_connector.py │ │ └── tracing │ │ ├── py.typed │ │ └── weave │ │ ├── __init__.py │ │ └── tracer.py │ └── tests │ ├── test_tracer.py │ └── test_weave_connector.py ├── requirements.txt └── show_unreleased.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/breaking-change-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/ISSUE_TEMPLATE/breaking-change-proposal.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request-for-existing-integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/ISSUE_TEMPLATE/feature-request-for-existing-integrations.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-integration-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/ISSUE_TEMPLATE/new-integration-proposal.md -------------------------------------------------------------------------------- /.github/actions/send_failure/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/actions/send_failure/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/utils/docstrings_checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/utils/docstrings_checksum.py -------------------------------------------------------------------------------- /.github/utils/pyproject_to_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/utils/pyproject_to_requirements.py -------------------------------------------------------------------------------- /.github/utils/validate_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/utils/validate_version.py -------------------------------------------------------------------------------- /.github/workflows/CI_check_integration_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/CI_check_integration_format.yml -------------------------------------------------------------------------------- /.github/workflows/CI_docstring_labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/CI_docstring_labeler.yml -------------------------------------------------------------------------------- /.github/workflows/CI_docusaurus_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/CI_docusaurus_sync.yml -------------------------------------------------------------------------------- /.github/workflows/CI_labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/CI_labeler.yml -------------------------------------------------------------------------------- /.github/workflows/CI_license_compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/CI_license_compliance.yml -------------------------------------------------------------------------------- /.github/workflows/CI_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/CI_project.yml -------------------------------------------------------------------------------- /.github/workflows/CI_pypi_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/CI_pypi_release.yml -------------------------------------------------------------------------------- /.github/workflows/CI_stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/CI_stale.yml -------------------------------------------------------------------------------- /.github/workflows/aimlapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/aimlapi.yml -------------------------------------------------------------------------------- /.github/workflows/amazon_bedrock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/amazon_bedrock.yml -------------------------------------------------------------------------------- /.github/workflows/amazon_sagemaker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/amazon_sagemaker.yml -------------------------------------------------------------------------------- /.github/workflows/anthropic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/anthropic.yml -------------------------------------------------------------------------------- /.github/workflows/astra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/astra.yml -------------------------------------------------------------------------------- /.github/workflows/azure_ai_search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/azure_ai_search.yml -------------------------------------------------------------------------------- /.github/workflows/chroma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/chroma.yml -------------------------------------------------------------------------------- /.github/workflows/cohere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/cohere.yml -------------------------------------------------------------------------------- /.github/workflows/cometapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/cometapi.yml -------------------------------------------------------------------------------- /.github/workflows/deepeval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/deepeval.yml -------------------------------------------------------------------------------- /.github/workflows/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/elasticsearch.yml -------------------------------------------------------------------------------- /.github/workflows/fastembed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/fastembed.yml -------------------------------------------------------------------------------- /.github/workflows/github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/github.yml -------------------------------------------------------------------------------- /.github/workflows/google_ai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/google_ai.yml -------------------------------------------------------------------------------- /.github/workflows/google_genai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/google_genai.yml -------------------------------------------------------------------------------- /.github/workflows/google_vertex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/google_vertex.yml -------------------------------------------------------------------------------- /.github/workflows/hanlp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/hanlp.yml -------------------------------------------------------------------------------- /.github/workflows/jina.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/jina.yml -------------------------------------------------------------------------------- /.github/workflows/langfuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/langfuse.yml -------------------------------------------------------------------------------- /.github/workflows/llama_cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/llama_cpp.yml -------------------------------------------------------------------------------- /.github/workflows/llama_stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/llama_stack.yml -------------------------------------------------------------------------------- /.github/workflows/mcp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/mcp.yml -------------------------------------------------------------------------------- /.github/workflows/meta_llama.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/meta_llama.yml -------------------------------------------------------------------------------- /.github/workflows/mistral.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/mistral.yml -------------------------------------------------------------------------------- /.github/workflows/mongodb_atlas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/mongodb_atlas.yml -------------------------------------------------------------------------------- /.github/workflows/nvidia.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/nvidia.yml -------------------------------------------------------------------------------- /.github/workflows/ollama.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/ollama.yml -------------------------------------------------------------------------------- /.github/workflows/openrouter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/openrouter.yml -------------------------------------------------------------------------------- /.github/workflows/opensearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/opensearch.yml -------------------------------------------------------------------------------- /.github/workflows/optimum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/optimum.yml -------------------------------------------------------------------------------- /.github/workflows/pgvector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/pgvector.yml -------------------------------------------------------------------------------- /.github/workflows/pinecone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/pinecone.yml -------------------------------------------------------------------------------- /.github/workflows/qdrant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/qdrant.yml -------------------------------------------------------------------------------- /.github/workflows/ragas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/ragas.yml -------------------------------------------------------------------------------- /.github/workflows/snowflake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/snowflake.yml -------------------------------------------------------------------------------- /.github/workflows/stackit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/stackit.yml -------------------------------------------------------------------------------- /.github/workflows/togetherai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/togetherai.yml -------------------------------------------------------------------------------- /.github/workflows/unstructured.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/unstructured.yml -------------------------------------------------------------------------------- /.github/workflows/watsonx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/watsonx.yml -------------------------------------------------------------------------------- /.github/workflows/weaviate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/weaviate.yml -------------------------------------------------------------------------------- /.github/workflows/weights_and_biases_weave.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.github/workflows/weights_and_biases_weave.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/cliff.toml -------------------------------------------------------------------------------- /integrations/aimlapi/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## [unreleased] 4 | 5 | ### 🚀 Features 6 | 7 | - *(aimlapi)* Add AIMLAPI provider integration (#2267) 8 | -------------------------------------------------------------------------------- /integrations/aimlapi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/LICENSE.txt -------------------------------------------------------------------------------- /integrations/aimlapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/README.md -------------------------------------------------------------------------------- /integrations/aimlapi/examples/aimlapi_basic_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/examples/aimlapi_basic_example.py -------------------------------------------------------------------------------- /integrations/aimlapi/examples/aimlapi_with_tools_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/examples/aimlapi_with_tools_example.py -------------------------------------------------------------------------------- /integrations/aimlapi/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/aimlapi/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/pyproject.toml -------------------------------------------------------------------------------- /integrations/aimlapi/src/haystack_integrations/components/generators/aimlapi/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/aimlapi/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/aimlapi/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/tests/__init__.py -------------------------------------------------------------------------------- /integrations/aimlapi/tests/test_aimlapi_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/tests/test_aimlapi_chat_generator.py -------------------------------------------------------------------------------- /integrations/aimlapi/tests/test_aimlapi_chat_generator_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/tests/test_aimlapi_chat_generator_async.py -------------------------------------------------------------------------------- /integrations/aimlapi/tests/test_aimlapi_stub_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/aimlapi/tests/test_aimlapi_stub_async.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/amazon_bedrock/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/LICENSE.txt -------------------------------------------------------------------------------- /integrations/amazon_bedrock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/README.md -------------------------------------------------------------------------------- /integrations/amazon_bedrock/examples/bedrock_ranker_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/examples/bedrock_ranker_example.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/examples/chatgenerator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/examples/chatgenerator_example.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/examples/embedders_generator_with_rag_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/examples/embedders_generator_with_rag_example.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/examples/s3_downloader_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/examples/s3_downloader_example.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/amazon_bedrock/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/pyproject.toml -------------------------------------------------------------------------------- /integrations/amazon_bedrock/src/haystack_integrations/common/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/amazon_bedrock/src/haystack_integrations/common/s3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/src/haystack_integrations/common/s3/__init__.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/src/haystack_integrations/common/s3/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/src/haystack_integrations/common/s3/errors.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/src/haystack_integrations/common/s3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/src/haystack_integrations/common/s3/utils.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/src/haystack_integrations/components/downloaders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/amazon_bedrock/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/amazon_bedrock/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/amazon_bedrock/src/haystack_integrations/components/rankers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/__init__.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/conftest.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_chat_generator.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_chat_generator_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_chat_generator_utils.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_document_embedder.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_document_image_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_document_image_embedder.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_files/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_files/apple.jpg -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_files/haystack-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_files/haystack-logo.png -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_files/sample_pdf_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_files/sample_pdf_1.pdf -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_generator.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_ranker.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_s3_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_s3_downloader.py -------------------------------------------------------------------------------- /integrations/amazon_bedrock/tests/test_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_bedrock/tests/test_text_embedder.py -------------------------------------------------------------------------------- /integrations/amazon_sagemaker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_sagemaker/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/amazon_sagemaker/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_sagemaker/LICENSE.txt -------------------------------------------------------------------------------- /integrations/amazon_sagemaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_sagemaker/README.md -------------------------------------------------------------------------------- /integrations/amazon_sagemaker/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_sagemaker/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/amazon_sagemaker/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_sagemaker/pyproject.toml -------------------------------------------------------------------------------- /integrations/amazon_sagemaker/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/amazon_sagemaker/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_sagemaker/tests/__init__.py -------------------------------------------------------------------------------- /integrations/amazon_sagemaker/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_sagemaker/tests/conftest.py -------------------------------------------------------------------------------- /integrations/amazon_sagemaker/tests/test_sagemaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/amazon_sagemaker/tests/test_sagemaker.py -------------------------------------------------------------------------------- /integrations/anthropic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/anthropic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/LICENSE.txt -------------------------------------------------------------------------------- /integrations/anthropic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/README.md -------------------------------------------------------------------------------- /integrations/anthropic/example/documentation_rag_with_claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/example/documentation_rag_with_claude.py -------------------------------------------------------------------------------- /integrations/anthropic/example/prompt_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/example/prompt_caching.py -------------------------------------------------------------------------------- /integrations/anthropic/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/anthropic/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/pyproject.toml -------------------------------------------------------------------------------- /integrations/anthropic/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/anthropic/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/tests/__init__.py -------------------------------------------------------------------------------- /integrations/anthropic/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/tests/conftest.py -------------------------------------------------------------------------------- /integrations/anthropic/tests/test_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/tests/test_chat_generator.py -------------------------------------------------------------------------------- /integrations/anthropic/tests/test_files/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/tests/test_files/apple.jpg -------------------------------------------------------------------------------- /integrations/anthropic/tests/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/tests/test_generator.py -------------------------------------------------------------------------------- /integrations/anthropic/tests/test_vertex_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/anthropic/tests/test_vertex_chat_generator.py -------------------------------------------------------------------------------- /integrations/astra/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/astra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/LICENSE -------------------------------------------------------------------------------- /integrations/astra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/README.md -------------------------------------------------------------------------------- /integrations/astra/examples/data/usr_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/examples/data/usr_01.txt -------------------------------------------------------------------------------- /integrations/astra/examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/examples/example.py -------------------------------------------------------------------------------- /integrations/astra/examples/pipeline_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/examples/pipeline_example.py -------------------------------------------------------------------------------- /integrations/astra/examples/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/examples/requirements.txt -------------------------------------------------------------------------------- /integrations/astra/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/astra/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/pyproject.toml -------------------------------------------------------------------------------- /integrations/astra/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/astra/src/haystack_integrations/document_stores/astra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/src/haystack_integrations/document_stores/astra/__init__.py -------------------------------------------------------------------------------- /integrations/astra/src/haystack_integrations/document_stores/astra/astra_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/src/haystack_integrations/document_stores/astra/astra_client.py -------------------------------------------------------------------------------- /integrations/astra/src/haystack_integrations/document_stores/astra/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/src/haystack_integrations/document_stores/astra/errors.py -------------------------------------------------------------------------------- /integrations/astra/src/haystack_integrations/document_stores/astra/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/src/haystack_integrations/document_stores/astra/filters.py -------------------------------------------------------------------------------- /integrations/astra/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/astra/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/tests/__init__.py -------------------------------------------------------------------------------- /integrations/astra/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/astra/tests/test_embedding_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/tests/test_embedding_retrieval.py -------------------------------------------------------------------------------- /integrations/astra/tests/test_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/astra/tests/test_retriever.py -------------------------------------------------------------------------------- /integrations/azure_ai_search/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/azure_ai_search/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/LICENSE -------------------------------------------------------------------------------- /integrations/azure_ai_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/README.md -------------------------------------------------------------------------------- /integrations/azure_ai_search/example/document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/example/document_store.py -------------------------------------------------------------------------------- /integrations/azure_ai_search/example/embedding_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/example/embedding_retrieval.py -------------------------------------------------------------------------------- /integrations/azure_ai_search/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/azure_ai_search/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/pyproject.toml -------------------------------------------------------------------------------- /integrations/azure_ai_search/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/azure_ai_search/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/azure_ai_search/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/tests/__init__.py -------------------------------------------------------------------------------- /integrations/azure_ai_search/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/tests/conftest.py -------------------------------------------------------------------------------- /integrations/azure_ai_search/tests/test_bm25_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/tests/test_bm25_retriever.py -------------------------------------------------------------------------------- /integrations/azure_ai_search/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/azure_ai_search/tests/test_embedding_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/tests/test_embedding_retriever.py -------------------------------------------------------------------------------- /integrations/azure_ai_search/tests/test_hybrid_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/azure_ai_search/tests/test_hybrid_retriever.py -------------------------------------------------------------------------------- /integrations/chroma/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/.gitignore -------------------------------------------------------------------------------- /integrations/chroma/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/chroma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/LICENSE -------------------------------------------------------------------------------- /integrations/chroma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/README.md -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_01.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_02.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_03.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_04.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_05.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_06.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_07.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_08.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_09.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_10.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_11.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_12.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_20.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_21.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_22.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_23.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_24.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_25.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_26.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_27.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_28.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_29.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_30.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_31.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_32.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_40.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_41.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_42.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_43.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_44.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_45.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_46.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_50.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_51.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_52.txt -------------------------------------------------------------------------------- /integrations/chroma/example/data/usr_90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/data/usr_90.txt -------------------------------------------------------------------------------- /integrations/chroma/example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/example/example.py -------------------------------------------------------------------------------- /integrations/chroma/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/chroma/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/pyproject.toml -------------------------------------------------------------------------------- /integrations/chroma/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/chroma/src/haystack_integrations/document_stores/chroma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/src/haystack_integrations/document_stores/chroma/__init__.py -------------------------------------------------------------------------------- /integrations/chroma/src/haystack_integrations/document_stores/chroma/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/src/haystack_integrations/document_stores/chroma/errors.py -------------------------------------------------------------------------------- /integrations/chroma/src/haystack_integrations/document_stores/chroma/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/src/haystack_integrations/document_stores/chroma/filters.py -------------------------------------------------------------------------------- /integrations/chroma/src/haystack_integrations/document_stores/chroma/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/src/haystack_integrations/document_stores/chroma/utils.py -------------------------------------------------------------------------------- /integrations/chroma/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/chroma/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/tests/__init__.py -------------------------------------------------------------------------------- /integrations/chroma/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/tests/conftest.py -------------------------------------------------------------------------------- /integrations/chroma/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/chroma/tests/test_document_store_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/tests/test_document_store_async.py -------------------------------------------------------------------------------- /integrations/chroma/tests/test_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/chroma/tests/test_retriever.py -------------------------------------------------------------------------------- /integrations/cohere/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/cohere/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/LICENSE.txt -------------------------------------------------------------------------------- /integrations/cohere/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/README.md -------------------------------------------------------------------------------- /integrations/cohere/examples/cohere_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/examples/cohere_embedding.py -------------------------------------------------------------------------------- /integrations/cohere/examples/cohere_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/examples/cohere_generation.py -------------------------------------------------------------------------------- /integrations/cohere/examples/cohere_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/examples/cohere_ranker.py -------------------------------------------------------------------------------- /integrations/cohere/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/cohere/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/pyproject.toml -------------------------------------------------------------------------------- /integrations/cohere/src/haystack_integrations/components/embedders/cohere/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/src/haystack_integrations/components/embedders/cohere/utils.py -------------------------------------------------------------------------------- /integrations/cohere/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/cohere/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/cohere/src/haystack_integrations/components/rankers/cohere/ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/src/haystack_integrations/components/rankers/cohere/ranker.py -------------------------------------------------------------------------------- /integrations/cohere/src/haystack_integrations/components/rankers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/cohere/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/__init__.py -------------------------------------------------------------------------------- /integrations/cohere/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/conftest.py -------------------------------------------------------------------------------- /integrations/cohere/tests/test_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_chat_generator.py -------------------------------------------------------------------------------- /integrations/cohere/tests/test_chat_generator_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_chat_generator_async.py -------------------------------------------------------------------------------- /integrations/cohere/tests/test_chat_generator_chunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_chat_generator_chunks.py -------------------------------------------------------------------------------- /integrations/cohere/tests/test_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_document_embedder.py -------------------------------------------------------------------------------- /integrations/cohere/tests/test_document_image_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_document_image_embedder.py -------------------------------------------------------------------------------- /integrations/cohere/tests/test_files/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_files/apple.jpg -------------------------------------------------------------------------------- /integrations/cohere/tests/test_files/sample_pdf_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_files/sample_pdf_1.pdf -------------------------------------------------------------------------------- /integrations/cohere/tests/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_generator.py -------------------------------------------------------------------------------- /integrations/cohere/tests/test_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_ranker.py -------------------------------------------------------------------------------- /integrations/cohere/tests/test_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cohere/tests/test_text_embedder.py -------------------------------------------------------------------------------- /integrations/cometapi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cometapi/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/cometapi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cometapi/LICENSE.txt -------------------------------------------------------------------------------- /integrations/cometapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cometapi/README.md -------------------------------------------------------------------------------- /integrations/cometapi/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cometapi/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/cometapi/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cometapi/pyproject.toml -------------------------------------------------------------------------------- /integrations/cometapi/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/cometapi/tests/test_cometapi_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cometapi/tests/test_cometapi_chat_generator.py -------------------------------------------------------------------------------- /integrations/cometapi/tests/test_cometapi_chat_generator_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/cometapi/tests/test_cometapi_chat_generator_async.py -------------------------------------------------------------------------------- /integrations/deepeval/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/deepeval/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/deepeval/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/deepeval/LICENSE.txt -------------------------------------------------------------------------------- /integrations/deepeval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/deepeval/README.md -------------------------------------------------------------------------------- /integrations/deepeval/example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/deepeval/example/example.py -------------------------------------------------------------------------------- /integrations/deepeval/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/deepeval/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/deepeval/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/deepeval/pyproject.toml -------------------------------------------------------------------------------- /integrations/deepeval/src/haystack_integrations/components/evaluators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/deepeval/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/deepeval/tests/test_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/deepeval/tests/test_evaluator.py -------------------------------------------------------------------------------- /integrations/deepeval/tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/deepeval/tests/test_metrics.py -------------------------------------------------------------------------------- /integrations/elasticsearch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/.gitignore -------------------------------------------------------------------------------- /integrations/elasticsearch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/elasticsearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/LICENSE -------------------------------------------------------------------------------- /integrations/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/README.md -------------------------------------------------------------------------------- /integrations/elasticsearch/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/docker-compose.yml -------------------------------------------------------------------------------- /integrations/elasticsearch/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/elasticsearch/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/pyproject.toml -------------------------------------------------------------------------------- /integrations/elasticsearch/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/elasticsearch/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/elasticsearch/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/tests/__init__.py -------------------------------------------------------------------------------- /integrations/elasticsearch/tests/test_bm25_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/tests/test_bm25_retriever.py -------------------------------------------------------------------------------- /integrations/elasticsearch/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/elasticsearch/tests/test_embedding_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/tests/test_embedding_retriever.py -------------------------------------------------------------------------------- /integrations/elasticsearch/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/elasticsearch/tests/test_filters.py -------------------------------------------------------------------------------- /integrations/fastembed/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/fastembed/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/LICENSE.txt -------------------------------------------------------------------------------- /integrations/fastembed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/README.md -------------------------------------------------------------------------------- /integrations/fastembed/examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/examples/example.py -------------------------------------------------------------------------------- /integrations/fastembed/examples/ranker_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/examples/ranker_example.py -------------------------------------------------------------------------------- /integrations/fastembed/examples/sparse_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/examples/sparse_example.py -------------------------------------------------------------------------------- /integrations/fastembed/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/fastembed/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/pyproject.toml -------------------------------------------------------------------------------- /integrations/fastembed/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/fastembed/src/haystack_integrations/components/rankers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/fastembed/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/tests/__init__.py -------------------------------------------------------------------------------- /integrations/fastembed/tests/test_fastembed_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/tests/test_fastembed_backend.py -------------------------------------------------------------------------------- /integrations/fastembed/tests/test_fastembed_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/tests/test_fastembed_document_embedder.py -------------------------------------------------------------------------------- /integrations/fastembed/tests/test_fastembed_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/tests/test_fastembed_ranker.py -------------------------------------------------------------------------------- /integrations/fastembed/tests/test_fastembed_sparse_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/tests/test_fastembed_sparse_document_embedder.py -------------------------------------------------------------------------------- /integrations/fastembed/tests/test_fastembed_sparse_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/tests/test_fastembed_sparse_text_embedder.py -------------------------------------------------------------------------------- /integrations/fastembed/tests/test_fastembed_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/fastembed/tests/test_fastembed_text_embedder.py -------------------------------------------------------------------------------- /integrations/github/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/github/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/LICENSE.txt -------------------------------------------------------------------------------- /integrations/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/README.md -------------------------------------------------------------------------------- /integrations/github/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/github/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/pyproject.toml -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/components/connectors/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/prompts/github/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/prompts/github/__init__.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/prompts/github/context_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/prompts/github/context_prompt.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/prompts/github/file_editor_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/prompts/github/file_editor_prompt.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/prompts/github/pr_creator_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/prompts/github/pr_creator_prompt.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/prompts/github/repo_forker_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/prompts/github/repo_forker_prompt.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/prompts/github/repo_viewer_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/prompts/github/repo_viewer_prompt.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/prompts/github/system_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/prompts/github/system_prompt.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/prompts/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/tools/github/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/tools/github/__init__.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/tools/github/file_editor_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/tools/github/file_editor_tool.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/tools/github/issue_commenter_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/tools/github/issue_commenter_tool.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/tools/github/issue_viewer_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/tools/github/issue_viewer_tool.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/tools/github/pr_creator_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/tools/github/pr_creator_tool.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/tools/github/repo_forker_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/tools/github/repo_forker_tool.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/tools/github/repo_viewer_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/tools/github/repo_viewer_tool.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/tools/github/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/src/haystack_integrations/tools/github/utils.py -------------------------------------------------------------------------------- /integrations/github/src/haystack_integrations/tools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/github/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/__init__.py -------------------------------------------------------------------------------- /integrations/github/tests/test_file_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_file_editor.py -------------------------------------------------------------------------------- /integrations/github/tests/test_file_editor_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_file_editor_tool.py -------------------------------------------------------------------------------- /integrations/github/tests/test_issue_commenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_issue_commenter.py -------------------------------------------------------------------------------- /integrations/github/tests/test_issue_commenter_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_issue_commenter_tool.py -------------------------------------------------------------------------------- /integrations/github/tests/test_issue_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_issue_viewer.py -------------------------------------------------------------------------------- /integrations/github/tests/test_issue_viewer_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_issue_viewer_tool.py -------------------------------------------------------------------------------- /integrations/github/tests/test_pr_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_pr_creator.py -------------------------------------------------------------------------------- /integrations/github/tests/test_pr_creator_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_pr_creator_tool.py -------------------------------------------------------------------------------- /integrations/github/tests/test_repo_forker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_repo_forker.py -------------------------------------------------------------------------------- /integrations/github/tests/test_repo_forker_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_repo_forker_tool.py -------------------------------------------------------------------------------- /integrations/github/tests/test_repo_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_repo_viewer.py -------------------------------------------------------------------------------- /integrations/github/tests/test_repo_viewer_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/github/tests/test_repo_viewer_tool.py -------------------------------------------------------------------------------- /integrations/google_ai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/google_ai/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/LICENSE.txt -------------------------------------------------------------------------------- /integrations/google_ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/README.md -------------------------------------------------------------------------------- /integrations/google_ai/example_assets/robot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/example_assets/robot1.jpg -------------------------------------------------------------------------------- /integrations/google_ai/example_assets/robot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/example_assets/robot2.jpg -------------------------------------------------------------------------------- /integrations/google_ai/example_assets/robot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/example_assets/robot3.jpg -------------------------------------------------------------------------------- /integrations/google_ai/example_assets/robot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/example_assets/robot4.jpg -------------------------------------------------------------------------------- /integrations/google_ai/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/google_ai/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/pyproject.toml -------------------------------------------------------------------------------- /integrations/google_ai/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/tests/__init__.py -------------------------------------------------------------------------------- /integrations/google_ai/tests/generators/chat/test_chat_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/tests/generators/chat/test_chat_gemini.py -------------------------------------------------------------------------------- /integrations/google_ai/tests/generators/test_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_ai/tests/generators/test_gemini.py -------------------------------------------------------------------------------- /integrations/google_genai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/google_genai/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/LICENSE.txt -------------------------------------------------------------------------------- /integrations/google_genai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/README.md -------------------------------------------------------------------------------- /integrations/google_genai/examples/chatgenerator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/examples/chatgenerator_example.py -------------------------------------------------------------------------------- /integrations/google_genai/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/google_genai/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/pyproject.toml -------------------------------------------------------------------------------- /integrations/google_genai/src/haystack_integrations/components/common/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/google_genai/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/google_genai/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/google_genai/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/tests/conftest.py -------------------------------------------------------------------------------- /integrations/google_genai/tests/test_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/tests/test_chat_generator.py -------------------------------------------------------------------------------- /integrations/google_genai/tests/test_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/tests/test_document_embedder.py -------------------------------------------------------------------------------- /integrations/google_genai/tests/test_files/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/tests/test_files/apple.jpg -------------------------------------------------------------------------------- /integrations/google_genai/tests/test_files/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/tests/test_files/banana.png -------------------------------------------------------------------------------- /integrations/google_genai/tests/test_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/tests/test_text_embedder.py -------------------------------------------------------------------------------- /integrations/google_genai/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_genai/tests/test_utils.py -------------------------------------------------------------------------------- /integrations/google_vertex/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/google_vertex/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/LICENSE.txt -------------------------------------------------------------------------------- /integrations/google_vertex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/README.md -------------------------------------------------------------------------------- /integrations/google_vertex/example_assets/robot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/example_assets/robot1.jpg -------------------------------------------------------------------------------- /integrations/google_vertex/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/google_vertex/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/pyproject.toml -------------------------------------------------------------------------------- /integrations/google_vertex/src/haystack_integrations/components/generators/google_vertex/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/google_vertex/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/__init__.py -------------------------------------------------------------------------------- /integrations/google_vertex/tests/chat/test_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/chat/test_gemini.py -------------------------------------------------------------------------------- /integrations/google_vertex/tests/test_captioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/test_captioner.py -------------------------------------------------------------------------------- /integrations/google_vertex/tests/test_code_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/test_code_generator.py -------------------------------------------------------------------------------- /integrations/google_vertex/tests/test_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/test_document_embedder.py -------------------------------------------------------------------------------- /integrations/google_vertex/tests/test_gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/test_gemini.py -------------------------------------------------------------------------------- /integrations/google_vertex/tests/test_image_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/test_image_generator.py -------------------------------------------------------------------------------- /integrations/google_vertex/tests/test_question_answering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/test_question_answering.py -------------------------------------------------------------------------------- /integrations/google_vertex/tests/test_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/test_text_embedder.py -------------------------------------------------------------------------------- /integrations/google_vertex/tests/test_text_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/google_vertex/tests/test_text_generator.py -------------------------------------------------------------------------------- /integrations/hanlp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/hanlp/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/hanlp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/hanlp/LICENSE.txt -------------------------------------------------------------------------------- /integrations/hanlp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/hanlp/README.md -------------------------------------------------------------------------------- /integrations/hanlp/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/hanlp/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/hanlp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/hanlp/pyproject.toml -------------------------------------------------------------------------------- /integrations/hanlp/src/haystack_integrations/components/preprocessors/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/hanlp/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/hanlp/tests/__init__.py -------------------------------------------------------------------------------- /integrations/hanlp/tests/test_chinese_document_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/hanlp/tests/test_chinese_document_splitter.py -------------------------------------------------------------------------------- /integrations/hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/hatch.toml -------------------------------------------------------------------------------- /integrations/jina/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/jina/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/LICENSE.txt -------------------------------------------------------------------------------- /integrations/jina/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/README.md -------------------------------------------------------------------------------- /integrations/jina/examples/jina_reader_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/examples/jina_reader_connector.py -------------------------------------------------------------------------------- /integrations/jina/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/jina/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/pyproject.toml -------------------------------------------------------------------------------- /integrations/jina/src/haystack_integrations/components/connectors/jina/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/src/haystack_integrations/components/connectors/jina/__init__.py -------------------------------------------------------------------------------- /integrations/jina/src/haystack_integrations/components/connectors/jina/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/src/haystack_integrations/components/connectors/jina/reader.py -------------------------------------------------------------------------------- /integrations/jina/src/haystack_integrations/components/connectors/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/jina/src/haystack_integrations/components/embedders/jina/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/src/haystack_integrations/components/embedders/jina/__init__.py -------------------------------------------------------------------------------- /integrations/jina/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/jina/src/haystack_integrations/components/rankers/jina/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/src/haystack_integrations/components/rankers/jina/__init__.py -------------------------------------------------------------------------------- /integrations/jina/src/haystack_integrations/components/rankers/jina/ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/src/haystack_integrations/components/rankers/jina/ranker.py -------------------------------------------------------------------------------- /integrations/jina/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/tests/__init__.py -------------------------------------------------------------------------------- /integrations/jina/tests/test_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/tests/test_document_embedder.py -------------------------------------------------------------------------------- /integrations/jina/tests/test_document_image_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/tests/test_document_image_embedder.py -------------------------------------------------------------------------------- /integrations/jina/tests/test_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/tests/test_ranker.py -------------------------------------------------------------------------------- /integrations/jina/tests/test_reader_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/tests/test_reader_connector.py -------------------------------------------------------------------------------- /integrations/jina/tests/test_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/jina/tests/test_text_embedder.py -------------------------------------------------------------------------------- /integrations/langfuse/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/langfuse/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/LICENSE.txt -------------------------------------------------------------------------------- /integrations/langfuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/README.md -------------------------------------------------------------------------------- /integrations/langfuse/example/basic_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/example/basic_rag.py -------------------------------------------------------------------------------- /integrations/langfuse/example/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/example/chat.py -------------------------------------------------------------------------------- /integrations/langfuse/example/requirements.txt: -------------------------------------------------------------------------------- 1 | langfuse-haystack 2 | datasets 3 | sentence-transformers -------------------------------------------------------------------------------- /integrations/langfuse/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/langfuse/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/pyproject.toml -------------------------------------------------------------------------------- /integrations/langfuse/src/haystack_integrations/components/connectors/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/langfuse/src/haystack_integrations/tracing/langfuse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/src/haystack_integrations/tracing/langfuse/__init__.py -------------------------------------------------------------------------------- /integrations/langfuse/src/haystack_integrations/tracing/langfuse/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/src/haystack_integrations/tracing/langfuse/tracer.py -------------------------------------------------------------------------------- /integrations/langfuse/src/haystack_integrations/tracing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/langfuse/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/tests/__init__.py -------------------------------------------------------------------------------- /integrations/langfuse/tests/test_langfuse_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/tests/test_langfuse_connector.py -------------------------------------------------------------------------------- /integrations/langfuse/tests/test_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/tests/test_tracer.py -------------------------------------------------------------------------------- /integrations/langfuse/tests/test_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/langfuse/tests/test_tracing.py -------------------------------------------------------------------------------- /integrations/llama_cpp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/llama_cpp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/LICENSE.txt -------------------------------------------------------------------------------- /integrations/llama_cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/README.md -------------------------------------------------------------------------------- /integrations/llama_cpp/examples/llama_cpp_generator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/examples/llama_cpp_generator_example.py -------------------------------------------------------------------------------- /integrations/llama_cpp/examples/rag_pipeline_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/examples/rag_pipeline_example.py -------------------------------------------------------------------------------- /integrations/llama_cpp/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/llama_cpp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/pyproject.toml -------------------------------------------------------------------------------- /integrations/llama_cpp/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/llama_cpp/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/tests/__init__.py -------------------------------------------------------------------------------- /integrations/llama_cpp/tests/models/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /integrations/llama_cpp/tests/test_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/tests/test_chat_generator.py -------------------------------------------------------------------------------- /integrations/llama_cpp/tests/test_files/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/tests/test_files/apple.jpg -------------------------------------------------------------------------------- /integrations/llama_cpp/tests/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_cpp/tests/test_generator.py -------------------------------------------------------------------------------- /integrations/llama_stack/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_stack/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/llama_stack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_stack/LICENSE.txt -------------------------------------------------------------------------------- /integrations/llama_stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_stack/README.md -------------------------------------------------------------------------------- /integrations/llama_stack/examples/chatgenerator_with_structured_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_stack/examples/chatgenerator_with_structured_outputs.py -------------------------------------------------------------------------------- /integrations/llama_stack/examples/llama-stack-with-tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_stack/examples/llama-stack-with-tools.py -------------------------------------------------------------------------------- /integrations/llama_stack/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_stack/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/llama_stack/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_stack/pyproject.toml -------------------------------------------------------------------------------- /integrations/llama_stack/src/haystack_integrations/components/generators/llama_stack/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/llama_stack/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/llama_stack/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_stack/tests/__init__.py -------------------------------------------------------------------------------- /integrations/llama_stack/tests/test_llama_stack_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/llama_stack/tests/test_llama_stack_chat_generator.py -------------------------------------------------------------------------------- /integrations/mcp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/mcp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/LICENSE.txt -------------------------------------------------------------------------------- /integrations/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/README.md -------------------------------------------------------------------------------- /integrations/mcp/examples/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/examples/mcp_client.py -------------------------------------------------------------------------------- /integrations/mcp/examples/mcp_filtered_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/examples/mcp_filtered_tools.py -------------------------------------------------------------------------------- /integrations/mcp/examples/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/examples/mcp_server.py -------------------------------------------------------------------------------- /integrations/mcp/examples/mcp_sse_toolset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/examples/mcp_sse_toolset.py -------------------------------------------------------------------------------- /integrations/mcp/examples/mcp_stdio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/examples/mcp_stdio_client.py -------------------------------------------------------------------------------- /integrations/mcp/examples/mcp_stdio_toolset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/examples/mcp_stdio_toolset.py -------------------------------------------------------------------------------- /integrations/mcp/examples/time_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/examples/time_pipeline.py -------------------------------------------------------------------------------- /integrations/mcp/examples/time_pipeline_toolset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/examples/time_pipeline_toolset.py -------------------------------------------------------------------------------- /integrations/mcp/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/mcp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/pyproject.toml -------------------------------------------------------------------------------- /integrations/mcp/src/haystack_integrations/tools/mcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/src/haystack_integrations/tools/mcp/__init__.py -------------------------------------------------------------------------------- /integrations/mcp/src/haystack_integrations/tools/mcp/mcp_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/src/haystack_integrations/tools/mcp/mcp_tool.py -------------------------------------------------------------------------------- /integrations/mcp/src/haystack_integrations/tools/mcp/mcp_toolset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/src/haystack_integrations/tools/mcp/mcp_toolset.py -------------------------------------------------------------------------------- /integrations/mcp/src/haystack_integrations/tools/mcp/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/mcp/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/tests/__init__.py -------------------------------------------------------------------------------- /integrations/mcp/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/tests/conftest.py -------------------------------------------------------------------------------- /integrations/mcp/tests/mcp_memory_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/tests/mcp_memory_transport.py -------------------------------------------------------------------------------- /integrations/mcp/tests/mcp_servers_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/tests/mcp_servers_fixtures.py -------------------------------------------------------------------------------- /integrations/mcp/tests/test_mcp_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/tests/test_mcp_integration.py -------------------------------------------------------------------------------- /integrations/mcp/tests/test_mcp_server_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/tests/test_mcp_server_info.py -------------------------------------------------------------------------------- /integrations/mcp/tests/test_mcp_timeout_reconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/tests/test_mcp_timeout_reconnection.py -------------------------------------------------------------------------------- /integrations/mcp/tests/test_mcp_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/tests/test_mcp_tool.py -------------------------------------------------------------------------------- /integrations/mcp/tests/test_mcp_toolset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mcp/tests/test_mcp_toolset.py -------------------------------------------------------------------------------- /integrations/meta_llama/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/meta_llama/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/LICENSE.txt -------------------------------------------------------------------------------- /integrations/meta_llama/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/README.md -------------------------------------------------------------------------------- /integrations/meta_llama/examples/chat_generator_with_structured_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/examples/chat_generator_with_structured_output.py -------------------------------------------------------------------------------- /integrations/meta_llama/examples/rag_with_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/examples/rag_with_llama.py -------------------------------------------------------------------------------- /integrations/meta_llama/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/meta_llama/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/pyproject.toml -------------------------------------------------------------------------------- /integrations/meta_llama/src/haystack_integrations/components/generators/meta_llama/chat/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Meta Platforms, Inc. and affiliates 2 | -------------------------------------------------------------------------------- /integrations/meta_llama/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/meta_llama/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/tests/__init__.py -------------------------------------------------------------------------------- /integrations/meta_llama/tests/test_llama_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/tests/test_llama_chat_generator.py -------------------------------------------------------------------------------- /integrations/meta_llama/tests/test_llama_chat_generator_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/meta_llama/tests/test_llama_chat_generator_async.py -------------------------------------------------------------------------------- /integrations/mistral/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/mistral/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/LICENSE.txt -------------------------------------------------------------------------------- /integrations/mistral/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/README.md -------------------------------------------------------------------------------- /integrations/mistral/examples/chat_generator_with_structured_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/examples/chat_generator_with_structured_output.py -------------------------------------------------------------------------------- /integrations/mistral/examples/indexing_ocr_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/examples/indexing_ocr_pipeline.py -------------------------------------------------------------------------------- /integrations/mistral/examples/indexing_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/examples/indexing_pipeline.py -------------------------------------------------------------------------------- /integrations/mistral/examples/streaming_chat_with_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/examples/streaming_chat_with_rag.py -------------------------------------------------------------------------------- /integrations/mistral/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/mistral/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/pyproject.toml -------------------------------------------------------------------------------- /integrations/mistral/src/haystack_integrations/components/converters/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/mistral/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/mistral/src/haystack_integrations/components/generators/mistral/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/mistral/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/mistral/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/tests/__init__.py -------------------------------------------------------------------------------- /integrations/mistral/tests/test_mistral_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/tests/test_mistral_chat_generator.py -------------------------------------------------------------------------------- /integrations/mistral/tests/test_mistral_chat_generator_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/tests/test_mistral_chat_generator_async.py -------------------------------------------------------------------------------- /integrations/mistral/tests/test_mistral_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/tests/test_mistral_document_embedder.py -------------------------------------------------------------------------------- /integrations/mistral/tests/test_mistral_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/tests/test_mistral_text_embedder.py -------------------------------------------------------------------------------- /integrations/mistral/tests/test_ocr_document_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mistral/tests/test_ocr_document_converter.py -------------------------------------------------------------------------------- /integrations/mongodb_atlas/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/mongodb_atlas/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/LICENSE.txt -------------------------------------------------------------------------------- /integrations/mongodb_atlas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/README.md -------------------------------------------------------------------------------- /integrations/mongodb_atlas/examples/embedding_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/examples/embedding_retrieval.py -------------------------------------------------------------------------------- /integrations/mongodb_atlas/examples/hybrid_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/examples/hybrid_retrieval.py -------------------------------------------------------------------------------- /integrations/mongodb_atlas/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/mongodb_atlas/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/pyproject.toml -------------------------------------------------------------------------------- /integrations/mongodb_atlas/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/mongodb_atlas/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/mongodb_atlas/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/tests/__init__.py -------------------------------------------------------------------------------- /integrations/mongodb_atlas/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/mongodb_atlas/tests/test_document_store_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/tests/test_document_store_async.py -------------------------------------------------------------------------------- /integrations/mongodb_atlas/tests/test_embedding_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/tests/test_embedding_retrieval.py -------------------------------------------------------------------------------- /integrations/mongodb_atlas/tests/test_fulltext_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/tests/test_fulltext_retrieval.py -------------------------------------------------------------------------------- /integrations/mongodb_atlas/tests/test_fulltext_retrieval_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/tests/test_fulltext_retrieval_async.py -------------------------------------------------------------------------------- /integrations/mongodb_atlas/tests/test_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/mongodb_atlas/tests/test_retriever.py -------------------------------------------------------------------------------- /integrations/nvidia/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/nvidia/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/LICENSE.txt -------------------------------------------------------------------------------- /integrations/nvidia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/README.md -------------------------------------------------------------------------------- /integrations/nvidia/examples/chat_generator_with_structured_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/examples/chat_generator_with_structured_outputs.py -------------------------------------------------------------------------------- /integrations/nvidia/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/nvidia/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/pyproject.toml -------------------------------------------------------------------------------- /integrations/nvidia/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/nvidia/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/nvidia/src/haystack_integrations/components/rankers/nvidia/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/nvidia/src/haystack_integrations/utils/nvidia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/src/haystack_integrations/utils/nvidia/__init__.py -------------------------------------------------------------------------------- /integrations/nvidia/src/haystack_integrations/utils/nvidia/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/src/haystack_integrations/utils/nvidia/client.py -------------------------------------------------------------------------------- /integrations/nvidia/src/haystack_integrations/utils/nvidia/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/src/haystack_integrations/utils/nvidia/models.py -------------------------------------------------------------------------------- /integrations/nvidia/src/haystack_integrations/utils/nvidia/nim_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/src/haystack_integrations/utils/nvidia/nim_backend.py -------------------------------------------------------------------------------- /integrations/nvidia/src/haystack_integrations/utils/nvidia/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/src/haystack_integrations/utils/nvidia/utils.py -------------------------------------------------------------------------------- /integrations/nvidia/src/haystack_integrations/utils/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/nvidia/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/__init__.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/conftest.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/test_base_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/test_base_url.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/test_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/test_document_embedder.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/test_embedding_truncate_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/test_embedding_truncate_mode.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/test_generator.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/test_nim_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/test_nim_backend.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/test_nvidia_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/test_nvidia_chat_generator.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/test_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/test_ranker.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/test_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/test_text_embedder.py -------------------------------------------------------------------------------- /integrations/nvidia/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/nvidia/tests/test_utils.py -------------------------------------------------------------------------------- /integrations/ollama/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/ollama/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/LICENSE.txt -------------------------------------------------------------------------------- /integrations/ollama/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/README.md -------------------------------------------------------------------------------- /integrations/ollama/examples/chat_generator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/examples/chat_generator_example.py -------------------------------------------------------------------------------- /integrations/ollama/examples/embedders_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/examples/embedders_example.py -------------------------------------------------------------------------------- /integrations/ollama/examples/generator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/examples/generator_example.py -------------------------------------------------------------------------------- /integrations/ollama/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/ollama/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/pyproject.toml -------------------------------------------------------------------------------- /integrations/ollama/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/ollama/src/haystack_integrations/components/generators/ollama/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/ollama/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/ollama/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/tests/__init__.py -------------------------------------------------------------------------------- /integrations/ollama/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/tests/conftest.py -------------------------------------------------------------------------------- /integrations/ollama/tests/test_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/tests/test_chat_generator.py -------------------------------------------------------------------------------- /integrations/ollama/tests/test_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/tests/test_document_embedder.py -------------------------------------------------------------------------------- /integrations/ollama/tests/test_files/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/tests/test_files/apple.jpg -------------------------------------------------------------------------------- /integrations/ollama/tests/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/tests/test_generator.py -------------------------------------------------------------------------------- /integrations/ollama/tests/test_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ollama/tests/test_text_embedder.py -------------------------------------------------------------------------------- /integrations/openrouter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/openrouter/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/LICENSE.txt -------------------------------------------------------------------------------- /integrations/openrouter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/README.md -------------------------------------------------------------------------------- /integrations/openrouter/examples/openrouter_with_structured_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/examples/openrouter_with_structured_outputs.py -------------------------------------------------------------------------------- /integrations/openrouter/examples/openrouter_with_tools_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/examples/openrouter_with_tools_example.py -------------------------------------------------------------------------------- /integrations/openrouter/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/openrouter/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/pyproject.toml -------------------------------------------------------------------------------- /integrations/openrouter/src/haystack_integrations/components/generators/openrouter/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/openrouter/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/openrouter/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/tests/__init__.py -------------------------------------------------------------------------------- /integrations/openrouter/tests/test_openrouter_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/tests/test_openrouter_chat_generator.py -------------------------------------------------------------------------------- /integrations/openrouter/tests/test_openrouter_chat_generator_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/openrouter/tests/test_openrouter_chat_generator_async.py -------------------------------------------------------------------------------- /integrations/opensearch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/.gitignore -------------------------------------------------------------------------------- /integrations/opensearch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/opensearch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/LICENSE -------------------------------------------------------------------------------- /integrations/opensearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/README.md -------------------------------------------------------------------------------- /integrations/opensearch/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/docker-compose.yml -------------------------------------------------------------------------------- /integrations/opensearch/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/opensearch/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/pyproject.toml -------------------------------------------------------------------------------- /integrations/opensearch/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/opensearch/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/opensearch/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/tests/__init__.py -------------------------------------------------------------------------------- /integrations/opensearch/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/tests/conftest.py -------------------------------------------------------------------------------- /integrations/opensearch/tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/tests/test_auth.py -------------------------------------------------------------------------------- /integrations/opensearch/tests/test_bm25_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/tests/test_bm25_retriever.py -------------------------------------------------------------------------------- /integrations/opensearch/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/opensearch/tests/test_document_store_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/tests/test_document_store_async.py -------------------------------------------------------------------------------- /integrations/opensearch/tests/test_embedding_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/tests/test_embedding_retriever.py -------------------------------------------------------------------------------- /integrations/opensearch/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/tests/test_filters.py -------------------------------------------------------------------------------- /integrations/opensearch/tests/test_open_search_hybrid_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/opensearch/tests/test_open_search_hybrid_retriever.py -------------------------------------------------------------------------------- /integrations/optimum/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/optimum/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/optimum/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/optimum/LICENSE.txt -------------------------------------------------------------------------------- /integrations/optimum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/optimum/README.md -------------------------------------------------------------------------------- /integrations/optimum/example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/optimum/example/example.py -------------------------------------------------------------------------------- /integrations/optimum/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/optimum/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/optimum/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/optimum/pyproject.toml -------------------------------------------------------------------------------- /integrations/optimum/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/optimum/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/optimum/tests/__init__.py -------------------------------------------------------------------------------- /integrations/optimum/tests/test_optimum_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/optimum/tests/test_optimum_document_embedder.py -------------------------------------------------------------------------------- /integrations/optimum/tests/test_optimum_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/optimum/tests/test_optimum_text_embedder.py -------------------------------------------------------------------------------- /integrations/pgvector/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/pgvector/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/LICENSE.txt -------------------------------------------------------------------------------- /integrations/pgvector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/README.md -------------------------------------------------------------------------------- /integrations/pgvector/examples/embedding_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/examples/embedding_retrieval.py -------------------------------------------------------------------------------- /integrations/pgvector/examples/hybrid_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/examples/hybrid_retrieval.py -------------------------------------------------------------------------------- /integrations/pgvector/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/pgvector/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/pyproject.toml -------------------------------------------------------------------------------- /integrations/pgvector/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/pgvector/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/pgvector/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/tests/__init__.py -------------------------------------------------------------------------------- /integrations/pgvector/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/tests/conftest.py -------------------------------------------------------------------------------- /integrations/pgvector/tests/test_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/tests/test_converters.py -------------------------------------------------------------------------------- /integrations/pgvector/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/pgvector/tests/test_document_store_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/tests/test_document_store_async.py -------------------------------------------------------------------------------- /integrations/pgvector/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/tests/test_filters.py -------------------------------------------------------------------------------- /integrations/pgvector/tests/test_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/tests/test_retrieval.py -------------------------------------------------------------------------------- /integrations/pgvector/tests/test_retrieval_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/tests/test_retrieval_async.py -------------------------------------------------------------------------------- /integrations/pgvector/tests/test_retrievers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pgvector/tests/test_retrievers.py -------------------------------------------------------------------------------- /integrations/pinecone/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/pinecone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/README.md -------------------------------------------------------------------------------- /integrations/pinecone/examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/examples/example.py -------------------------------------------------------------------------------- /integrations/pinecone/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/pinecone/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/pyproject.toml -------------------------------------------------------------------------------- /integrations/pinecone/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/pinecone/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/pinecone/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/tests/__init__.py -------------------------------------------------------------------------------- /integrations/pinecone/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/tests/conftest.py -------------------------------------------------------------------------------- /integrations/pinecone/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/pinecone/tests/test_document_store_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/tests/test_document_store_async.py -------------------------------------------------------------------------------- /integrations/pinecone/tests/test_embedding_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/tests/test_embedding_retriever.py -------------------------------------------------------------------------------- /integrations/pinecone/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/pinecone/tests/test_filters.py -------------------------------------------------------------------------------- /integrations/qdrant/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/qdrant/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/LICENSE.txt -------------------------------------------------------------------------------- /integrations/qdrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/README.md -------------------------------------------------------------------------------- /integrations/qdrant/examples/embedding_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/examples/embedding_retrieval.py -------------------------------------------------------------------------------- /integrations/qdrant/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/qdrant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/pyproject.toml -------------------------------------------------------------------------------- /integrations/qdrant/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/qdrant/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/qdrant/src/haystack_integrations/document_stores/qdrant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/src/haystack_integrations/document_stores/qdrant/__init__.py -------------------------------------------------------------------------------- /integrations/qdrant/src/haystack_integrations/document_stores/qdrant/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/src/haystack_integrations/document_stores/qdrant/filters.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/__init__.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/conftest.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/test_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/test_converters.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/test_dict_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/test_dict_converters.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/test_document_store_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/test_document_store_async.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/test_embedding_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/test_embedding_retriever.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/test_filters.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/test_hybrid_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/test_hybrid_retriever.py -------------------------------------------------------------------------------- /integrations/qdrant/tests/test_sparse_embedding_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/qdrant/tests/test_sparse_embedding_retriever.py -------------------------------------------------------------------------------- /integrations/ragas/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ragas/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/ragas/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ragas/LICENSE.txt -------------------------------------------------------------------------------- /integrations/ragas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ragas/README.md -------------------------------------------------------------------------------- /integrations/ragas/example/evaluation_from_pipeline_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ragas/example/evaluation_from_pipeline_example.py -------------------------------------------------------------------------------- /integrations/ragas/example/evaluation_with_components_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ragas/example/evaluation_with_components_example.py -------------------------------------------------------------------------------- /integrations/ragas/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ragas/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/ragas/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ragas/pyproject.toml -------------------------------------------------------------------------------- /integrations/ragas/src/haystack_integrations/components/evaluators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/ragas/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/ragas/tests/test_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/ragas/tests/test_evaluator.py -------------------------------------------------------------------------------- /integrations/snowflake/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/snowflake/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/snowflake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/snowflake/README.md -------------------------------------------------------------------------------- /integrations/snowflake/example/text2sql_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/snowflake/example/text2sql_example.py -------------------------------------------------------------------------------- /integrations/snowflake/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/snowflake/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/snowflake/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/snowflake/pyproject.toml -------------------------------------------------------------------------------- /integrations/snowflake/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/snowflake/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/snowflake/tests/__init__.py -------------------------------------------------------------------------------- /integrations/snowflake/tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/snowflake/tests/test_auth.py -------------------------------------------------------------------------------- /integrations/snowflake/tests/test_snowflake_table_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/snowflake/tests/test_snowflake_table_retriever.py -------------------------------------------------------------------------------- /integrations/stackit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/stackit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/LICENSE.txt -------------------------------------------------------------------------------- /integrations/stackit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/README.md -------------------------------------------------------------------------------- /integrations/stackit/examples/chat_as_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/examples/chat_as_component.py -------------------------------------------------------------------------------- /integrations/stackit/examples/chat_as_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/examples/chat_as_pipeline.py -------------------------------------------------------------------------------- /integrations/stackit/examples/chat_generators_with_structured_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/examples/chat_generators_with_structured_outputs.py -------------------------------------------------------------------------------- /integrations/stackit/examples/streaming_chat_with_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/examples/streaming_chat_with_rag.py -------------------------------------------------------------------------------- /integrations/stackit/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/stackit/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/pyproject.toml -------------------------------------------------------------------------------- /integrations/stackit/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/stackit/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/stackit/src/haystack_integrations/components/generators/stackit/chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/stackit/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/tests/__init__.py -------------------------------------------------------------------------------- /integrations/stackit/tests/test_stackit_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/tests/test_stackit_chat_generator.py -------------------------------------------------------------------------------- /integrations/stackit/tests/test_stackit_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/tests/test_stackit_document_embedder.py -------------------------------------------------------------------------------- /integrations/stackit/tests/test_stackit_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/stackit/tests/test_stackit_text_embedder.py -------------------------------------------------------------------------------- /integrations/togetherai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/togetherai/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/LICENSE.txt -------------------------------------------------------------------------------- /integrations/togetherai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/README.md -------------------------------------------------------------------------------- /integrations/togetherai/examples/chat_generator_with_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/examples/chat_generator_with_tools.py -------------------------------------------------------------------------------- /integrations/togetherai/examples/chatgenerator_with_structured_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/examples/chatgenerator_with_structured_outputs.py -------------------------------------------------------------------------------- /integrations/togetherai/examples/generator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/examples/generator_example.py -------------------------------------------------------------------------------- /integrations/togetherai/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/togetherai/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/pyproject.toml -------------------------------------------------------------------------------- /integrations/togetherai/src/haystack_integrations/components/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/togetherai/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/tests/__init__.py -------------------------------------------------------------------------------- /integrations/togetherai/tests/test_togetherai_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/tests/test_togetherai_chat_generator.py -------------------------------------------------------------------------------- /integrations/togetherai/tests/test_togetherai_chat_generator_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/tests/test_togetherai_chat_generator_async.py -------------------------------------------------------------------------------- /integrations/togetherai/tests/test_togetherai_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/togetherai/tests/test_togetherai_generator.py -------------------------------------------------------------------------------- /integrations/unstructured/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/unstructured/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/LICENSE -------------------------------------------------------------------------------- /integrations/unstructured/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/README.md -------------------------------------------------------------------------------- /integrations/unstructured/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/unstructured/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/pyproject.toml -------------------------------------------------------------------------------- /integrations/unstructured/src/haystack_integrations/components/converters/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/unstructured/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/tests/__init__.py -------------------------------------------------------------------------------- /integrations/unstructured/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/tests/conftest.py -------------------------------------------------------------------------------- /integrations/unstructured/tests/samples/sample_pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/tests/samples/sample_pdf.pdf -------------------------------------------------------------------------------- /integrations/unstructured/tests/samples/sample_pdf2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/tests/samples/sample_pdf2.pdf -------------------------------------------------------------------------------- /integrations/unstructured/tests/test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/unstructured/tests/test_converter.py -------------------------------------------------------------------------------- /integrations/watsonx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/watsonx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/LICENSE.txt -------------------------------------------------------------------------------- /integrations/watsonx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/README.md -------------------------------------------------------------------------------- /integrations/watsonx/examples/chat_generator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/examples/chat_generator_example.py -------------------------------------------------------------------------------- /integrations/watsonx/examples/embedders_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/examples/embedders_example.py -------------------------------------------------------------------------------- /integrations/watsonx/examples/generator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/examples/generator_example.py -------------------------------------------------------------------------------- /integrations/watsonx/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/watsonx/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/pyproject.toml -------------------------------------------------------------------------------- /integrations/watsonx/src/haystack_integrations/components/embedders/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/watsonx/src/haystack_integrations/components/generators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/watsonx/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/tests/__init__.py -------------------------------------------------------------------------------- /integrations/watsonx/tests/test_chat_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/tests/test_chat_generator.py -------------------------------------------------------------------------------- /integrations/watsonx/tests/test_document_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/tests/test_document_embedder.py -------------------------------------------------------------------------------- /integrations/watsonx/tests/test_files/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/tests/test_files/apple.jpg -------------------------------------------------------------------------------- /integrations/watsonx/tests/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/tests/test_generator.py -------------------------------------------------------------------------------- /integrations/watsonx/tests/test_text_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/watsonx/tests/test_text_embedder.py -------------------------------------------------------------------------------- /integrations/weaviate/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/weaviate/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/LICENSE.txt -------------------------------------------------------------------------------- /integrations/weaviate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/README.md -------------------------------------------------------------------------------- /integrations/weaviate/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/docker-compose.yml -------------------------------------------------------------------------------- /integrations/weaviate/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/weaviate/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/pyproject.toml -------------------------------------------------------------------------------- /integrations/weaviate/src/haystack_integrations/components/retrievers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/weaviate/src/haystack_integrations/document_stores/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/weaviate/src/haystack_integrations/document_stores/weaviate/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/src/haystack_integrations/document_stores/weaviate/auth.py -------------------------------------------------------------------------------- /integrations/weaviate/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/tests/__init__.py -------------------------------------------------------------------------------- /integrations/weaviate/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/tests/conftest.py -------------------------------------------------------------------------------- /integrations/weaviate/tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/tests/test_auth.py -------------------------------------------------------------------------------- /integrations/weaviate/tests/test_bm25_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/tests/test_bm25_retriever.py -------------------------------------------------------------------------------- /integrations/weaviate/tests/test_document_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/tests/test_document_store.py -------------------------------------------------------------------------------- /integrations/weaviate/tests/test_embedding_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/tests/test_embedding_retriever.py -------------------------------------------------------------------------------- /integrations/weaviate/tests/test_files/robot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/tests/test_files/robot1.jpg -------------------------------------------------------------------------------- /integrations/weaviate/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/tests/test_filters.py -------------------------------------------------------------------------------- /integrations/weaviate/tests/test_hybrid_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weaviate/tests/test_hybrid_retriever.py -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weights_and_biases_weave/CHANGELOG.md -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weights_and_biases_weave/LICENSE.txt -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weights_and_biases_weave/README.md -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weights_and_biases_weave/example/README.md -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/example/hybrid_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weights_and_biases_weave/example/hybrid_retrieval.py -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/pydoc/config_docusaurus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weights_and_biases_weave/pydoc/config_docusaurus.yml -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weights_and_biases_weave/pyproject.toml -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/src/haystack_integrations/components/connectors/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/src/haystack_integrations/tracing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/tests/test_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weights_and_biases_weave/tests/test_tracer.py -------------------------------------------------------------------------------- /integrations/weights_and_biases_weave/tests/test_weave_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/integrations/weights_and_biases_weave/tests/test_weave_connector.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | hatch 2 | -------------------------------------------------------------------------------- /show_unreleased.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepset-ai/haystack-core-integrations/HEAD/show_unreleased.sh --------------------------------------------------------------------------------