AutoRAG 0.2.5__tar.gz → 0.2.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {autorag-0.2.5 → autorag-0.2.7}/.github/workflows/sphinx.yml +3 -0
- {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/PKG-INFO +104 -126
- {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/SOURCES.txt +18 -16
- {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/requires.txt +3 -2
- {autorag-0.2.5 → autorag-0.2.7}/PKG-INFO +104 -126
- {autorag-0.2.5 → autorag-0.2.7}/README.md +98 -122
- autorag-0.2.7/autorag/VERSION +1 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/__init__.py +2 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/dashboard.py +2 -2
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/generation.py +2 -2
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/generation.py +1 -1
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/retrieval.py +4 -3
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/retrieval_contents.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/evaluator.py +4 -4
- {autorag-0.2.5 → autorag-0.2.7}/autorag/node_line.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/run.py +5 -4
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/base.py +5 -25
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/run.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/run.py +3 -3
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/base.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/run.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/similarity_percentile_cutoff.py +9 -2
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/similarity_threshold_cutoff.py +7 -21
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/base.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/run.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/upr.py +9 -26
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/run.py +3 -3
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/run.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/base.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/run.py +3 -3
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/vectordb.py +7 -1
- {autorag-0.2.5 → autorag-0.2.7}/autorag/utils/util.py +23 -1
- autorag-0.2.7/docs/source/CNAME +1 -0
- autorag-0.2.7/docs/source/api_spec/autorag.evaluation.metric.rst +45 -0
- autorag-0.2.7/docs/source/api_spec/autorag.evaluation.rst +53 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.rst +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/conf.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/data_creation/data_format.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/data_creation/ragas.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/data_creation/tutorial.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/deploy/api_endpoint.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/deploy/web.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/evaluate_metrics/generation.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/evaluate_metrics/retrieval.md +8 -1
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/evaluate_metrics/retrieval_contents.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/index.rst +11 -6
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/install.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/local_model.md +19 -14
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/generator/generator.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/generator/llama_index_llm.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/generator/openai_llm.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/generator/vllm.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/index.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_augmenter/passage_augmenter.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_augmenter/prev_next_augmenter.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_compressor/longllmlingua.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_compressor/passage_compressor.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_compressor/refine.md +8 -1
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_compressor/tree_summarize.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/passage_filter.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/percentile_cutoff.md +8 -1
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/recency_filter.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/similarity_percentile_cutoff.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/similarity_threshold_cutoff.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/threshold_cutoff.md +8 -1
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/cohere.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/colbert.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/flag_embedding_llm_reranker.md +8 -1
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/flag_embedding_reranker.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/jina_reranker.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/koreranker.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/monot5.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/passage_reranker.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/rankgpt.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/sentence_transformer_reranker.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/tart.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/time_reranker.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/upr.md +7 -5
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/prompt_maker/fstring.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/prompt_maker/long_context_reorder.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/prompt_maker/prompt_maker.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/query_expansion/hyde.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/query_expansion/multi_query_expansion.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/query_expansion/query_decompose.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/query_expansion/query_expansion.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/bm25.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/hybrid_cc.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/hybrid_dbsf.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/hybrid_rrf.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/hybrid_rsf.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/retrieval.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/vectordb.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/custom_config.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/folder_structure.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/optimization.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/strategies.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/roadmap/modular_rag.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/structure.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/troubleshooting.md +35 -3
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/tutorial.md +7 -0
- {autorag-0.2.5 → autorag-0.2.7}/pyproject.toml +2 -1
- {autorag-0.2.5 → autorag-0.2.7}/requirements.txt +4 -2
- {autorag-0.2.5 → autorag-0.2.7}/sample_dataset/README.md +2 -2
- autorag-0.2.7/sample_dataset/hotpotqa/load_hotpotqa_dataset.py +28 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/metric/test_generation_metric.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/metric/test_retrieval_contents_metric.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/metric/test_retrieval_metric.py +3 -2
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/test_evaluate_util.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/test_generation_evaluate.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/test_retrieval_contents_evaluate.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/test_retrieval_evaluate.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/promptmaker/test_prompt_maker_run.py +1 -1
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_vectordb.py +5 -5
- autorag-0.2.5/autorag/VERSION +0 -1
- autorag-0.2.5/docs/source/api_spec/autorag.evaluate.metric.rst +0 -45
- autorag-0.2.5/docs/source/api_spec/autorag.evaluate.rst +0 -53
- {autorag-0.2.5 → autorag-0.2.7}/.github/FUNDING.yml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/.github/dependabot.yml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/.github/workflows/publish.yml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/.github/workflows/test.yml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/.gitignore +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/dependency_links.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/entry_points.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/top_level.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/CODE_OF_CONDUCT.md +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/CONTRIBUTING.md +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/LICENSE +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/cli.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/corpus/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/corpus/langchain.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/corpus/llama_index.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/llama_index.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/llama_index_default_prompt.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/ragas.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/simple.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/utils/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/data/utils/util.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/deploy.py +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/__init__.py +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/__init__.py +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/g_eval_prompts/coh_detailed.txt +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/g_eval_prompts/con_detailed.txt +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/g_eval_prompts/flu_detailed.txt +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/g_eval_prompts/rel_detailed.txt +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/retrieval.py +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/retrieval_contents.py +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/util.py +0 -0
- {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/util.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/llama_index_llm.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/openai_llm.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/vllm.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/pass_passage_augmenter.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/prev_next_augmenter.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/longllmlingua.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/pass_compressor.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/refine.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/tree_summarize.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/pass_passage_filter.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/percentile_cutoff.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/recency.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/threshold_cutoff.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/cohere.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/colbert.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/flag_embedding.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/flag_embedding_llm.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/jina.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/koreranker.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/monot5.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/pass_reranker.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/rankgpt.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/sentence_transformer.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/tart/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/tart/modeling_enc_t5.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/tart/tart.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/tart/tokenization_enc_t5.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/time_reranker.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/fstring.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/long_context_reorder.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/hyde.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/multi_query_expansion.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/pass_query_expansion.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/query_decompose.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/bm25.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/hybrid_cc.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/hybrid_dbsf.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/hybrid_rrf.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/hybrid_rsf.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/schema/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/schema/module.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/schema/node.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/strategy.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/support.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/utils/__init__.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/utils/preprocess.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/autorag/web.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/Makefile +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/make.bat +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/requirements.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/data_creation.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/data_folder.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/dcg.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/f1_score.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/map.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/mrr.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/ndcg.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/ndcg_formula.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_folder.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_line_folder.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_line_summary.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_lines.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_summary.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/normal_distribution.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/project_folder_example.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/project_folders.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/resources_folder.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/RAG_paradigms.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/advanced_RAG.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/cycle.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/merger.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/node_line_modular.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/policy.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/samsung_sundae.jpeg +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/score_fusion.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/trial_folder.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/trial_json.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/trial_summary.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/web_interface.png +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.data.corpus.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.data.qacreation.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.data.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.data.utils.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.generator.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passageaugmenter.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passagecompressor.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passagefilter.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passagereranker.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passagereranker.tart.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.promptmaker.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.queryexpansion.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.retrieval.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.schema.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.utils.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/modules.rst +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/sample_full_config.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_config/compact_local.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_config/compact_openai.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_config/config_korean.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_config/extracted_sample.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_config/full.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_config/simple_local.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_config/simple_openai.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_dataset/eli5/load_eli5_dataset.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_dataset/msmarco/load_msmarco_dataset.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/sample_dataset/triviaqa/load_triviaqa_dataset.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/setup.cfg +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/corpus/test_base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/corpus/test_langchain.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/corpus/test_llama_index_corpus.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/qacreation/test_base_qacreation.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/qacreation/test_llama_index_qacreation.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/qacreation/test_ragas_qa_creation.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/qacreation/test_simple.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_generator_base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_llama_index_llm.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_openai.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_run_generator_node.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_vllm.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passageaugmenter/test_base_passage_augmenter.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passageaugmenter/test_pass_passage_augmenter.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passageaugmenter/test_prev_next_augmenter.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passageaugmenter/test_run_passage_augmenter.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_base_passage_compressor.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_longllmlingua.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_pass_compressor.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_refine.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_run_passage_compressor_node.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_tree_summarize.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_pass_passage_filter.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_passage_filter_base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_passage_filter_run.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_percentile_cutoff.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_recency_filter.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_similarity_percentile_cutoff.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_similarity_threshold_cutoff.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_threshold_cutoff.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_cohere_reranker.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_colbert_reranker.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_flag_embedding.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_flag_embedding_llm.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_jina_reranker.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_koreranker.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_monot5.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_pass_reranker.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_passage_reranker_base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_passage_reranker_run.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_rankgpt.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_sentence_transformer.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_tart.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_time_reranker.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_upr.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/promptmaker/test_fstring.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/promptmaker/test_long_context_reorder.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/promptmaker/test_prompt_maker_base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_hyde.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_multi_query_expansion.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_pass_query_expansion.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_query_decompose.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_query_expansion_base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_query_expansion_run.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_bm25.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_cc.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_dbsf.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_rrf.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_rsf.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_retrieval_base.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_run_retrieval_node.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/schema/test_module_schema.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/schema/test_node_schema.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_cli.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_dashboard.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_deploy.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_evaluator.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_strategy.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_support.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_web.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/utils/test_preprocess.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/utils/test_util.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/conftest.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/delete_tests.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/mock.py +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/requirements.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/README.md +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/corpus_data_sample.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/data_creation/raw_dir/sample1.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/data_creation/raw_dir/sample2.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/data_creation/raw_dir/sample3.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/full.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_data_sample.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_gen_prompts/prompt1.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_gen_prompts/prompt2.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_gen_prompts/prompt3.txt +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_test_data_sample.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/config.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/2.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/3.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/4.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/5.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/best_5.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/retrieval/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/retrieval/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/retrieval/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/retrieval/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/config.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_filter/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/retrieval/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/retrieval/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/retrieval/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/retrieval/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/config.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/post_retrieve_node_line/prompt_maker/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/retrieval/0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/retrieval/1.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/retrieval/best_0.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/retrieval/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/summary.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/3/config.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/best.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/data/corpus.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/data/qa.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/bm25_porter_stemmer.pkl +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/data_level0.bin +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/header.bin +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/length.bin +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/link_lists.bin +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/chroma.sqlite3 +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/trial.json +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_contents_nqa.csv +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_project/data/corpus.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_project/data/qa.parquet +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_project/resources/bm25_gpt2.pkl +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_project/resources/bm25_porter_stemmer.pkl +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/simple.yaml +0 -0
- {autorag-0.2.5 → autorag-0.2.7}/tests/resources/test_bm25_retrieval.pkl +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: AutoRAG
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
4
4
|
Summary: Automatically Evaluate RAG pipelines with your own data. Find optimal structure for new RAG product.
|
|
5
5
|
Author-email: Marker-Inc <vkehfdl1@gmail.com>
|
|
6
6
|
License: Apache License
|
|
@@ -210,16 +210,17 @@ Keywords: RAG,AutoRAG,autorag,rag-evaluation,evaluation,rag-auto,AutoML,AutoML-R
|
|
|
210
210
|
Classifier: Intended Audience :: Developers
|
|
211
211
|
Classifier: Intended Audience :: Information Technology
|
|
212
212
|
Classifier: Intended Audience :: Science/Research
|
|
213
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
214
213
|
Classifier: Programming Language :: Python :: 3.9
|
|
215
214
|
Classifier: Programming Language :: Python :: 3.10
|
|
215
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
216
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
216
217
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
217
218
|
Classifier: Topic :: Software Development :: Libraries
|
|
218
219
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
219
220
|
Requires-Python: >=3.8
|
|
220
221
|
Description-Content-Type: text/markdown
|
|
221
222
|
License-File: LICENSE
|
|
222
|
-
Requires-Dist: numpy
|
|
223
|
+
Requires-Dist: numpy<2.0.0
|
|
223
224
|
Requires-Dist: pandas
|
|
224
225
|
Requires-Dist: tqdm
|
|
225
226
|
Requires-Dist: tiktoken>=0.7.0
|
|
@@ -248,16 +249,17 @@ Requires-Dist: bert_score
|
|
|
248
249
|
Requires-Dist: sentence-transformers
|
|
249
250
|
Requires-Dist: FlagEmbedding
|
|
250
251
|
Requires-Dist: ragas
|
|
251
|
-
Requires-Dist: ray
|
|
252
252
|
Requires-Dist: kiwipiepy
|
|
253
253
|
Requires-Dist: llmlingua
|
|
254
254
|
Requires-Dist: llama-index>=0.10.1
|
|
255
255
|
Requires-Dist: llama-index-core>=0.10.1
|
|
256
|
+
Requires-Dist: llama-index-readers-file
|
|
256
257
|
Requires-Dist: llama-index-embeddings-openai
|
|
257
258
|
Requires-Dist: llama-index-embeddings-huggingface
|
|
258
259
|
Requires-Dist: llama-index-llms-openai
|
|
259
260
|
Requires-Dist: llama-index-llms-huggingface
|
|
260
261
|
Requires-Dist: llama-index-llms-openai-like
|
|
262
|
+
Requires-Dist: llama-index-llms-ollama
|
|
261
263
|
Requires-Dist: llama-index-retrievers-bm25
|
|
262
264
|
Requires-Dist: streamlit
|
|
263
265
|
Requires-Dist: langchain-core>=0.1.6
|
|
@@ -271,19 +273,20 @@ Requires-Dist: ipywidgets_bokeh
|
|
|
271
273
|
|
|
272
274
|
RAG AutoML tool for automatically finds an optimal RAG pipeline for your data.
|
|
273
275
|
|
|
274
|
-
Explore our 📖 [Document](https://
|
|
276
|
+
Explore our 📖 [Document](https://docs.auto-rag.com)!!
|
|
275
277
|
|
|
276
278
|
Plus, join our 📞 [Discord](https://discord.gg/P4DYXfmSAs) Community.
|
|
277
279
|
|
|
278
280
|
---
|
|
279
281
|
|
|
280
|
-
|
|
282
|
+
### 💪 Colab Tutorial
|
|
281
283
|
|
|
282
284
|
- [Step 1: Basic of AutoRAG | Optimizing your RAG pipeline](https://colab.research.google.com/drive/19OEQXO_pHN6gnn2WdfPd4hjnS-4GurVd?usp=sharing)
|
|
283
285
|
- [Step 2: Create evaluation dataset](https://colab.research.google.com/drive/1HXjVHCLTaX7mkmZp3IKlEPt0B3jVeHvP#scrollTo=cgFUCuaUZvTr)
|
|
284
286
|
|
|
285
287
|
---
|
|
286
|
-
|
|
288
|
+
|
|
289
|
+
### 🚨 YouTube Tutorial
|
|
287
290
|
|
|
288
291
|
https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/c0d23896-40c0-479f-a17b-aa2ec3183a26
|
|
289
292
|
|
|
@@ -291,24 +294,23 @@ _Muted by default, enable sound for voice-over_
|
|
|
291
294
|
|
|
292
295
|
You can see on [YouTube](https://youtu.be/2ojK8xjyXAU?feature=shared)
|
|
293
296
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
# Introduction
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
### ☎️ FaQ
|
|
300
|
+
|
|
301
|
+
🛣️ [Support plans & Roadmap](https://edai.notion.site/Support-plans-Roadmap-02ca7c97376340c393885855e2d99630?pvs=4)
|
|
302
|
+
|
|
303
|
+
💻 [Hardware Specs](https://edai.notion.site/Hardware-specs-28cefcf2a26246ffadc91e2f3dc3d61c?pvs=4)
|
|
304
|
+
|
|
305
|
+
⭐ [Running AutoRAG](https://edai.notion.site/About-running-AutoRAG-44a8058307af42068fc218a073ee480b?pvs=4)
|
|
306
|
+
|
|
307
|
+
🍯 [Tips/Tricks](https://edai.notion.site/Tips-Tricks-10708a0e36ff461cb8a5d4fb3279ff15?pvs=4)
|
|
308
|
+
|
|
309
|
+
☎️ [TroubleShooting](https://medium.com/@autorag/autorag-troubleshooting-5cf872b100e3)
|
|
310
|
+
|
|
311
|
+
---
|
|
312
|
+
|
|
313
|
+
# 😁 Introduction
|
|
312
314
|
|
|
313
315
|
There are many RAG pipelines and modules out there,
|
|
314
316
|
but you don’t know what pipeline is great for “your own data” and "your own use-case."
|
|
@@ -322,34 +324,35 @@ and find the best RAG pipeline for your own use-case.
|
|
|
322
324
|
AutoRAG supports a simple way to evaluate many RAG module combinations.
|
|
323
325
|
Try now and find the best RAG pipeline for your own use-case.
|
|
324
326
|
|
|
325
|
-
#
|
|
327
|
+
# 📌AutoRAG Structure
|
|
326
328
|
|
|
327
|
-
|
|
328
|
-
pip install AutoRAG
|
|
329
|
-
```
|
|
329
|
+

|
|
330
330
|
|
|
331
|
-
|
|
331
|
+
## ❗Supporting Nodes & modules
|
|
332
332
|
|
|
333
|
-
|
|
333
|
+

|
|
334
|
+

|
|
335
|
+
You can check our all supporting Nodes & modules
|
|
336
|
+
at [here](https://edai.notion.site/Supporting-Nodes-modules-0ebc7810649f4e41aead472a92976be4?pvs=4)
|
|
334
337
|
|
|
335
|
-
|
|
336
|
-
pipeline just for your data. Don’t waste time dealing with complex RAG modules and academic paper. Focus on your data.
|
|
338
|
+
## ❗Supporting Evaluation Metrics
|
|
337
339
|
|
|
338
|
-
|
|
340
|
+

|
|
339
341
|
|
|
340
|
-
|
|
341
|
-
|
|
342
|
+
You can check our all supporting Evaluation Metrics
|
|
343
|
+
at [here](https://edai.notion.site/Supporting-metrics-867d71caefd7401c9264dd91ba406043?pvs=4)
|
|
342
344
|
|
|
343
|
-
|
|
345
|
+
- [Retrieval Metrics](https://edai.notion.site/Retrieval-Metrics-dde3d9fa1d9547cdb8b31b94060d21e7?pvs=4)
|
|
346
|
+
- [Retrieval Token Metrics](https://edai.notion.site/Retrieval-Token-Metrics-c3e2d83358e04510a34b80429ebb543f?pvs=4)
|
|
347
|
+
- [Generation Metrics](https://edai.notion.site/Retrieval-Token-Metrics-c3e2d83358e04510a34b80429ebb543f?pvs=4)
|
|
344
348
|
|
|
345
|
-
|
|
346
|
-
there.
|
|
347
|
-
Don’t start at toy-project level, start from advanced level.
|
|
349
|
+
# ⚡ Quick Install
|
|
348
350
|
|
|
349
|
-
|
|
351
|
+
We recommend using Python version 3.9 or higher for AutoRAG.
|
|
350
352
|
|
|
351
|
-
|
|
352
|
-
|
|
353
|
+
```bash
|
|
354
|
+
pip install AutoRAG
|
|
355
|
+
```
|
|
353
356
|
|
|
354
357
|
# ⚡ QuickStart
|
|
355
358
|
|
|
@@ -357,16 +360,16 @@ summary csv files. Plus, check out others result and adapt to your use-case.
|
|
|
357
360
|
|
|
358
361
|
For evaluation, you need to prepare just three files.
|
|
359
362
|
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
+
1. **QA** dataset file (qa.parquet)
|
|
364
|
+
2. **Corpus** dataset file (corpus.parquet)
|
|
365
|
+
3. **Config yaml file** (config.yaml)
|
|
363
366
|
|
|
364
367
|
There is a template for your evaluation data for using AutoRAG.
|
|
365
368
|
|
|
366
369
|
- Check out how to make evaluation data
|
|
367
|
-
at [here](https://
|
|
370
|
+
at [here](https://docs.auto-rag.com/data_creation/tutorial.html).
|
|
368
371
|
- Check out the evaluation data rule
|
|
369
|
-
at [here](https://
|
|
372
|
+
at [here](https://docs.auto-rag.com/data_creation/data_format.html).
|
|
370
373
|
- Plus, you can get example datasets for testing AutoRAG at [here](./sample_dataset).
|
|
371
374
|
|
|
372
375
|
### 2. Evaluate your data to various RAG modules
|
|
@@ -397,7 +400,7 @@ At the trial folder named to numbers (like 0),
|
|
|
397
400
|
you can check `summary.csv` file that summarizes the evaluation results and the best RAG pipeline for your data.
|
|
398
401
|
|
|
399
402
|
For more details, you can check out how the folder structure looks like
|
|
400
|
-
at [here](https://
|
|
403
|
+
at [here](https://docs.auto-rag.com/optimization/folder_structure.html).
|
|
401
404
|
|
|
402
405
|
### 3. Use a found optimal RAG pipeline
|
|
403
406
|
|
|
@@ -417,7 +420,7 @@ runner.run('your question')
|
|
|
417
420
|
|
|
418
421
|
Or, you can run this pipeline as api server.
|
|
419
422
|
You can use python code or CLI command.
|
|
420
|
-
Check out API endpoint at [here](https://
|
|
423
|
+
Check out API endpoint at [here](https://docs.auto-rag.com/deploy/api_endpoint.html).
|
|
421
424
|
|
|
422
425
|
```python
|
|
423
426
|
from autorag.deploy import Runner
|
|
@@ -440,6 +443,10 @@ You can run dashboard to easily see the result.
|
|
|
440
443
|
autorag dashboard --trial_dir /your/path/to/trial_dir
|
|
441
444
|
```
|
|
442
445
|
|
|
446
|
+
- sample dashboard:
|
|
447
|
+
|
|
448
|
+

|
|
449
|
+
|
|
443
450
|
### 5. Share your RAG pipeline
|
|
444
451
|
|
|
445
452
|
You can use your RAG pipeline from extracted pipeline yaml file.
|
|
@@ -454,90 +461,61 @@ from autorag.deploy import extract_best_config
|
|
|
454
461
|
pipeline_dict = extract_best_config(trial_path='your/path/to/trial_folder', output_path='your/path/to/pipeline.yaml')
|
|
455
462
|
```
|
|
456
463
|
|
|
457
|
-
###
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
```
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
- module_type: tart
|
|
491
|
-
prompt: Arrange the following sentences in the correct order.
|
|
492
|
-
- module_type: monoT5
|
|
493
|
-
- node_line_name: generate_node_line
|
|
494
|
-
nodes:
|
|
495
|
-
- node_type: prompt_maker
|
|
496
|
-
modules:
|
|
497
|
-
- module_type: fstring
|
|
498
|
-
prompt: "This is a news dataset, crawled from finance news site. You need to make detailed question about finance news. Do not make questions that not relevant to economy or finance domain.\n{retrieved_contents}\n\nQ: {query}\nA:"
|
|
499
|
-
- node_type: generator
|
|
500
|
-
strategy:
|
|
501
|
-
metric:
|
|
502
|
-
- metric_name: meteor
|
|
503
|
-
- metric_name: rouge
|
|
504
|
-
- metric_name: sem_score
|
|
505
|
-
embedding_model: openai
|
|
506
|
-
- metric_name: g_eval
|
|
507
|
-
model: gpt-3.5-turbo
|
|
508
|
-
modules:
|
|
509
|
-
- module_type: llama_index_llm
|
|
510
|
-
llm: openai
|
|
511
|
-
model: [ gpt-3.5-turbo-16k, gpt-3.5-turbo-1106 ]
|
|
512
|
-
temperature: [ 0.5, 1.0, 1.5 ]
|
|
464
|
+
### 6. Deploy your optimal RAG pipeline (for testing)
|
|
465
|
+
|
|
466
|
+
### 6-1. Run as a CLI
|
|
467
|
+
|
|
468
|
+
You can use a found optimal RAG pipeline right away with extracted yaml file.
|
|
469
|
+
|
|
470
|
+
```python
|
|
471
|
+
from autorag.deploy import Runner
|
|
472
|
+
|
|
473
|
+
runner = Runner.from_yaml('your/path/to/pipeline.yaml')
|
|
474
|
+
runner.run('your question')
|
|
475
|
+
```
|
|
476
|
+
|
|
477
|
+
### 6-2. Run as an API server
|
|
478
|
+
|
|
479
|
+
You can run this pipeline as an API server.
|
|
480
|
+
|
|
481
|
+
Check out API endpoint at [here](deploy/api_endpoint.md).
|
|
482
|
+
|
|
483
|
+
```python
|
|
484
|
+
from autorag.deploy import Runner
|
|
485
|
+
|
|
486
|
+
runner = Runner.from_yaml('your/path/to/pipeline.yaml')
|
|
487
|
+
runner.run_api_server()
|
|
488
|
+
```
|
|
489
|
+
|
|
490
|
+
```bash
|
|
491
|
+
autorag run_api --config_path your/path/to/pipeline.yaml --host 0.0.0.0 --port 8000
|
|
492
|
+
```
|
|
493
|
+
|
|
494
|
+
### 6-3. Run as a Web Interface
|
|
495
|
+
|
|
496
|
+
you can run this pipeline as a web interface.
|
|
513
497
|
|
|
498
|
+
Check out web interface at [here](deploy/web.md).
|
|
499
|
+
|
|
500
|
+
```bash
|
|
501
|
+
autorag run_web --trial_path your/path/to/trial_path
|
|
514
502
|
```
|
|
515
503
|
|
|
516
|
-
|
|
504
|
+
- sample web interface:
|
|
517
505
|
|
|
518
|
-
|
|
519
|
-
at [here](https://edai.notion.site/Supporting-Nodes-modules-0ebc7810649f4e41aead472a92976be4?pvs=4)
|
|
506
|
+
<img width="1491" alt="web_interface" src="https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/f6b00353-f6bb-4d8f-8740-1c264c0acbb8">
|
|
520
507
|
|
|
521
|
-
#
|
|
508
|
+
# Star History
|
|
522
509
|
|
|
523
|
-
|
|
524
|
-
at [here](https://edai.notion.site/Supporting-metrics-867d71caefd7401c9264dd91ba406043?pvs=4)
|
|
510
|
+
[](https://star-history.com/#Marker-Inc-Korea/AutoRAG&Date)
|
|
525
511
|
|
|
526
|
-
|
|
527
|
-
- [Retrieval Token Metrics](https://edai.notion.site/Retrieval-Token-Metrics-c3e2d83358e04510a34b80429ebb543f?pvs=4)
|
|
528
|
-
- [Generation Metrics](https://edai.notion.site/Retrieval-Token-Metrics-c3e2d83358e04510a34b80429ebb543f?pvs=4)
|
|
512
|
+
# Contributors ⭐
|
|
529
513
|
|
|
530
|
-
|
|
514
|
+
Thanks go to these wonderful people:
|
|
531
515
|
|
|
532
|
-
-
|
|
533
|
-
-
|
|
534
|
-
|
|
535
|
-
- [x] More RAG modules support
|
|
536
|
-
- [x] Token usage strategy
|
|
537
|
-
- [ ] Multi-modal support
|
|
538
|
-
- [x] More evaluation metrics
|
|
539
|
-
- [ ] Answer Filtering Module
|
|
540
|
-
- [x] Restart optimization from previous trial
|
|
516
|
+
<a href="https://github.com/Marker-Inc-Korea/AutoRAG/graphs/contributors">
|
|
517
|
+
<img src="https://contrib.rocks/image?repo=Marker-Inc-Korea/AutoRAG" />
|
|
518
|
+
</a>
|
|
541
519
|
|
|
542
520
|
# Contribution
|
|
543
521
|
|
|
@@ -545,4 +523,4 @@ We are developing AutoRAG as open-source.
|
|
|
545
523
|
|
|
546
524
|
So this project welcomes contributions and suggestions. Feel free to contribute to this project.
|
|
547
525
|
|
|
548
|
-
Plus, check out our detailed documentation at [here](https://
|
|
526
|
+
Plus, check out our detailed documentation at [here](https://docs.auto-rag.com/index.html).
|
|
@@ -38,20 +38,20 @@ autorag/data/qacreation/ragas.py
|
|
|
38
38
|
autorag/data/qacreation/simple.py
|
|
39
39
|
autorag/data/utils/__init__.py
|
|
40
40
|
autorag/data/utils/util.py
|
|
41
|
-
autorag/
|
|
42
|
-
autorag/
|
|
43
|
-
autorag/
|
|
44
|
-
autorag/
|
|
45
|
-
autorag/
|
|
46
|
-
autorag/
|
|
47
|
-
autorag/
|
|
48
|
-
autorag/
|
|
49
|
-
autorag/
|
|
50
|
-
autorag/
|
|
51
|
-
autorag/
|
|
52
|
-
autorag/
|
|
53
|
-
autorag/
|
|
54
|
-
autorag/
|
|
41
|
+
autorag/evaluation/__init__.py
|
|
42
|
+
autorag/evaluation/generation.py
|
|
43
|
+
autorag/evaluation/retrieval.py
|
|
44
|
+
autorag/evaluation/retrieval_contents.py
|
|
45
|
+
autorag/evaluation/util.py
|
|
46
|
+
autorag/evaluation/metric/__init__.py
|
|
47
|
+
autorag/evaluation/metric/generation.py
|
|
48
|
+
autorag/evaluation/metric/retrieval.py
|
|
49
|
+
autorag/evaluation/metric/retrieval_contents.py
|
|
50
|
+
autorag/evaluation/metric/util.py
|
|
51
|
+
autorag/evaluation/metric/g_eval_prompts/coh_detailed.txt
|
|
52
|
+
autorag/evaluation/metric/g_eval_prompts/con_detailed.txt
|
|
53
|
+
autorag/evaluation/metric/g_eval_prompts/flu_detailed.txt
|
|
54
|
+
autorag/evaluation/metric/g_eval_prompts/rel_detailed.txt
|
|
55
55
|
autorag/nodes/__init__.py
|
|
56
56
|
autorag/nodes/generator/__init__.py
|
|
57
57
|
autorag/nodes/generator/base.py
|
|
@@ -129,6 +129,7 @@ autorag/utils/util.py
|
|
|
129
129
|
docs/Makefile
|
|
130
130
|
docs/make.bat
|
|
131
131
|
docs/requirements.txt
|
|
132
|
+
docs/source/CNAME
|
|
132
133
|
docs/source/conf.py
|
|
133
134
|
docs/source/index.rst
|
|
134
135
|
docs/source/install.md
|
|
@@ -169,8 +170,8 @@ docs/source/api_spec/autorag.data.corpus.rst
|
|
|
169
170
|
docs/source/api_spec/autorag.data.qacreation.rst
|
|
170
171
|
docs/source/api_spec/autorag.data.rst
|
|
171
172
|
docs/source/api_spec/autorag.data.utils.rst
|
|
172
|
-
docs/source/api_spec/autorag.
|
|
173
|
-
docs/source/api_spec/autorag.
|
|
173
|
+
docs/source/api_spec/autorag.evaluation.metric.rst
|
|
174
|
+
docs/source/api_spec/autorag.evaluation.rst
|
|
174
175
|
docs/source/api_spec/autorag.nodes.generator.rst
|
|
175
176
|
docs/source/api_spec/autorag.nodes.passageaugmenter.rst
|
|
176
177
|
docs/source/api_spec/autorag.nodes.passagecompressor.rst
|
|
@@ -252,6 +253,7 @@ sample_config/simple_local.yaml
|
|
|
252
253
|
sample_config/simple_openai.yaml
|
|
253
254
|
sample_dataset/README.md
|
|
254
255
|
sample_dataset/eli5/load_eli5_dataset.py
|
|
256
|
+
sample_dataset/hotpotqa/load_hotpotqa_dataset.py
|
|
255
257
|
sample_dataset/msmarco/load_msmarco_dataset.py
|
|
256
258
|
sample_dataset/triviaqa/load_triviaqa_dataset.py
|
|
257
259
|
tests/conftest.py
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
numpy
|
|
1
|
+
numpy<2.0.0
|
|
2
2
|
pandas
|
|
3
3
|
tqdm
|
|
4
4
|
tiktoken>=0.7.0
|
|
@@ -27,16 +27,17 @@ bert_score
|
|
|
27
27
|
sentence-transformers
|
|
28
28
|
FlagEmbedding
|
|
29
29
|
ragas
|
|
30
|
-
ray
|
|
31
30
|
kiwipiepy
|
|
32
31
|
llmlingua
|
|
33
32
|
llama-index>=0.10.1
|
|
34
33
|
llama-index-core>=0.10.1
|
|
34
|
+
llama-index-readers-file
|
|
35
35
|
llama-index-embeddings-openai
|
|
36
36
|
llama-index-embeddings-huggingface
|
|
37
37
|
llama-index-llms-openai
|
|
38
38
|
llama-index-llms-huggingface
|
|
39
39
|
llama-index-llms-openai-like
|
|
40
|
+
llama-index-llms-ollama
|
|
40
41
|
llama-index-retrievers-bm25
|
|
41
42
|
streamlit
|
|
42
43
|
langchain-core>=0.1.6
|