prompt
stringlengths
31
162
pipeline
stringlengths
207
1.65k
Create generative qa system with TableTextRetriever, WeaviateDocumentStore and ra generator
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Make QuestionAnswerGenerationPipeline consisting of table reader and QuestionGenerator
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "table_reader", "type": "TableReader", "params": {"model_name_or_path": "google/tapas-base-finetuned-wtq", "use_gpu...
Build search summarization pipeline consisting of transformers summarizer, PineconeDocumentStore and BM25Retriever
{"version": "1.8.0", "components": [{"name": "pinecone_document_store", "type": "PineconeDocumentStore", "params": {"environment": "us-west1-gcp", "embedding_dim": 768, "return_embedding": false, "index": "document", "similarity": "cosine", "replicas": 1, "shards": 1, "embedding_field": "embedding", "progress_bar": tru...
Generate Haystack extractive qa pipeline consisting of transformers reader, InMemoryDocumentStore and BM25Retriever
{"version": "1.8.0", "components": [{"name": "in_memory_document_store", "type": "InMemoryDocumentStore", "params": {"index": "document", "label_index": "label", "embedding_dim": 768, "return_embedding": false, "similarity": "dot_product", "progress_bar": true, "duplicate_documents": "overwrite", "use_gpu": true, "scor...
Create question generation pipeline
{"version": "1.8.0", "components": [{"name": "QuestionGenerator", "params": {}, "type": "QuestionGenerator"}], "pipelines": [{"name": "query", "nodes": [{"inputs": ["Query"], "name": "QuestionGenerator"}]}]}
Create Haystack QuestionGenerationPipeline
{"version": "1.8.0", "components": [{"name": "QuestionGenerator", "params": {}, "type": "QuestionGenerator"}], "pipelines": [{"name": "query", "nodes": [{"inputs": ["Query"], "name": "QuestionGenerator"}]}]}
Build ExtractiveQAPipeline using TableReader, ElasticsearchRetriever and SQLDocumentStore
{"version": "1.8.0", "components": [{"name": "sql_document_store", "type": "SQLDocumentStore", "params": {"url": "sqlite://", "index": "document", "label_index": "label", "duplicate_documents": "overwrite", "check_same_thread": false}}, {"name": "elasticsearch_retriever", "type": "ElasticsearchRetriever", "params": {"t...
Generate Haystack question answer generation pipeline with rci reader and QuestionGenerator
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "rci_reader", "type": "RCIReader", "params": {"row_model_name_or_path": "michaelrglass/albert-base-rci-wikisql-row"...
Make Haystack question answer generation pipeline using farm reader and question generator
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "farm_reader", "type": "FARMReader", "params": {"context_window_size": 150, "batch_size": 50, "use_gpu": true, "no_...
Generate Haystack question generation pipeline
{"version": "1.8.0", "components": [{"name": "QuestionGenerator", "params": {}, "type": "QuestionGenerator"}], "pipelines": [{"name": "query", "nodes": [{"inputs": ["Query"], "name": "QuestionGenerator"}]}]}
Make extractive qa with FARMReader, MultihopEmbeddingRetriever and weaviate document store
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Create ExtractiveQAPipeline with bm25 retriever, weaviate document store and farm reader
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Create Haystack document search pipeline consisting of TfidfRetriever and FAISSDocumentStore
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Build document search system with FAISSDocumentStore and elasticsearch retriever
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Create faq system consisting of ElasticsearchRetriever and open distro elasticsearch document store
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...
Generate Haystack generative qa pipeline consisting of DensePassageRetriever, OpenAIAnswerGenerator and weaviate document store
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Build Haystack faq system with ElasticsearchFilterOnlyRetriever and pinecone document store
{"version": "1.8.0", "components": [{"name": "pinecone_document_store", "type": "PineconeDocumentStore", "params": {"environment": "us-west1-gcp", "embedding_dim": 768, "return_embedding": false, "index": "document", "similarity": "cosine", "replicas": 1, "shards": 1, "embedding_field": "embedding", "progress_bar": tru...
Build Haystack question answer generation system using TableReader and question generator
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "table_reader", "type": "TableReader", "params": {"model_name_or_path": "google/tapas-base-finetuned-wtq", "use_gpu...
Generate Haystack qa system with ElasticsearchRetriever, FAISSDocumentStore and RCIReader
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Generate FAQPipeline with open distro elasticsearch document store and embedding retriever
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...
Make DocumentSearchPipeline with BM25Retriever and deepset cloud document store
{"version": "1.8.0", "components": [{"name": "deepset_cloud_document_store", "type": "DeepsetCloudDocumentStore", "params": {"workspace": "default", "duplicate_documents": "overwrite", "similarity": "dot_product", "return_embedding": false, "label_index": "default", "embedding_dim": 768}}, {"name": "bm25_retriever", "t...
Create QuestionGenerationPipeline
{"version": "1.8.0", "components": [{"name": "QuestionGenerator", "params": {}, "type": "QuestionGenerator"}], "pipelines": [{"name": "query", "nodes": [{"inputs": ["Query"], "name": "QuestionGenerator"}]}]}
Generate Haystack QuestionAnswerGenerationPipeline using TableReader and question generator
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "table_reader", "type": "TableReader", "params": {"model_name_or_path": "google/tapas-base-finetuned-wtq", "use_gpu...
Create Haystack QuestionAnswerGenerationPipeline using transformers reader and question generator
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "transformers_reader", "type": "TransformersReader", "params": {"model_name_or_path": "distilbert-base-uncased-dist...
Generate Haystack faq search pipeline using TfidfRetriever and InMemoryDocumentStore
{"version": "1.8.0", "components": [{"name": "in_memory_document_store", "type": "InMemoryDocumentStore", "params": {"index": "document", "label_index": "label", "embedding_dim": 768, "return_embedding": false, "similarity": "dot_product", "progress_bar": true, "duplicate_documents": "overwrite", "use_gpu": true, "scor...
Build Haystack DocumentSearchPipeline consisting of ElasticsearchDocumentStore and MultihopEmbeddingRetriever
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Build Haystack question generation system
{"version": "1.8.0", "components": [{"name": "QuestionGenerator", "params": {}, "type": "QuestionGenerator"}], "pipelines": [{"name": "query", "nodes": [{"inputs": ["Query"], "name": "QuestionGenerator"}]}]}
Generate question answer generation system with rci reader and question generator
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "rci_reader", "type": "RCIReader", "params": {"row_model_name_or_path": "michaelrglass/albert-base-rci-wikisql-row"...
Make QuestionAnswerGenerationPipeline using QuestionGenerator and transformers reader
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "transformers_reader", "type": "TransformersReader", "params": {"model_name_or_path": "distilbert-base-uncased-dist...
Build document search system with open distro elasticsearch document store and elasticsearch retriever
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...
Build search pipeline with BM25Retriever and FAISSDocumentStore
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Create faq system consisting of TableTextRetriever and OpenSearchDocumentStore
{"version": "1.8.0", "components": [{"name": "open_search_document_store", "type": "OpenSearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", ...
Make Haystack question answer generation pipeline consisting of RCIReader and QuestionGenerator
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "rci_reader", "type": "RCIReader", "params": {"row_model_name_or_path": "michaelrglass/albert-base-rci-wikisql-row"...
Build Haystack SearchSummarizationPipeline consisting of transformers summarizer, bm25 retriever and OpenDistroElasticsearchDocumentStore
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...
Make question generation pipeline
{"version": "1.8.0", "components": [{"name": "QuestionGenerator", "params": {}, "type": "QuestionGenerator"}], "pipelines": [{"name": "query", "nodes": [{"inputs": ["Query"], "name": "QuestionGenerator"}]}]}
Create Haystack faq pipeline with ElasticsearchRetriever and elasticsearch document store
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Generate Haystack SearchSummarizationPipeline with pinecone document store, bm25 retriever and transformers summarizer
{"version": "1.8.0", "components": [{"name": "pinecone_document_store", "type": "PineconeDocumentStore", "params": {"environment": "us-west1-gcp", "embedding_dim": 768, "return_embedding": false, "index": "document", "similarity": "cosine", "replicas": 1, "shards": 1, "embedding_field": "embedding", "progress_bar": tru...
Build question answer generation system with QuestionGenerator and TableReader
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "table_reader", "type": "TableReader", "params": {"model_name_or_path": "google/tapas-base-finetuned-wtq", "use_gpu...
Build DocumentSearchPipeline consisting of BM25Retriever and faiss document store
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Make Haystack generative qa system consisting of RAGenerator, elasticsearch retriever and OpenSearchDocumentStore
{"version": "1.8.0", "components": [{"name": "open_search_document_store", "type": "OpenSearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", ...
Generate DocumentSearchPipeline with deepset cloud document store and EmbeddingRetriever
{"version": "1.8.0", "components": [{"name": "deepset_cloud_document_store", "type": "DeepsetCloudDocumentStore", "params": {"workspace": "default", "duplicate_documents": "overwrite", "similarity": "dot_product", "return_embedding": false, "label_index": "default", "embedding_dim": 768}}, {"name": "embedding_retriever...
Make SearchSummarizationPipeline using faiss document store, BM25Retriever and transformers summarizer
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Create Haystack search summarization using in memory document store, filter retriever and transformers summarizer
{"version": "1.8.0", "components": [{"name": "in_memory_document_store", "type": "InMemoryDocumentStore", "params": {"index": "document", "label_index": "label", "embedding_dim": 768, "return_embedding": false, "similarity": "dot_product", "progress_bar": true, "duplicate_documents": "overwrite", "use_gpu": true, "scor...
Create generative qa consisting of FilterRetriever, ra generator and open search document store
{"version": "1.8.0", "components": [{"name": "open_search_document_store", "type": "OpenSearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", ...
Make Haystack document search pipeline using MultihopEmbeddingRetriever and elasticsearch document store
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Build faq pipeline consisting of elasticsearch retriever and DeepsetCloudDocumentStore
{"version": "1.8.0", "components": [{"name": "deepset_cloud_document_store", "type": "DeepsetCloudDocumentStore", "params": {"workspace": "default", "duplicate_documents": "overwrite", "similarity": "dot_product", "return_embedding": false, "label_index": "default", "embedding_dim": 768}}, {"name": "elasticsearch_retri...
Generate Haystack search summarization with bm25 retriever, PineconeDocumentStore and transformers summarizer
{"version": "1.8.0", "components": [{"name": "pinecone_document_store", "type": "PineconeDocumentStore", "params": {"environment": "us-west1-gcp", "embedding_dim": 768, "return_embedding": false, "index": "document", "similarity": "cosine", "replicas": 1, "shards": 1, "embedding_field": "embedding", "progress_bar": tru...
Make question generation system
{"version": "1.8.0", "components": [{"name": "QuestionGenerator", "params": {}, "type": "QuestionGenerator"}], "pipelines": [{"name": "query", "nodes": [{"inputs": ["Query"], "name": "QuestionGenerator"}]}]}
Create qa pipeline with rci reader, multihop embedding retriever and WeaviateDocumentStore
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Build Haystack QuestionAnswerGenerationPipeline using question generator and transformers reader
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "transformers_reader", "type": "TransformersReader", "params": {"model_name_or_path": "distilbert-base-uncased-dist...
Make Haystack generative qa consisting of OpenDistroElasticsearchDocumentStore, elasticsearch retriever and RAGenerator
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...
Build extractive qa system consisting of TableTextRetriever, TableReader and weaviate document store
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Make Haystack extractive qa consisting of TableTextRetriever, open search document store and table reader
{"version": "1.8.0", "components": [{"name": "open_search_document_store", "type": "OpenSearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", ...
Create GenerativeQAPipeline with sql document store, dense passage retriever and seq2 seq generator
{"version": "1.8.0", "components": [{"name": "sql_document_store", "type": "SQLDocumentStore", "params": {"url": "sqlite://", "index": "document", "label_index": "label", "duplicate_documents": "overwrite", "check_same_thread": false}}, {"name": "dense_passage_retriever", "type": "DensePassageRetriever", "params": {"ma...
Build document search pipeline consisting of bm25 retriever and ElasticsearchDocumentStore
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Create qa system consisting of rci reader, ElasticsearchRetriever and FAISSDocumentStore
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Create question generation system
{"version": "1.8.0", "components": [{"name": "QuestionGenerator", "params": {}, "type": "QuestionGenerator"}], "pipelines": [{"name": "query", "nodes": [{"inputs": ["Query"], "name": "QuestionGenerator"}]}]}
Build faq search pipeline using bm25 retriever and faiss document store
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Make Haystack extractive qa system using MultihopEmbeddingRetriever, weaviate document store and rci reader
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Generate Haystack generative qa system using open distro elasticsearch document store, seq2 seq generator and embedding retriever
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...
Generate document search pipeline consisting of DensePassageRetriever and SQLDocumentStore
{"version": "1.8.0", "components": [{"name": "sql_document_store", "type": "SQLDocumentStore", "params": {"url": "sqlite://", "index": "document", "label_index": "label", "duplicate_documents": "overwrite", "check_same_thread": false}}, {"name": "dense_passage_retriever", "type": "DensePassageRetriever", "params": {"ma...
Build Haystack search summarization pipeline using open distro elasticsearch document store, BM25Retriever and TransformersSummarizer
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...
Make Haystack generative qa system consisting of Seq2SeqGenerator, TfidfRetriever and deepset cloud document store
{"version": "1.8.0", "components": [{"name": "deepset_cloud_document_store", "type": "DeepsetCloudDocumentStore", "params": {"workspace": "default", "duplicate_documents": "overwrite", "similarity": "dot_product", "return_embedding": false, "label_index": "default", "embedding_dim": 768}}, {"name": "tfidf_retriever", "...
Build FAQPipeline with PineconeDocumentStore and ElasticsearchFilterOnlyRetriever
{"version": "1.8.0", "components": [{"name": "pinecone_document_store", "type": "PineconeDocumentStore", "params": {"environment": "us-west1-gcp", "embedding_dim": 768, "return_embedding": false, "index": "document", "similarity": "cosine", "replicas": 1, "shards": 1, "embedding_field": "embedding", "progress_bar": tru...
Generate qa system using rci reader, filter retriever and ElasticsearchDocumentStore
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Build Haystack ExtractiveQAPipeline with table reader, table text retriever and weaviate document store
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Build Haystack extractive qa pipeline using table reader, ElasticsearchDocumentStore and BM25Retriever
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Create Haystack faq system using BM25Retriever and FAISSDocumentStore
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Build Haystack qa system consisting of TableReader, InMemoryDocumentStore and ElasticsearchFilterOnlyRetriever
{"version": "1.8.0", "components": [{"name": "in_memory_document_store", "type": "InMemoryDocumentStore", "params": {"index": "document", "label_index": "label", "embedding_dim": 768, "return_embedding": false, "similarity": "dot_product", "progress_bar": true, "duplicate_documents": "overwrite", "use_gpu": true, "scor...
Create Haystack question answer generation system using QuestionGenerator and farm reader
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "farm_reader", "type": "FARMReader", "params": {"context_window_size": 150, "batch_size": 50, "use_gpu": true, "no_...
Build faq system using tfidf retriever and InMemoryDocumentStore
{"version": "1.8.0", "components": [{"name": "in_memory_document_store", "type": "InMemoryDocumentStore", "params": {"index": "document", "label_index": "label", "embedding_dim": 768, "return_embedding": false, "similarity": "dot_product", "progress_bar": true, "duplicate_documents": "overwrite", "use_gpu": true, "scor...
Generate Haystack generative pipeline with deepset cloud document store, OpenAIAnswerGenerator and tfidf retriever
{"version": "1.8.0", "components": [{"name": "deepset_cloud_document_store", "type": "DeepsetCloudDocumentStore", "params": {"workspace": "default", "duplicate_documents": "overwrite", "similarity": "dot_product", "return_embedding": false, "label_index": "default", "embedding_dim": 768}}, {"name": "tfidf_retriever", "...
Make faq system consisting of dense passage retriever and faiss document store
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Generate document search system with BM25Retriever and pinecone document store
{"version": "1.8.0", "components": [{"name": "pinecone_document_store", "type": "PineconeDocumentStore", "params": {"environment": "us-west1-gcp", "embedding_dim": 768, "return_embedding": false, "index": "document", "similarity": "cosine", "replicas": 1, "shards": 1, "embedding_field": "embedding", "progress_bar": tru...
Create QuestionAnswerGenerationPipeline using question generator and TableReader
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "table_reader", "type": "TableReader", "params": {"model_name_or_path": "google/tapas-base-finetuned-wtq", "use_gpu...
Build question answer generation system consisting of question generator and RCIReader
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "rci_reader", "type": "RCIReader", "params": {"row_model_name_or_path": "michaelrglass/albert-base-rci-wikisql-row"...
Build search summarization pipeline with embedding retriever, transformers summarizer and faiss document store
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Make qa pipeline consisting of EmbeddingRetriever, farm reader and InMemoryDocumentStore
{"version": "1.8.0", "components": [{"name": "in_memory_document_store", "type": "InMemoryDocumentStore", "params": {"index": "document", "label_index": "label", "embedding_dim": 768, "return_embedding": false, "similarity": "dot_product", "progress_bar": true, "duplicate_documents": "overwrite", "use_gpu": true, "scor...
Make Haystack search summarization with pinecone document store, TableTextRetriever and TransformersSummarizer
{"version": "1.8.0", "components": [{"name": "pinecone_document_store", "type": "PineconeDocumentStore", "params": {"environment": "us-west1-gcp", "embedding_dim": 768, "return_embedding": false, "index": "document", "similarity": "cosine", "replicas": 1, "shards": 1, "embedding_field": "embedding", "progress_bar": tru...
Build Haystack GenerativeQAPipeline consisting of OpenDistroElasticsearchDocumentStore, seq2 seq generator and ElasticsearchRetriever
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...
Generate Haystack faq system consisting of multihop embedding retriever and weaviate document store
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Build Haystack QuestionAnswerGenerationPipeline with QuestionGenerator and rci reader
{"version": "1.8.0", "components": [{"name": "question_generator", "type": "QuestionGenerator", "params": {"sep_token": "<sep>", "batch_size": 16, "progress_bar": true, "use_auth_token": false}}, {"name": "rci_reader", "type": "RCIReader", "params": {"row_model_name_or_path": "michaelrglass/albert-base-rci-wikisql-row"...
Create qa pipeline with DensePassageRetriever, weaviate document store and transformers reader
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Generate Haystack faq search pipeline consisting of tfidf retriever and elasticsearch document store
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Make document search system consisting of MultihopEmbeddingRetriever and ElasticsearchDocumentStore
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Create faq search pipeline with open distro elasticsearch document store and BM25Retriever
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...
Make search summarization system with table text retriever, TransformersSummarizer and ElasticsearchDocumentStore
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Create Haystack ExtractiveQAPipeline using ElasticsearchDocumentStore, BM25Retriever and TableReader
{"version": "1.8.0", "components": [{"name": "elasticsearch_document_store", "type": "ElasticsearchDocumentStore", "params": {"port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", "embedding_dim": 768, "analyzer": "standard", "scheme": ...
Build extractive qa with ElasticsearchFilterOnlyRetriever, FAISSDocumentStore and FARMReader
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Create Haystack generative pipeline with open search document store, RAGenerator and elasticsearch retriever
{"version": "1.8.0", "components": [{"name": "open_search_document_store", "type": "OpenSearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embedding_field": "embedding", ...
Build Haystack DocumentSearchPipeline using embedding retriever and WeaviateDocumentStore
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Create Haystack search summarization pipeline consisting of table text retriever, pinecone document store and TransformersSummarizer
{"version": "1.8.0", "components": [{"name": "pinecone_document_store", "type": "PineconeDocumentStore", "params": {"environment": "us-west1-gcp", "embedding_dim": 768, "return_embedding": false, "index": "document", "similarity": "cosine", "replicas": 1, "shards": 1, "embedding_field": "embedding", "progress_bar": tru...
Create search summarization system with TransformersSummarizer, TableTextRetriever and WeaviateDocumentStore
{"version": "1.8.0", "components": [{"name": "weaviate_document_store", "type": "WeaviateDocumentStore", "params": {"port": 0, "timeout_config": [5, 15], "index": "Document", "embedding_dim": 768, "content_field": "content", "name_field": "name", "similarity": "cosine", "index_type": "hnsw", "return_embedding": false, ...
Generate generative qa system using dense passage retriever, RAGenerator and sql document store
{"version": "1.8.0", "components": [{"name": "sql_document_store", "type": "SQLDocumentStore", "params": {"url": "sqlite://", "index": "document", "label_index": "label", "duplicate_documents": "overwrite", "check_same_thread": false}}, {"name": "dense_passage_retriever", "type": "DensePassageRetriever", "params": {"ma...
Make Haystack generative qa pipeline consisting of seq2 seq generator, SQLDocumentStore and TableTextRetriever
{"version": "1.8.0", "components": [{"name": "sql_document_store", "type": "SQLDocumentStore", "params": {"url": "sqlite://", "index": "document", "label_index": "label", "duplicate_documents": "overwrite", "check_same_thread": false}}, {"name": "table_text_retriever", "type": "TableTextRetriever", "params": {"max_seq_...
Build generative pipeline using Seq2SeqGenerator, BM25Retriever and FAISSDocumentStore
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Build Haystack generative qa system using TfidfRetriever, seq2 seq generator and deepset cloud document store
{"version": "1.8.0", "components": [{"name": "deepset_cloud_document_store", "type": "DeepsetCloudDocumentStore", "params": {"workspace": "default", "duplicate_documents": "overwrite", "similarity": "dot_product", "return_embedding": false, "label_index": "default", "embedding_dim": 768}}, {"name": "tfidf_retriever", "...
Make question generation system
{"version": "1.8.0", "components": [{"name": "QuestionGenerator", "params": {}, "type": "QuestionGenerator"}], "pipelines": [{"name": "query", "nodes": [{"inputs": ["Query"], "name": "QuestionGenerator"}]}]}
Create Haystack extractive qa with FARMReader, faiss document store and tfidf retriever
{"version": "1.8.0", "components": [{"name": "faiss_document_store", "type": "FAISSDocumentStore", "params": {"sql_url": "sqlite:///faiss_document_store.db", "vector_dim": 0, "embedding_dim": 768, "faiss_index_factory_str": "Flat", "return_embedding": false, "index": "document", "similarity": "dot_product", "embedding_...
Generate Haystack GenerativeQAPipeline with elasticsearch retriever, seq2 seq generator and OpenDistroElasticsearchDocumentStore
{"version": "1.8.0", "components": [{"name": "open_distro_elasticsearch_document_store", "type": "OpenDistroElasticsearchDocumentStore", "params": {"scheme": "https", "username": "admin", "password": "admin", "port": 0, "index": "document", "label_index": "label", "content_field": "content", "name_field": "name", "embe...