AutoRAG 0.3.7__tar.gz → 0.3.8__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.3.7 → autorag-0.3.8}/.github/workflows/docker-push.yml +6 -6
- {autorag-0.3.7 → autorag-0.3.8}/.github/workflows/gpu-docker-push.yml +6 -6
- {autorag-0.3.7 → autorag-0.3.8}/AutoRAG.egg-info/PKG-INFO +23 -3
- {autorag-0.3.7 → autorag-0.3.8}/AutoRAG.egg-info/SOURCES.txt +6 -3
- {autorag-0.3.7 → autorag-0.3.8}/AutoRAG.egg-info/requires.txt +2 -1
- autorag-0.3.8/Dockerfile.base +71 -0
- {autorag-0.3.7 → autorag-0.3.8}/PKG-INFO +23 -3
- {autorag-0.3.7 → autorag-0.3.8}/README.md +20 -1
- autorag-0.3.8/autorag/VERSION +1 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/chunker.py +4 -34
- {autorag-0.3.7 → autorag-0.3.8}/autorag/cli.py +1 -1
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/chunk/base.py +2 -2
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/chunk/run.py +3 -3
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/parse/run.py +3 -3
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/filter/dontknow.py +2 -2
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/filter/prompt.py +6 -6
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/generation_gt/llama_index_gen_gt.py +5 -1
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/generation_gt/prompt.py +3 -3
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/query/llama_gen_query.py +12 -6
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/query/prompt.py +13 -13
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/schema.py +3 -3
- {autorag-0.3.7 → autorag-0.3.8}/autorag/deploy/api.py +40 -31
- {autorag-0.3.7 → autorag-0.3.8}/autorag/deploy/swagger.yml +46 -28
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/deepeval_prompt.py +1 -1
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/generation.py +1 -1
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluator.py +54 -34
- {autorag-0.3.7 → autorag-0.3.8}/autorag/node_line.py +9 -0
- autorag-0.3.8/autorag/parser.py +36 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/utils/util.py +46 -0
- autorag-0.3.8/docs/source/_static/data_creation_pipeline.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/chunk/chunk.md +1 -5
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/data_creation.md +2 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/parse/parse.md +1 -5
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/qa_creation/answer_gen.md +21 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/qa_creation/query_gen.md +29 -0
- autorag-0.3.8/docs/source/data_creation/tutorial.md +166 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/deploy/api_endpoint.md +36 -17
- {autorag-0.3.7 → autorag-0.3.8}/requirements.txt +4 -1
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/non_gpu/simple_bedrock.yaml +1 -1
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/non_gpu/simple_local.yaml +1 -1
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/non_gpu/simple_ollama.yaml +1 -1
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/non_gpu/simple_openai.yaml +1 -1
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/full.yaml +1 -1
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/chunk/test_langchain_chunk.py +18 -17
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/chunk/test_llama_index_chunk.py +3 -3
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/filter/test_dontknow.py +16 -16
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/filter/test_passage_dependency.py +19 -20
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/generation_gt/test_llama_index_gen_gt.py +14 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/generation_gt/test_openai_gen_gt.py +2 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/query/test_llama_gen_query.py +32 -8
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/query/test_openai_gen_query.py +5 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/queryexpansion/test_query_expansion_run.py +57 -8
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_chunker.py +5 -5
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_parser.py +7 -7
- autorag-0.3.8/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/link_lists.bin +0 -0
- autorag-0.3.8/tests/resources/sample_project/resources/vectordb.yaml +13 -0
- autorag-0.3.7/autorag/VERSION +0 -1
- autorag-0.3.7/autorag/parser.py +0 -66
- autorag-0.3.7/docker/base/Dockerfile +0 -53
- autorag-0.3.7/docs/source/data_creation/tutorial.md +0 -152
- {autorag-0.3.7 → autorag-0.3.8}/.dockerignore +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/.github/FUNDING.yml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/.github/dependabot.yml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/.github/workflows/publish.yml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/.github/workflows/sphinx.yml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/.github/workflows/test.yml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/.gitignore +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/.pre-commit-config.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/AutoRAG.egg-info/dependency_links.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/AutoRAG.egg-info/entry_points.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/AutoRAG.egg-info/top_level.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/CODE_OF_CONDUCT.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/CONTRIBUTING.md +0 -0
- /autorag-0.3.7/docker/gpu/Dockerfile → /autorag-0.3.8/Dockerfile.gpu +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/LICENSE +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/dashboard.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/chunk/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/chunk/langchain_chunk.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/chunk/llama_index_chunk.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/corpus/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/corpus/langchain.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/corpus/llama_index.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/qacreation/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/qacreation/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/qacreation/llama_index.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/qacreation/llama_index_default_prompt.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/qacreation/ragas.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/legacy/qacreation/simple.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/parse/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/parse/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/parse/clova.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/parse/langchain_parse.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/parse/llamaparse.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/parse/table_hybrid_parse.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/evolve/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/evolve/llama_index_query_evolve.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/evolve/openai_query_evolve.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/evolve/prompt.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/extract_evidence.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/filter/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/filter/passage_dependency.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/generation_gt/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/generation_gt/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/generation_gt/openai_gen_gt.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/query/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/query/openai_gen_query.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/qa/sample.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/utils/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/data/utils/util.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/deploy/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/deploy/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/deploy/gradio.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/generation.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/g_eval_prompts/coh_detailed.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/g_eval_prompts/con_detailed.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/g_eval_prompts/flu_detailed.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/g_eval_prompts/rel_detailed.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/retrieval.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/retrieval_contents.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/metric/util.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/retrieval.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/retrieval_contents.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/evaluation/util.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/generator/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/generator/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/generator/llama_index_llm.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/generator/openai_llm.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/generator/run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/generator/vllm.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passageaugmenter/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passageaugmenter/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passageaugmenter/pass_passage_augmenter.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passageaugmenter/prev_next_augmenter.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passageaugmenter/run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagecompressor/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagecompressor/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagecompressor/longllmlingua.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagecompressor/pass_compressor.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagecompressor/refine.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagecompressor/run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagecompressor/tree_summarize.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagefilter/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagefilter/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagefilter/pass_passage_filter.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagefilter/percentile_cutoff.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagefilter/recency.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagefilter/run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagefilter/similarity_percentile_cutoff.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagefilter/similarity_threshold_cutoff.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagefilter/threshold_cutoff.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/cohere.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/colbert.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/flag_embedding.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/flag_embedding_llm.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/flashrank.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/jina.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/koreranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/mixedbreadai.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/monot5.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/openvino.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/pass_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/rankgpt.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/sentence_transformer.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/tart/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/tart/modeling_enc_t5.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/tart/tart.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/tart/tokenization_enc_t5.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/time_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/upr.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/passagereranker/voyageai.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/promptmaker/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/promptmaker/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/promptmaker/fstring.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/promptmaker/long_context_reorder.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/promptmaker/run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/promptmaker/window_replacement.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/queryexpansion/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/queryexpansion/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/queryexpansion/hyde.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/queryexpansion/multi_query_expansion.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/queryexpansion/pass_query_expansion.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/queryexpansion/query_decompose.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/queryexpansion/run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/retrieval/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/retrieval/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/retrieval/bm25.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/retrieval/hybrid_cc.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/retrieval/hybrid_rrf.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/retrieval/run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/retrieval/vectordb.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/nodes/util.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/schema/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/schema/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/schema/metricinput.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/schema/module.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/schema/node.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/strategy.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/support.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/utils/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/utils/preprocess.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/validator.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/vectordb/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/vectordb/base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/vectordb/chroma.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/vectordb/milvus.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/autorag/web.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/build_and_push.sh +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docker-compose.yml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/Makefile +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/make.bat +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/requirements.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/CNAME +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/data_creation.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/data_folder.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/dcg.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/f1_score.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/map.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/mrr.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/ndcg.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/ndcg_formula.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/node_folder.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/node_line_folder.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/node_line_summary.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/node_lines.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/node_summary.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/normal_distribution.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/project_folder_example.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/project_folders.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/resources_folder.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/roadmap/RAG_paradigms.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/roadmap/advanced_RAG.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/roadmap/cycle.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/roadmap/merger.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/roadmap/node_line_modular.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/roadmap/policy.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/samsung_sundae.jpeg +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/score_fusion.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/trial_folder.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/trial_json.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/trial_summary.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/web_interface.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/_static/web_interface_gradio.png +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.chunk.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.corpus.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.legacy.corpus.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.legacy.qacreation.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.legacy.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.parse.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.qa.evolve.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.qa.filter.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.qa.generation_gt.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.qa.query.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.qa.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.qacreation.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.data.utils.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.deploy.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.evaluation.metric.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.evaluation.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.generator.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.passageaugmenter.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.passagecompressor.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.passagefilter.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.passagereranker.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.passagereranker.tart.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.promptmaker.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.queryexpansion.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.retrieval.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.nodes.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.schema.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.utils.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/autorag.vectordb.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/api_spec/modules.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/conf.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/chunk/langchain_chunk.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/chunk/llama_index_chunk.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/data_format.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/legacy/legacy.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/legacy/ragas.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/legacy/tutorial.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/parse/clova.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/parse/langchain_parse.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/parse/llama_parse.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/parse/table_hybrid_parse.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/qa_creation/evolve.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/qa_creation/filter.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/data_creation/qa_creation/qa_creation.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/deploy/web.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/evaluate_metrics/generation.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/evaluate_metrics/retrieval.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/evaluate_metrics/retrieval_contents.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/index.rst +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/install.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/local_model.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/migration.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/generator/generator.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/generator/llama_index_llm.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/generator/openai_llm.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/generator/vllm.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/index.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_augmenter/passage_augmenter.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_augmenter/prev_next_augmenter.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_compressor/longllmlingua.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_compressor/passage_compressor.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_compressor/refine.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_compressor/tree_summarize.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_filter/passage_filter.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_filter/percentile_cutoff.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_filter/recency_filter.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_filter/similarity_percentile_cutoff.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_filter/similarity_threshold_cutoff.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_filter/threshold_cutoff.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/cohere.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/colbert.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/flag_embedding_llm_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/flag_embedding_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/flashrank_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/jina_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/koreranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/mixedbreadai_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/monot5.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/openvino_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/passage_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/rankgpt.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/sentence_transformer_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/tart.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/time_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/upr.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/passage_reranker/voyageai_reranker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/prompt_maker/fstring.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/prompt_maker/long_context_reorder.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/prompt_maker/prompt_maker.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/prompt_maker/window_replacement.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/query_expansion/hyde.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/query_expansion/multi_query_expansion.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/query_expansion/query_decompose.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/query_expansion/query_expansion.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/retrieval/bm25.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/retrieval/hybrid_cc.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/retrieval/hybrid_rrf.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/retrieval/retrieval.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/nodes/retrieval/vectordb.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/optimization/custom_config.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/optimization/folder_structure.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/optimization/optimization.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/optimization/strategies.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/roadmap/modular_rag.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/structure.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/troubleshooting.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/tutorial.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/vectordb/chroma.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/vectordb/milvus.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/docs/source/vectordb/vectordb.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/projects/tutorial_1/config.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/pyproject.toml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/chunk/chunk_full.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/chunk/chunk_ko.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/chunk/simple_chunk.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/parse/parse_full.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/parse/parse_hybird.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/parse/parse_ko.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/parse/parse_multimodal.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/parse/parse_ocr.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/parse/simple_parse.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/gpu/compact_local.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/gpu/compact_openai.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/gpu/full.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/gpu/half.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/gpu_api/compact.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/gpu_api/full.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/gpu_api/half.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/non_gpu/compact.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/non_gpu/full.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/english/non_gpu/half.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/extracted_sample.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/gpu/compact_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/gpu/full_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/gpu/half_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/gpu_api/compact_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/gpu_api/full_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/gpu_api/half_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/non_gpu/compact_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/non_gpu/full_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/non_gpu/half_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_config/rag/korean/non_gpu/simple_korean.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_dataset/README.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_dataset/eli5/load_eli5_dataset.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_dataset/hotpotqa/load_hotpotqa_dataset.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_dataset/msmarco/load_msmarco_dataset.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/sample_dataset/triviaqa/load_triviaqa_dataset.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/setup.cfg +0 -0
- /autorag-0.3.7/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/link_lists.bin → /autorag-0.3.8/tests/__init__.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/chunk/test_chunk_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/chunk/test_chunk_run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/legacy/corpus/test_base_corpus_legacy.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/legacy/corpus/test_langchain.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/legacy/corpus/test_llama_index_corpus.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/legacy/qacreation/test_base_qacreation.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/legacy/qacreation/test_llama_index_qacreation.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/legacy/qacreation/test_ragas_qa_creation.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/legacy/qacreation/test_simple.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/parse/test_clova.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/parse/test_langchain_parse.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/parse/test_llamaparse.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/parse/test_parse_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/parse/test_parse_run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/parse/test_table_hybrid_parse.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/evolve/base_test_query_evolve.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/evolve/test_llama_index_query_evolve.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/evolve/test_openai_query_evolve.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/generation_gt/base_test_generation_gt.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/query/base_test_query_gen.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/test_data_creation_piepline.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/test_sample.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/data/qa/test_schema.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/evaluate/metric/test_generation_metric.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/evaluate/metric/test_retrieval_contents_metric.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/evaluate/metric/test_retrieval_metric.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/evaluate/test_evaluate_util.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/evaluate/test_generation_evaluate.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/evaluate/test_retrieval_contents_evaluate.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/evaluate/test_retrieval_evaluate.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/generator/test_generator_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/generator/test_llama_index_llm.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/generator/test_openai.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/generator/test_run_generator_node.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/generator/test_vllm.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passageaugmenter/test_base_passage_augmenter.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passageaugmenter/test_pass_passage_augmenter.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passageaugmenter/test_prev_next_augmenter.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passageaugmenter/test_run_passage_augmenter.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagecompressor/test_base_passage_compressor.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagecompressor/test_longllmlingua.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagecompressor/test_pass_compressor.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagecompressor/test_refine.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagecompressor/test_run_passage_compressor_node.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagecompressor/test_tree_summarize.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagefilter/test_pass_passage_filter.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagefilter/test_passage_filter_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagefilter/test_passage_filter_run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagefilter/test_percentile_cutoff.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagefilter/test_recency_filter.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagefilter/test_similarity_percentile_cutoff.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagefilter/test_similarity_threshold_cutoff.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagefilter/test_threshold_cutoff.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_cohere_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_colbert_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_flag_embedding.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_flag_embedding_llm.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_flashrank_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_jina_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_koreranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_mixedbreadai_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_monot5.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_openvino_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_pass_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_passage_reranker_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_passage_reranker_run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_rankgpt.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_sentence_transformer.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_tart.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_time_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_upr.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/passagereranker/test_voyageai_reranker.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/promptmaker/test_fstring.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/promptmaker/test_long_context_reorder.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/promptmaker/test_prompt_maker_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/promptmaker/test_prompt_maker_run.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/promptmaker/test_window_replacement.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/queryexpansion/test_hyde.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/queryexpansion/test_multi_query_expansion.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/queryexpansion/test_pass_query_expansion.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/queryexpansion/test_query_decompose.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/queryexpansion/test_query_expansion_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/retrieval/test_bm25.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/retrieval/test_hybrid_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/retrieval/test_hybrid_cc.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/retrieval/test_hybrid_rrf.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/retrieval/test_retrieval_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/retrieval/test_run_retrieval_node.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/nodes/retrieval/test_vectordb.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/schema/test_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/schema/test_metricinput_schema.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/schema/test_module_schema.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/schema/test_node_schema.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_cli.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_dashboard.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_deploy.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_evaluator.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_strategy.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_support.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_validator.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/test_web.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/utils/test_preprocess.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/utils/test_util.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/vectordb/test_base.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/vectordb/test_chroma.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/autorag/vectordb/test_milvus.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/conftest.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/delete_tests.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/mock.py +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/requirements.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/README.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/chunk_data/sample_parsed.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/corpus_data_sample.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/data_creation/raw_dir/sample1.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/data_creation/raw_dir/sample2.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/data_creation/raw_dir/sample3.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/full.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/all_files/baseball_1.pdf +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/all_files/csv_sample.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/clova_data/result_sample.json +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/clova_data/result_table.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/clova_data/result_text.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/csv_data/csv_sample.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/eng_text/baseball_1.pdf +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/eng_text/baseball_2.pdf +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/html_data/html_sample.html +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/hybrid_data/nfl_rulebook_both.pdf +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/json_data/json_sample.json +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/korean_table/only_table/kbo_only_table.pdf +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/korean_table/table_text/kbo_table_text.pdf +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/korean_text/korean_texts_two_page.pdf +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/markdown_data/markdown_sample.md +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/parse_data/xml_data/xml_sample.xml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/qa_data_sample.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/qa_gen_prompts/prompt1.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/qa_gen_prompts/prompt2.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/qa_gen_prompts/prompt3.txt +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/qa_test_data_sample.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/config.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/generator/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/generator/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/generator/2.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/generator/3.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/generator/4.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/generator/5.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/generator/best_5.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/generator/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/post_retrieve_node_line/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/pre_retrieve_node_line/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/retrieval/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/retrieval/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/retrieval/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/retrieval/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/retrieve_node_line/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/0/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/config.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/pre_retrieve_node_line/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/retrieve_node_line/passage_filter/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/retrieve_node_line/retrieval/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/retrieve_node_line/retrieval/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/retrieve_node_line/retrieval/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/1/retrieve_node_line/retrieval/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/config.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/post_retrieve_node_line/prompt_maker/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/pre_retrieve_node_line/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/retrieval/0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/retrieval/1.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/retrieval/best_0.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/retrieval/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/2/retrieve_node_line/summary.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/3/config.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/best.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/data/corpus.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/data/qa.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/resources/bm25_porter_stemmer.pkl +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/data_level0.bin +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/header.bin +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/length.bin +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/resources/chroma/chroma.sqlite3 +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/resources/vectordb.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/result_project/trial.json +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/sample_contents_nqa.csv +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/sample_project/data/corpus.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/sample_project/data/qa.parquet +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/sample_project/resources/bm25_gpt2.pkl +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/sample_project/resources/bm25_porter_stemmer.pkl +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/simple.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/simple_chunk.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/simple_milvus.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/simple_mock.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/simple_parse.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/simple_with_llm.yaml +0 -0
- {autorag-0.3.7 → autorag-0.3.8}/tests/resources/test_bm25_retrieval.pkl +0 -0
|
@@ -67,20 +67,20 @@ jobs:
|
|
|
67
67
|
uses: docker/build-push-action@v6.9.0
|
|
68
68
|
with:
|
|
69
69
|
context: .
|
|
70
|
-
file:
|
|
70
|
+
file: Dockerfile.base
|
|
71
71
|
push: true
|
|
72
72
|
# push: ${{ github.event_name != 'pull_request' && matrix.variant != 'test' }}
|
|
73
|
-
tags: ${{ env.DOCKER_REPO }}:${{
|
|
73
|
+
tags: ${{ env.DOCKER_REPO }}:${{matrix.variant}}-${{ env.VERSION }}
|
|
74
74
|
labels: ${{ steps.meta.outputs.labels }}
|
|
75
75
|
build-args: |
|
|
76
76
|
TARGET_STAGE=${{ matrix.variant }}
|
|
77
77
|
|
|
78
78
|
- name: Tag and push 'all' for production
|
|
79
79
|
run: |
|
|
80
|
-
docker pull ${{ env.DOCKER_REPO }}:${{
|
|
81
|
-
docker tag ${{ env.DOCKER_REPO }}:${{
|
|
82
|
-
docker push ${{ env.DOCKER_REPO }}:${{
|
|
83
|
-
docker push ${{ env.DOCKER_REPO }}
|
|
80
|
+
docker pull ${{ env.DOCKER_REPO }}:${{matrix.variant}}-${{ env.VERSION }}
|
|
81
|
+
docker tag ${{ env.DOCKER_REPO }}:${{matrix.variant}}-${{ env.VERSION }} ${{ env.DOCKER_REPO }}:${{matrix.variant}}-latest
|
|
82
|
+
docker push ${{ env.DOCKER_REPO }}:${{matrix.variant}}-${{ env.VERSION }}
|
|
83
|
+
docker push ${{ env.DOCKER_REPO }}:${{matrix.variant}}-latest
|
|
84
84
|
|
|
85
85
|
# - name: Update Docker Hub description
|
|
86
86
|
# uses: peter-evans/dockerhub-description@v3
|
|
@@ -67,20 +67,20 @@ jobs:
|
|
|
67
67
|
uses: docker/build-push-action@v6.9.0
|
|
68
68
|
with:
|
|
69
69
|
context: .
|
|
70
|
-
file: ./
|
|
70
|
+
file: ./Dockerfile.gpu
|
|
71
71
|
push: true
|
|
72
72
|
# push: ${{ github.event_name != 'pull_request' && matrix.variant != 'test' }}
|
|
73
|
-
tags: ${{ env.DOCKER_REPO }}:${{
|
|
73
|
+
tags: ${{ env.DOCKER_REPO }}:${{matrix.variant}}-${{ env.VERSION }}
|
|
74
74
|
labels: ${{ steps.meta.outputs.labels }}
|
|
75
75
|
build-args: |
|
|
76
76
|
TARGET_STAGE=${{ matrix.variant }}
|
|
77
77
|
|
|
78
78
|
- name: Tag and push 'all' for production
|
|
79
79
|
run: |
|
|
80
|
-
docker pull ${{ env.DOCKER_REPO }}:${{
|
|
81
|
-
docker tag ${{ env.DOCKER_REPO }}:${{
|
|
82
|
-
docker push ${{ env.DOCKER_REPO }}:${{
|
|
83
|
-
docker push ${{ env.DOCKER_REPO }}
|
|
80
|
+
docker pull ${{ env.DOCKER_REPO }}:${{matrix.variant}}-${{ env.VERSION }}
|
|
81
|
+
docker tag ${{ env.DOCKER_REPO }}:${{matrix.variant}}-${{ env.VERSION }} ${{ env.DOCKER_REPO }}:${{matrix.variant}}-latest
|
|
82
|
+
docker push ${{ env.DOCKER_REPO }}:${{matrix.variant}}-${{ env.VERSION }}
|
|
83
|
+
docker push ${{ env.DOCKER_REPO }}:${{matrix.variant}}-latest
|
|
84
84
|
|
|
85
85
|
# - name: Update Docker Hub description
|
|
86
86
|
# uses: peter-evans/dockerhub-description@v3
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: AutoRAG
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.8
|
|
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
|
|
@@ -232,7 +232,6 @@ Requires-Dist: sacrebleu
|
|
|
232
232
|
Requires-Dist: evaluate
|
|
233
233
|
Requires-Dist: rouge_score
|
|
234
234
|
Requires-Dist: rich
|
|
235
|
-
Requires-Dist: chromadb>=0.5.0
|
|
236
235
|
Requires-Dist: click
|
|
237
236
|
Requires-Dist: cohere>=5.8.0
|
|
238
237
|
Requires-Dist: tokenlog>=0.0.2
|
|
@@ -242,7 +241,9 @@ Requires-Dist: mixedbread-ai
|
|
|
242
241
|
Requires-Dist: llama-index-llms-bedrock
|
|
243
242
|
Requires-Dist: scikit-learn
|
|
244
243
|
Requires-Dist: pymilvus
|
|
244
|
+
Requires-Dist: chromadb>=0.5.0
|
|
245
245
|
Requires-Dist: quart
|
|
246
|
+
Requires-Dist: pyngrok
|
|
246
247
|
Requires-Dist: llama-index>=0.11.0
|
|
247
248
|
Requires-Dist: llama-index-core>=0.11.0
|
|
248
249
|
Requires-Dist: llama-index-readers-file
|
|
@@ -332,6 +333,16 @@ Plus, join our 📞 [Discord](https://discord.gg/P4DYXfmSAs) Community.
|
|
|
332
333
|
|
|
333
334
|
---
|
|
334
335
|
|
|
336
|
+
Do you have any difficulties in optimizing your RAG pipeline?
|
|
337
|
+
Or is it hard to set up things to use AutoRAG?
|
|
338
|
+
Try [**AutoRAG Cloud**](https://tally.so/r/n0jOrZ) beta.
|
|
339
|
+
We will help you to run AutoRAG and optimize.
|
|
340
|
+
Plus, we can help you to build RAG evaluation dataset.
|
|
341
|
+
|
|
342
|
+
Starts with 9.99$ per optimization.
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
335
346
|
## YouTube Tutorial
|
|
336
347
|
|
|
337
348
|
https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/c0d23896-40c0-479f-a17b-aa2ec3183a26
|
|
@@ -701,7 +712,7 @@ runner.run('your question')
|
|
|
701
712
|
|
|
702
713
|
You can run this pipeline as an API server.
|
|
703
714
|
|
|
704
|
-
Check out the API endpoint at [here](deploy/api_endpoint.md).
|
|
715
|
+
Check out the API endpoint at [here](./docs/source/deploy/api_endpoint.md).
|
|
705
716
|
|
|
706
717
|
```python
|
|
707
718
|
import nest_asyncio
|
|
@@ -733,6 +744,15 @@ autorag run_web --trial_path your/path/to/trial_path
|
|
|
733
744
|
|
|
734
745
|
<img width="1491" alt="web_interface" src="https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/f6b00353-f6bb-4d8f-8740-1c264c0acbb8">
|
|
735
746
|
|
|
747
|
+
### Use advanced web interface
|
|
748
|
+
|
|
749
|
+
You can deploy the advanced web interface featured by [Kotaemon](https://github.com/Cinnamon/kotaemon) to the fly.io.
|
|
750
|
+
Go [here](https://github.com/vkehfdl1/AutoRAG-web-kotaemon) to use it and deploy to the fly.io.
|
|
751
|
+
|
|
752
|
+
Example :
|
|
753
|
+
|
|
754
|
+

|
|
755
|
+
|
|
736
756
|
## 📌 Supporting Data Creation Modules
|
|
737
757
|

|
|
738
758
|
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
.pre-commit-config.yaml
|
|
4
4
|
CODE_OF_CONDUCT.md
|
|
5
5
|
CONTRIBUTING.md
|
|
6
|
+
Dockerfile.base
|
|
7
|
+
Dockerfile.gpu
|
|
6
8
|
LICENSE
|
|
7
9
|
README.md
|
|
8
10
|
build_and_push.sh
|
|
@@ -186,8 +188,6 @@ autorag/vectordb/__init__.py
|
|
|
186
188
|
autorag/vectordb/base.py
|
|
187
189
|
autorag/vectordb/chroma.py
|
|
188
190
|
autorag/vectordb/milvus.py
|
|
189
|
-
docker/base/Dockerfile
|
|
190
|
-
docker/gpu/Dockerfile
|
|
191
191
|
docs/Makefile
|
|
192
192
|
docs/make.bat
|
|
193
193
|
docs/requirements.txt
|
|
@@ -201,6 +201,7 @@ docs/source/structure.md
|
|
|
201
201
|
docs/source/troubleshooting.md
|
|
202
202
|
docs/source/tutorial.md
|
|
203
203
|
docs/source/_static/data_creation.png
|
|
204
|
+
docs/source/_static/data_creation_pipeline.png
|
|
204
205
|
docs/source/_static/data_folder.png
|
|
205
206
|
docs/source/_static/dcg.png
|
|
206
207
|
docs/source/_static/f1_score.png
|
|
@@ -382,6 +383,7 @@ sample_dataset/eli5/load_eli5_dataset.py
|
|
|
382
383
|
sample_dataset/hotpotqa/load_hotpotqa_dataset.py
|
|
383
384
|
sample_dataset/msmarco/load_msmarco_dataset.py
|
|
384
385
|
sample_dataset/triviaqa/load_triviaqa_dataset.py
|
|
386
|
+
tests/__init__.py
|
|
385
387
|
tests/conftest.py
|
|
386
388
|
tests/delete_tests.py
|
|
387
389
|
tests/mock.py
|
|
@@ -623,4 +625,5 @@ tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c1913668
|
|
|
623
625
|
tests/resources/sample_project/data/corpus.parquet
|
|
624
626
|
tests/resources/sample_project/data/qa.parquet
|
|
625
627
|
tests/resources/sample_project/resources/bm25_gpt2.pkl
|
|
626
|
-
tests/resources/sample_project/resources/bm25_porter_stemmer.pkl
|
|
628
|
+
tests/resources/sample_project/resources/bm25_porter_stemmer.pkl
|
|
629
|
+
tests/resources/sample_project/resources/vectordb.yaml
|
|
@@ -11,7 +11,6 @@ sacrebleu
|
|
|
11
11
|
evaluate
|
|
12
12
|
rouge_score
|
|
13
13
|
rich
|
|
14
|
-
chromadb>=0.5.0
|
|
15
14
|
click
|
|
16
15
|
cohere>=5.8.0
|
|
17
16
|
tokenlog>=0.0.2
|
|
@@ -21,7 +20,9 @@ mixedbread-ai
|
|
|
21
20
|
llama-index-llms-bedrock
|
|
22
21
|
scikit-learn
|
|
23
22
|
pymilvus
|
|
23
|
+
chromadb>=0.5.0
|
|
24
24
|
quart
|
|
25
|
+
pyngrok
|
|
25
26
|
llama-index>=0.11.0
|
|
26
27
|
llama-index-core>=0.11.0
|
|
27
28
|
llama-index-readers-file
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Base stage: Install common dependencies
|
|
2
|
+
FROM python:3.10-slim AS base
|
|
3
|
+
|
|
4
|
+
# Set working directory and environment variables
|
|
5
|
+
WORKDIR /usr/src/app
|
|
6
|
+
ENV PYTHONUNBUFFERED=1 \
|
|
7
|
+
PYTHONDONTWRITEBYTECODE=1 \
|
|
8
|
+
PIP_NO_CACHE_DIR=1
|
|
9
|
+
|
|
10
|
+
# Copy only requirements files first to leverage Docker cache
|
|
11
|
+
COPY pyproject.toml ./
|
|
12
|
+
|
|
13
|
+
# Install system and Python dependencies in a single layer
|
|
14
|
+
RUN apt-get update && \
|
|
15
|
+
apt-get install -y --no-install-recommends \
|
|
16
|
+
build-essential \
|
|
17
|
+
gcc \
|
|
18
|
+
libssl-dev && \
|
|
19
|
+
pip install --upgrade pip setuptools setuptools-scm && \
|
|
20
|
+
rm -rf /var/lib/apt/lists/* && \
|
|
21
|
+
rm -rf /root/.cache/pip/*
|
|
22
|
+
|
|
23
|
+
# Copy project files
|
|
24
|
+
COPY . .
|
|
25
|
+
|
|
26
|
+
# Install base project
|
|
27
|
+
RUN pip install -e ./ && \
|
|
28
|
+
rm -rf /root/.cache/pip/*
|
|
29
|
+
|
|
30
|
+
# Ko stage with minimal dependencies
|
|
31
|
+
FROM base AS ko
|
|
32
|
+
RUN pip install --no-cache-dir "AutoRAG[ko]" && \
|
|
33
|
+
rm -rf /root/.cache/pip/*
|
|
34
|
+
ENTRYPOINT ["python", "-m", "autorag.cli"]
|
|
35
|
+
|
|
36
|
+
# Dev stage with all development tools
|
|
37
|
+
FROM base AS dev
|
|
38
|
+
RUN pip install --no-cache-dir \
|
|
39
|
+
-r ./tests/requirements.txt \
|
|
40
|
+
-r ./docs/requirements.txt \
|
|
41
|
+
"AutoRAG[dev]" && \
|
|
42
|
+
rm -rf /root/.cache/pip/*
|
|
43
|
+
ENTRYPOINT ["python", "-m", "autorag.cli"]
|
|
44
|
+
|
|
45
|
+
# Ja stage with Japanese support
|
|
46
|
+
FROM base AS ja
|
|
47
|
+
RUN pip install --no-cache-dir "AutoRAG[ja]" && \
|
|
48
|
+
rm -rf /root/.cache/pip/*
|
|
49
|
+
ENTRYPOINT ["python", "-m", "autorag.cli"]
|
|
50
|
+
|
|
51
|
+
# API stage with minimal footprint
|
|
52
|
+
FROM base AS api
|
|
53
|
+
RUN rm -rf \
|
|
54
|
+
./sample_dataset \
|
|
55
|
+
./tests \
|
|
56
|
+
./docs \
|
|
57
|
+
/root/.cache/pip/*
|
|
58
|
+
ENTRYPOINT ["python", "-m", "autorag.cli"]
|
|
59
|
+
|
|
60
|
+
# Parsing stage with OCR support
|
|
61
|
+
FROM base AS parsing
|
|
62
|
+
RUN apt-get update && \
|
|
63
|
+
apt-get install -y --no-install-recommends \
|
|
64
|
+
poppler-utils \
|
|
65
|
+
tesseract-ocr \
|
|
66
|
+
tesseract-ocr-eng \
|
|
67
|
+
tesseract-ocr-kor && \
|
|
68
|
+
pip install --no-cache-dir "AutoRAG[parse]" && \
|
|
69
|
+
rm -rf /var/lib/apt/lists/* && \
|
|
70
|
+
rm -rf /root/.cache/pip/*
|
|
71
|
+
ENTRYPOINT ["python", "-m", "autorag.cli"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: AutoRAG
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.8
|
|
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
|
|
@@ -232,7 +232,6 @@ Requires-Dist: sacrebleu
|
|
|
232
232
|
Requires-Dist: evaluate
|
|
233
233
|
Requires-Dist: rouge_score
|
|
234
234
|
Requires-Dist: rich
|
|
235
|
-
Requires-Dist: chromadb>=0.5.0
|
|
236
235
|
Requires-Dist: click
|
|
237
236
|
Requires-Dist: cohere>=5.8.0
|
|
238
237
|
Requires-Dist: tokenlog>=0.0.2
|
|
@@ -242,7 +241,9 @@ Requires-Dist: mixedbread-ai
|
|
|
242
241
|
Requires-Dist: llama-index-llms-bedrock
|
|
243
242
|
Requires-Dist: scikit-learn
|
|
244
243
|
Requires-Dist: pymilvus
|
|
244
|
+
Requires-Dist: chromadb>=0.5.0
|
|
245
245
|
Requires-Dist: quart
|
|
246
|
+
Requires-Dist: pyngrok
|
|
246
247
|
Requires-Dist: llama-index>=0.11.0
|
|
247
248
|
Requires-Dist: llama-index-core>=0.11.0
|
|
248
249
|
Requires-Dist: llama-index-readers-file
|
|
@@ -332,6 +333,16 @@ Plus, join our 📞 [Discord](https://discord.gg/P4DYXfmSAs) Community.
|
|
|
332
333
|
|
|
333
334
|
---
|
|
334
335
|
|
|
336
|
+
Do you have any difficulties in optimizing your RAG pipeline?
|
|
337
|
+
Or is it hard to set up things to use AutoRAG?
|
|
338
|
+
Try [**AutoRAG Cloud**](https://tally.so/r/n0jOrZ) beta.
|
|
339
|
+
We will help you to run AutoRAG and optimize.
|
|
340
|
+
Plus, we can help you to build RAG evaluation dataset.
|
|
341
|
+
|
|
342
|
+
Starts with 9.99$ per optimization.
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
335
346
|
## YouTube Tutorial
|
|
336
347
|
|
|
337
348
|
https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/c0d23896-40c0-479f-a17b-aa2ec3183a26
|
|
@@ -701,7 +712,7 @@ runner.run('your question')
|
|
|
701
712
|
|
|
702
713
|
You can run this pipeline as an API server.
|
|
703
714
|
|
|
704
|
-
Check out the API endpoint at [here](deploy/api_endpoint.md).
|
|
715
|
+
Check out the API endpoint at [here](./docs/source/deploy/api_endpoint.md).
|
|
705
716
|
|
|
706
717
|
```python
|
|
707
718
|
import nest_asyncio
|
|
@@ -733,6 +744,15 @@ autorag run_web --trial_path your/path/to/trial_path
|
|
|
733
744
|
|
|
734
745
|
<img width="1491" alt="web_interface" src="https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/f6b00353-f6bb-4d8f-8740-1c264c0acbb8">
|
|
735
746
|
|
|
747
|
+
### Use advanced web interface
|
|
748
|
+
|
|
749
|
+
You can deploy the advanced web interface featured by [Kotaemon](https://github.com/Cinnamon/kotaemon) to the fly.io.
|
|
750
|
+
Go [here](https://github.com/vkehfdl1/AutoRAG-web-kotaemon) to use it and deploy to the fly.io.
|
|
751
|
+
|
|
752
|
+
Example :
|
|
753
|
+
|
|
754
|
+

|
|
755
|
+
|
|
736
756
|
## 📌 Supporting Data Creation Modules
|
|
737
757
|

|
|
738
758
|
|
|
@@ -30,6 +30,16 @@ Plus, join our 📞 [Discord](https://discord.gg/P4DYXfmSAs) Community.
|
|
|
30
30
|
|
|
31
31
|
---
|
|
32
32
|
|
|
33
|
+
Do you have any difficulties in optimizing your RAG pipeline?
|
|
34
|
+
Or is it hard to set up things to use AutoRAG?
|
|
35
|
+
Try [**AutoRAG Cloud**](https://tally.so/r/n0jOrZ) beta.
|
|
36
|
+
We will help you to run AutoRAG and optimize.
|
|
37
|
+
Plus, we can help you to build RAG evaluation dataset.
|
|
38
|
+
|
|
39
|
+
Starts with 9.99$ per optimization.
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
33
43
|
## YouTube Tutorial
|
|
34
44
|
|
|
35
45
|
https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/c0d23896-40c0-479f-a17b-aa2ec3183a26
|
|
@@ -399,7 +409,7 @@ runner.run('your question')
|
|
|
399
409
|
|
|
400
410
|
You can run this pipeline as an API server.
|
|
401
411
|
|
|
402
|
-
Check out the API endpoint at [here](deploy/api_endpoint.md).
|
|
412
|
+
Check out the API endpoint at [here](./docs/source/deploy/api_endpoint.md).
|
|
403
413
|
|
|
404
414
|
```python
|
|
405
415
|
import nest_asyncio
|
|
@@ -431,6 +441,15 @@ autorag run_web --trial_path your/path/to/trial_path
|
|
|
431
441
|
|
|
432
442
|
<img width="1491" alt="web_interface" src="https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/f6b00353-f6bb-4d8f-8740-1c264c0acbb8">
|
|
433
443
|
|
|
444
|
+
### Use advanced web interface
|
|
445
|
+
|
|
446
|
+
You can deploy the advanced web interface featured by [Kotaemon](https://github.com/Cinnamon/kotaemon) to the fly.io.
|
|
447
|
+
Go [here](https://github.com/vkehfdl1/AutoRAG-web-kotaemon) to use it and deploy to the fly.io.
|
|
448
|
+
|
|
449
|
+
Example :
|
|
450
|
+
|
|
451
|
+

|
|
452
|
+
|
|
434
453
|
## 📌 Supporting Data Creation Modules
|
|
435
454
|

|
|
436
455
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.3.8
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import json
|
|
2
1
|
import logging
|
|
3
2
|
import os
|
|
4
3
|
import shutil
|
|
5
|
-
from datetime import datetime
|
|
6
4
|
from typing import Optional
|
|
7
5
|
|
|
8
6
|
import pandas as pd
|
|
@@ -32,13 +30,11 @@ class Chunker:
|
|
|
32
30
|
return cls(parsed_result, project_dir)
|
|
33
31
|
|
|
34
32
|
def start_chunking(self, yaml_path: str):
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
if not os.path.exists(self.project_dir):
|
|
34
|
+
os.makedirs(self.project_dir)
|
|
37
35
|
|
|
38
36
|
# Copy YAML file to the trial directory
|
|
39
|
-
shutil.copy(
|
|
40
|
-
yaml_path, os.path.join(self.project_dir, trial_name, "chunk_config.yaml")
|
|
41
|
-
)
|
|
37
|
+
shutil.copy(yaml_path, os.path.join(self.project_dir, "chunk_config.yaml"))
|
|
42
38
|
|
|
43
39
|
# load yaml file
|
|
44
40
|
modules = load_yaml(yaml_path)
|
|
@@ -50,32 +46,6 @@ class Chunker:
|
|
|
50
46
|
modules=input_modules,
|
|
51
47
|
module_params=input_params,
|
|
52
48
|
parsed_result=self.parsed_raw,
|
|
53
|
-
|
|
49
|
+
project_dir=self.project_dir,
|
|
54
50
|
)
|
|
55
51
|
logger.info("Chunking Done!")
|
|
56
|
-
|
|
57
|
-
def __get_new_trial_name(self) -> str:
|
|
58
|
-
trial_json_path = os.path.join(self.project_dir, "trial.json")
|
|
59
|
-
if not os.path.exists(trial_json_path):
|
|
60
|
-
return "0"
|
|
61
|
-
with open(trial_json_path, "r") as f:
|
|
62
|
-
trial_json = json.load(f)
|
|
63
|
-
return str(int(trial_json[-1]["trial_name"]) + 1)
|
|
64
|
-
|
|
65
|
-
def __make_trial_dir(self, trial_name: str):
|
|
66
|
-
trial_json_path = os.path.join(self.project_dir, "trial.json")
|
|
67
|
-
if os.path.exists(trial_json_path):
|
|
68
|
-
with open(trial_json_path, "r") as f:
|
|
69
|
-
trial_json = json.load(f)
|
|
70
|
-
else:
|
|
71
|
-
trial_json = []
|
|
72
|
-
|
|
73
|
-
trial_json.append(
|
|
74
|
-
{
|
|
75
|
-
"trial_name": trial_name,
|
|
76
|
-
"start_time": datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
|
|
77
|
-
}
|
|
78
|
-
)
|
|
79
|
-
os.makedirs(os.path.join(self.project_dir, trial_name))
|
|
80
|
-
with open(trial_json_path, "w") as f:
|
|
81
|
-
json.dump(trial_json, f, indent=4)
|
|
@@ -47,7 +47,7 @@ def cli():
|
|
|
47
47
|
)
|
|
48
48
|
def evaluate(config, qa_data_path, corpus_data_path, project_dir, skip_validation):
|
|
49
49
|
if not config.endswith(".yaml") and not config.endswith(".yml"):
|
|
50
|
-
raise ValueError(f"Config file {config} is not a
|
|
50
|
+
raise ValueError(f"Config file {config} is not a yaml or yml file.")
|
|
51
51
|
if not os.path.exists(config):
|
|
52
52
|
raise ValueError(f"Config file {config} does not exist.")
|
|
53
53
|
evaluator = Evaluator(qa_data_path, corpus_data_path, project_dir=project_dir)
|
|
@@ -115,8 +115,8 @@ def add_file_name(
|
|
|
115
115
|
zip(chunk_texts, file_names),
|
|
116
116
|
)
|
|
117
117
|
)
|
|
118
|
-
elif file_name_language ==
|
|
119
|
-
|
|
118
|
+
elif file_name_language == "ja":
|
|
119
|
+
return list(
|
|
120
120
|
map(
|
|
121
121
|
lambda x: f"ファイル名: {x[1]}\n 内容: {x[0]}",
|
|
122
122
|
zip(chunk_texts, file_names),
|
|
@@ -9,7 +9,7 @@ def run_chunker(
|
|
|
9
9
|
modules: List[Callable],
|
|
10
10
|
module_params: List[Dict],
|
|
11
11
|
parsed_result: pd.DataFrame,
|
|
12
|
-
|
|
12
|
+
project_dir: str,
|
|
13
13
|
):
|
|
14
14
|
results, execution_times = zip(
|
|
15
15
|
*map(
|
|
@@ -21,7 +21,7 @@ def run_chunker(
|
|
|
21
21
|
|
|
22
22
|
# save results to parquet files
|
|
23
23
|
filepaths = list(
|
|
24
|
-
map(lambda x: os.path.join(
|
|
24
|
+
map(lambda x: os.path.join(project_dir, f"{x}.parquet"), range(len(modules)))
|
|
25
25
|
)
|
|
26
26
|
list(map(lambda x: x[0].to_parquet(x[1], index=False), zip(results, filepaths)))
|
|
27
27
|
filenames = list(map(lambda x: os.path.basename(x), filepaths))
|
|
@@ -34,5 +34,5 @@ def run_chunker(
|
|
|
34
34
|
"execution_time": average_times,
|
|
35
35
|
}
|
|
36
36
|
)
|
|
37
|
-
summary_df.to_csv(os.path.join(
|
|
37
|
+
summary_df.to_csv(os.path.join(project_dir, "summary.csv"), index=False)
|
|
38
38
|
return summary_df
|
|
@@ -9,7 +9,7 @@ def run_parser(
|
|
|
9
9
|
modules: List[Callable],
|
|
10
10
|
module_params: List[Dict],
|
|
11
11
|
data_path_glob: str,
|
|
12
|
-
|
|
12
|
+
project_dir: str,
|
|
13
13
|
):
|
|
14
14
|
results, execution_times = zip(
|
|
15
15
|
*map(
|
|
@@ -21,7 +21,7 @@ def run_parser(
|
|
|
21
21
|
|
|
22
22
|
# save results to parquet files
|
|
23
23
|
filepaths = list(
|
|
24
|
-
map(lambda x: os.path.join(
|
|
24
|
+
map(lambda x: os.path.join(project_dir, f"{x}.parquet"), range(len(modules)))
|
|
25
25
|
)
|
|
26
26
|
list(map(lambda x: x[0].to_parquet(x[1], index=False), zip(results, filepaths)))
|
|
27
27
|
filenames = list(map(lambda x: os.path.basename(x), filepaths))
|
|
@@ -34,5 +34,5 @@ def run_parser(
|
|
|
34
34
|
"execution_time": average_times,
|
|
35
35
|
}
|
|
36
36
|
)
|
|
37
|
-
summary_df.to_csv(os.path.join(
|
|
37
|
+
summary_df.to_csv(os.path.join(project_dir, "summary.csv"), index=False)
|
|
38
38
|
return summary_df
|
|
@@ -16,13 +16,13 @@ If the answer implies 'I don't know', return True. If not, return False.""",
|
|
|
16
16
|
만약 해당 문장이 '모른다고' 답한 것이라면, True를 반환하세요. 그렇지 않다면 False를 반환하세요.""",
|
|
17
17
|
)
|
|
18
18
|
],
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
"ja": [
|
|
20
|
+
ChatMessage(
|
|
21
21
|
role=MessageRole.SYSTEM,
|
|
22
22
|
content="""次の文章はある質問に対する答えです。 該当文章が質問に対して「知らない」と答えたのか判断します。
|
|
23
23
|
もし、その文章が「知らない」と答えたのであれば、Trueを返します。 そうでなければFalseを返します。""",
|
|
24
24
|
)
|
|
25
|
-
]
|
|
25
|
+
],
|
|
26
26
|
},
|
|
27
27
|
"passage_dependency": {
|
|
28
28
|
"en": [
|
|
@@ -55,8 +55,8 @@ Please return True if the input question is passage dependent. Else return False
|
|
|
55
55
|
입력된 질문이 단락 의존적이라면 True를 반환하고, 그렇지 않으면 False를 반환하세요.""",
|
|
56
56
|
)
|
|
57
57
|
],
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
"ja": [
|
|
59
|
+
ChatMessage(
|
|
60
60
|
role=MessageRole.SYSTEM,
|
|
61
61
|
content="""あなたは「段落依存」の質問を認識する分類器です。
|
|
62
62
|
「段落依存」とは、どの段落が選択されるかによって答えが変わる質問を意味します。
|
|
@@ -68,6 +68,6 @@ KBO野球史上1試合で最も高い点数は何ですか?またはフランス
|
|
|
68
68
|
|
|
69
69
|
入力された質問が段落依存的である場合はTrueを返し、そうでない場合はFalseを返します。""",
|
|
70
70
|
)
|
|
71
|
-
]
|
|
71
|
+
],
|
|
72
72
|
},
|
|
73
73
|
}
|
|
@@ -9,7 +9,7 @@ from autorag.data.qa.generation_gt.base import add_gen_gt
|
|
|
9
9
|
from autorag.data.qa.generation_gt.prompt import GEN_GT_SYSTEM_PROMPT
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
async def make_gen_gt_llama_index(row: Dict, llm: BaseLLM, system_prompt: str):
|
|
12
|
+
async def make_gen_gt_llama_index(row: Dict, llm: BaseLLM, system_prompt: str) -> Dict:
|
|
13
13
|
retrieval_gt_contents = list(
|
|
14
14
|
itertools.chain.from_iterable(row["retrieval_gt_contents"])
|
|
15
15
|
)
|
|
@@ -35,3 +35,7 @@ async def make_concise_gen_gt(row: Dict, llm: BaseLLM, lang: str = "en") -> Dict
|
|
|
35
35
|
|
|
36
36
|
async def make_basic_gen_gt(row: Dict, llm: BaseLLM, lang: str = "en") -> Dict:
|
|
37
37
|
return await make_gen_gt_llama_index(row, llm, GEN_GT_SYSTEM_PROMPT["basic"][lang])
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
async def make_custom_gen_gt(row: Dict, llm: BaseLLM, system_prompt: str) -> Dict:
|
|
41
|
+
return await make_gen_gt_llama_index(row, llm, system_prompt)
|
|
@@ -10,18 +10,18 @@ It doesn't have to be an full sentence. It can be the answer is a word or a para
|
|
|
10
10
|
답변은 간결하고 질문에 관련된 내용만 포함해야 합니다.
|
|
11
11
|
불필요하게 길게 답변하지 말고, 명확하게 작성하세요.
|
|
12
12
|
완전한 문장이 아니어도 되며, 답은 단어나 요약일 수 있습니다.""",
|
|
13
|
-
"ja":"""
|
|
13
|
+
"ja": """
|
|
14
14
|
あなたは与えられた質問に対して提供されたText内で答えを探すAI秘書です。
|
|
15
15
|
質問に対する答えをTextで探して適切な答えを作成しましょう。
|
|
16
16
|
回答は簡潔で、質問に関連する内容のみを含める必要があります。
|
|
17
17
|
不必要に長く答えず、明確に作成しましょう。
|
|
18
18
|
完全な文章でなくてもいいし、答えは単語や要約かもしれません。
|
|
19
|
-
"""
|
|
19
|
+
""",
|
|
20
20
|
},
|
|
21
21
|
"basic": {
|
|
22
22
|
"en": """You are an AI assistant to answer the given question in the provide evidence text.
|
|
23
23
|
You can find the evidence from the given text about question, and you have to write a proper answer to the given question.""",
|
|
24
24
|
"ko": "당신은 주어진 질문에 대한 답을 제공된 Text 내에서 찾는 AI 비서입니다. 질문과 관련된 증거를 Text에서 찾아 적절한 답변을 작성하세요.",
|
|
25
|
-
|
|
25
|
+
"ja": "あなたは与えられた質問に対する答えを提供されたText内で探すAI秘書です。 質問に関する証拠をTextで探して適切な回答を作成しましょう。",
|
|
26
26
|
},
|
|
27
27
|
}
|
|
@@ -13,13 +13,11 @@ async def llama_index_generate_base(
|
|
|
13
13
|
messages: List[ChatMessage],
|
|
14
14
|
) -> Dict:
|
|
15
15
|
context = list(itertools.chain.from_iterable(row["retrieval_gt_contents"]))
|
|
16
|
-
context_str = "
|
|
17
|
-
[f"{i + 1}. {c}" for i, c in enumerate(context)]
|
|
18
|
-
)
|
|
16
|
+
context_str = "\n".join([f"{i + 1}. {c}" for i, c in enumerate(context)])
|
|
19
17
|
user_prompt = f"Text:\n{context_str}\n\nGenerated Question from the Text:\n"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
chat_response: ChatResponse = await llm.achat(messages=
|
|
18
|
+
user_message = ChatMessage(role=MessageRole.USER, content=user_prompt)
|
|
19
|
+
new_messages = [*messages, user_message]
|
|
20
|
+
chat_response: ChatResponse = await llm.achat(messages=new_messages)
|
|
23
21
|
row["query"] = chat_response.message.content
|
|
24
22
|
return row
|
|
25
23
|
|
|
@@ -62,3 +60,11 @@ async def two_hop_incremental(
|
|
|
62
60
|
response = chat_response.message.content
|
|
63
61
|
row["query"] = response.split(":")[-1].strip()
|
|
64
62
|
return row
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
async def custom_query_gen(
|
|
66
|
+
row: Dict,
|
|
67
|
+
llm: BaseLLM,
|
|
68
|
+
messages: List[ChatMessage],
|
|
69
|
+
) -> Dict:
|
|
70
|
+
return await llama_index_generate_base(row, llm, messages)
|