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.
Files changed (447) hide show
  1. {autorag-0.2.5 → autorag-0.2.7}/.github/workflows/sphinx.yml +3 -0
  2. {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/PKG-INFO +104 -126
  3. {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/SOURCES.txt +18 -16
  4. {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/requires.txt +3 -2
  5. {autorag-0.2.5 → autorag-0.2.7}/PKG-INFO +104 -126
  6. {autorag-0.2.5 → autorag-0.2.7}/README.md +98 -122
  7. autorag-0.2.7/autorag/VERSION +1 -0
  8. {autorag-0.2.5 → autorag-0.2.7}/autorag/__init__.py +2 -0
  9. {autorag-0.2.5 → autorag-0.2.7}/autorag/dashboard.py +2 -2
  10. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/generation.py +2 -2
  11. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/generation.py +1 -1
  12. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/retrieval.py +4 -3
  13. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/retrieval_contents.py +1 -1
  14. {autorag-0.2.5 → autorag-0.2.7}/autorag/evaluator.py +4 -4
  15. {autorag-0.2.5 → autorag-0.2.7}/autorag/node_line.py +1 -1
  16. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/run.py +5 -4
  17. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/base.py +5 -25
  18. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/run.py +1 -1
  19. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/run.py +3 -3
  20. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/base.py +1 -1
  21. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/run.py +1 -1
  22. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/similarity_percentile_cutoff.py +9 -2
  23. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/similarity_threshold_cutoff.py +7 -21
  24. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/base.py +1 -1
  25. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/run.py +1 -1
  26. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/upr.py +9 -26
  27. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/run.py +3 -3
  28. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/run.py +1 -1
  29. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/base.py +1 -1
  30. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/run.py +3 -3
  31. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/vectordb.py +7 -1
  32. {autorag-0.2.5 → autorag-0.2.7}/autorag/utils/util.py +23 -1
  33. autorag-0.2.7/docs/source/CNAME +1 -0
  34. autorag-0.2.7/docs/source/api_spec/autorag.evaluation.metric.rst +45 -0
  35. autorag-0.2.7/docs/source/api_spec/autorag.evaluation.rst +53 -0
  36. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.rst +1 -1
  37. {autorag-0.2.5 → autorag-0.2.7}/docs/source/conf.py +1 -1
  38. {autorag-0.2.5 → autorag-0.2.7}/docs/source/data_creation/data_format.md +7 -0
  39. {autorag-0.2.5 → autorag-0.2.7}/docs/source/data_creation/ragas.md +7 -0
  40. {autorag-0.2.5 → autorag-0.2.7}/docs/source/data_creation/tutorial.md +7 -0
  41. {autorag-0.2.5 → autorag-0.2.7}/docs/source/deploy/api_endpoint.md +7 -0
  42. {autorag-0.2.5 → autorag-0.2.7}/docs/source/deploy/web.md +7 -0
  43. {autorag-0.2.5 → autorag-0.2.7}/docs/source/evaluate_metrics/generation.md +7 -0
  44. {autorag-0.2.5 → autorag-0.2.7}/docs/source/evaluate_metrics/retrieval.md +8 -1
  45. {autorag-0.2.5 → autorag-0.2.7}/docs/source/evaluate_metrics/retrieval_contents.md +7 -0
  46. {autorag-0.2.5 → autorag-0.2.7}/docs/source/index.rst +11 -6
  47. {autorag-0.2.5 → autorag-0.2.7}/docs/source/install.md +7 -0
  48. {autorag-0.2.5 → autorag-0.2.7}/docs/source/local_model.md +19 -14
  49. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/generator/generator.md +7 -0
  50. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/generator/llama_index_llm.md +7 -0
  51. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/generator/openai_llm.md +7 -0
  52. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/generator/vllm.md +7 -0
  53. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/index.md +7 -0
  54. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_augmenter/passage_augmenter.md +7 -0
  55. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_augmenter/prev_next_augmenter.md +7 -0
  56. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_compressor/longllmlingua.md +7 -0
  57. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_compressor/passage_compressor.md +7 -0
  58. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_compressor/refine.md +8 -1
  59. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_compressor/tree_summarize.md +7 -0
  60. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/passage_filter.md +7 -0
  61. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/percentile_cutoff.md +8 -1
  62. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/recency_filter.md +7 -0
  63. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/similarity_percentile_cutoff.md +7 -0
  64. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/similarity_threshold_cutoff.md +7 -0
  65. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_filter/threshold_cutoff.md +8 -1
  66. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/cohere.md +7 -0
  67. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/colbert.md +7 -0
  68. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/flag_embedding_llm_reranker.md +8 -1
  69. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/flag_embedding_reranker.md +7 -0
  70. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/jina_reranker.md +7 -0
  71. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/koreranker.md +7 -0
  72. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/monot5.md +7 -0
  73. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/passage_reranker.md +7 -0
  74. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/rankgpt.md +7 -0
  75. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/sentence_transformer_reranker.md +7 -0
  76. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/tart.md +7 -0
  77. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/time_reranker.md +7 -0
  78. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/passage_reranker/upr.md +7 -5
  79. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/prompt_maker/fstring.md +7 -0
  80. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/prompt_maker/long_context_reorder.md +7 -0
  81. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/prompt_maker/prompt_maker.md +7 -0
  82. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/query_expansion/hyde.md +7 -0
  83. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/query_expansion/multi_query_expansion.md +7 -0
  84. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/query_expansion/query_decompose.md +7 -0
  85. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/query_expansion/query_expansion.md +7 -0
  86. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/bm25.md +7 -0
  87. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/hybrid_cc.md +7 -0
  88. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/hybrid_dbsf.md +7 -0
  89. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/hybrid_rrf.md +7 -0
  90. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/hybrid_rsf.md +7 -0
  91. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/retrieval.md +7 -0
  92. {autorag-0.2.5 → autorag-0.2.7}/docs/source/nodes/retrieval/vectordb.md +7 -0
  93. {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/custom_config.md +7 -0
  94. {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/folder_structure.md +7 -0
  95. {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/optimization.md +7 -0
  96. {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/strategies.md +7 -0
  97. {autorag-0.2.5 → autorag-0.2.7}/docs/source/roadmap/modular_rag.md +7 -0
  98. {autorag-0.2.5 → autorag-0.2.7}/docs/source/structure.md +7 -0
  99. {autorag-0.2.5 → autorag-0.2.7}/docs/source/troubleshooting.md +35 -3
  100. {autorag-0.2.5 → autorag-0.2.7}/docs/source/tutorial.md +7 -0
  101. {autorag-0.2.5 → autorag-0.2.7}/pyproject.toml +2 -1
  102. {autorag-0.2.5 → autorag-0.2.7}/requirements.txt +4 -2
  103. {autorag-0.2.5 → autorag-0.2.7}/sample_dataset/README.md +2 -2
  104. autorag-0.2.7/sample_dataset/hotpotqa/load_hotpotqa_dataset.py +28 -0
  105. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/metric/test_generation_metric.py +1 -1
  106. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/metric/test_retrieval_contents_metric.py +1 -1
  107. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/metric/test_retrieval_metric.py +3 -2
  108. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/test_evaluate_util.py +1 -1
  109. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/test_generation_evaluate.py +1 -1
  110. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/test_retrieval_contents_evaluate.py +1 -1
  111. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/evaluate/test_retrieval_evaluate.py +1 -1
  112. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/promptmaker/test_prompt_maker_run.py +1 -1
  113. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_vectordb.py +5 -5
  114. autorag-0.2.5/autorag/VERSION +0 -1
  115. autorag-0.2.5/docs/source/api_spec/autorag.evaluate.metric.rst +0 -45
  116. autorag-0.2.5/docs/source/api_spec/autorag.evaluate.rst +0 -53
  117. {autorag-0.2.5 → autorag-0.2.7}/.github/FUNDING.yml +0 -0
  118. {autorag-0.2.5 → autorag-0.2.7}/.github/dependabot.yml +0 -0
  119. {autorag-0.2.5 → autorag-0.2.7}/.github/workflows/publish.yml +0 -0
  120. {autorag-0.2.5 → autorag-0.2.7}/.github/workflows/test.yml +0 -0
  121. {autorag-0.2.5 → autorag-0.2.7}/.gitignore +0 -0
  122. {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/dependency_links.txt +0 -0
  123. {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/entry_points.txt +0 -0
  124. {autorag-0.2.5 → autorag-0.2.7}/AutoRAG.egg-info/top_level.txt +0 -0
  125. {autorag-0.2.5 → autorag-0.2.7}/CODE_OF_CONDUCT.md +0 -0
  126. {autorag-0.2.5 → autorag-0.2.7}/CONTRIBUTING.md +0 -0
  127. {autorag-0.2.5 → autorag-0.2.7}/LICENSE +0 -0
  128. {autorag-0.2.5 → autorag-0.2.7}/autorag/cli.py +0 -0
  129. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/__init__.py +0 -0
  130. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/corpus/__init__.py +0 -0
  131. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/corpus/langchain.py +0 -0
  132. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/corpus/llama_index.py +0 -0
  133. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/__init__.py +0 -0
  134. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/base.py +0 -0
  135. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/llama_index.py +0 -0
  136. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/llama_index_default_prompt.txt +0 -0
  137. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/ragas.py +0 -0
  138. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/qacreation/simple.py +0 -0
  139. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/utils/__init__.py +0 -0
  140. {autorag-0.2.5 → autorag-0.2.7}/autorag/data/utils/util.py +0 -0
  141. {autorag-0.2.5 → autorag-0.2.7}/autorag/deploy.py +0 -0
  142. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/__init__.py +0 -0
  143. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/__init__.py +0 -0
  144. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/g_eval_prompts/coh_detailed.txt +0 -0
  145. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/g_eval_prompts/con_detailed.txt +0 -0
  146. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/g_eval_prompts/flu_detailed.txt +0 -0
  147. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/g_eval_prompts/rel_detailed.txt +0 -0
  148. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/retrieval.py +0 -0
  149. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/retrieval_contents.py +0 -0
  150. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/metric/util.py +0 -0
  151. {autorag-0.2.5/autorag/evaluate → autorag-0.2.7/autorag/evaluation}/util.py +0 -0
  152. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/__init__.py +0 -0
  153. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/__init__.py +0 -0
  154. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/base.py +0 -0
  155. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/llama_index_llm.py +0 -0
  156. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/openai_llm.py +0 -0
  157. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/generator/vllm.py +0 -0
  158. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/__init__.py +0 -0
  159. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/pass_passage_augmenter.py +0 -0
  160. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passageaugmenter/prev_next_augmenter.py +0 -0
  161. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/__init__.py +0 -0
  162. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/base.py +0 -0
  163. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/longllmlingua.py +0 -0
  164. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/pass_compressor.py +0 -0
  165. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/refine.py +0 -0
  166. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagecompressor/tree_summarize.py +0 -0
  167. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/__init__.py +0 -0
  168. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/pass_passage_filter.py +0 -0
  169. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/percentile_cutoff.py +0 -0
  170. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/recency.py +0 -0
  171. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagefilter/threshold_cutoff.py +0 -0
  172. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/__init__.py +0 -0
  173. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/cohere.py +0 -0
  174. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/colbert.py +0 -0
  175. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/flag_embedding.py +0 -0
  176. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/flag_embedding_llm.py +0 -0
  177. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/jina.py +0 -0
  178. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/koreranker.py +0 -0
  179. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/monot5.py +0 -0
  180. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/pass_reranker.py +0 -0
  181. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/rankgpt.py +0 -0
  182. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/sentence_transformer.py +0 -0
  183. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/tart/__init__.py +0 -0
  184. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/tart/modeling_enc_t5.py +0 -0
  185. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/tart/tart.py +0 -0
  186. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/tart/tokenization_enc_t5.py +0 -0
  187. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/passagereranker/time_reranker.py +0 -0
  188. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/__init__.py +0 -0
  189. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/base.py +0 -0
  190. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/fstring.py +0 -0
  191. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/promptmaker/long_context_reorder.py +0 -0
  192. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/__init__.py +0 -0
  193. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/base.py +0 -0
  194. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/hyde.py +0 -0
  195. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/multi_query_expansion.py +0 -0
  196. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/pass_query_expansion.py +0 -0
  197. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/queryexpansion/query_decompose.py +0 -0
  198. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/__init__.py +0 -0
  199. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/bm25.py +0 -0
  200. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/hybrid_cc.py +0 -0
  201. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/hybrid_dbsf.py +0 -0
  202. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/hybrid_rrf.py +0 -0
  203. {autorag-0.2.5 → autorag-0.2.7}/autorag/nodes/retrieval/hybrid_rsf.py +0 -0
  204. {autorag-0.2.5 → autorag-0.2.7}/autorag/schema/__init__.py +0 -0
  205. {autorag-0.2.5 → autorag-0.2.7}/autorag/schema/module.py +0 -0
  206. {autorag-0.2.5 → autorag-0.2.7}/autorag/schema/node.py +0 -0
  207. {autorag-0.2.5 → autorag-0.2.7}/autorag/strategy.py +0 -0
  208. {autorag-0.2.5 → autorag-0.2.7}/autorag/support.py +0 -0
  209. {autorag-0.2.5 → autorag-0.2.7}/autorag/utils/__init__.py +0 -0
  210. {autorag-0.2.5 → autorag-0.2.7}/autorag/utils/preprocess.py +0 -0
  211. {autorag-0.2.5 → autorag-0.2.7}/autorag/web.py +0 -0
  212. {autorag-0.2.5 → autorag-0.2.7}/docs/Makefile +0 -0
  213. {autorag-0.2.5 → autorag-0.2.7}/docs/make.bat +0 -0
  214. {autorag-0.2.5 → autorag-0.2.7}/docs/requirements.txt +0 -0
  215. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/data_creation.png +0 -0
  216. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/data_folder.png +0 -0
  217. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/dcg.png +0 -0
  218. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/f1_score.png +0 -0
  219. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/map.png +0 -0
  220. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/mrr.png +0 -0
  221. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/ndcg.png +0 -0
  222. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/ndcg_formula.png +0 -0
  223. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_folder.png +0 -0
  224. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_line_folder.png +0 -0
  225. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_line_summary.png +0 -0
  226. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_lines.png +0 -0
  227. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/node_summary.png +0 -0
  228. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/normal_distribution.png +0 -0
  229. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/project_folder_example.png +0 -0
  230. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/project_folders.png +0 -0
  231. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/resources_folder.png +0 -0
  232. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/RAG_paradigms.png +0 -0
  233. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/advanced_RAG.png +0 -0
  234. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/cycle.png +0 -0
  235. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/merger.png +0 -0
  236. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/node_line_modular.png +0 -0
  237. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/roadmap/policy.png +0 -0
  238. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/samsung_sundae.jpeg +0 -0
  239. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/score_fusion.png +0 -0
  240. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/trial_folder.png +0 -0
  241. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/trial_json.png +0 -0
  242. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/trial_summary.png +0 -0
  243. {autorag-0.2.5 → autorag-0.2.7}/docs/source/_static/web_interface.png +0 -0
  244. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.data.corpus.rst +0 -0
  245. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.data.qacreation.rst +0 -0
  246. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.data.rst +0 -0
  247. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.data.utils.rst +0 -0
  248. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.generator.rst +0 -0
  249. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passageaugmenter.rst +0 -0
  250. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passagecompressor.rst +0 -0
  251. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passagefilter.rst +0 -0
  252. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passagereranker.rst +0 -0
  253. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.passagereranker.tart.rst +0 -0
  254. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.promptmaker.rst +0 -0
  255. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.queryexpansion.rst +0 -0
  256. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.retrieval.rst +0 -0
  257. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.nodes.rst +0 -0
  258. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.schema.rst +0 -0
  259. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/autorag.utils.rst +0 -0
  260. {autorag-0.2.5 → autorag-0.2.7}/docs/source/api_spec/modules.rst +0 -0
  261. {autorag-0.2.5 → autorag-0.2.7}/docs/source/optimization/sample_full_config.yaml +0 -0
  262. {autorag-0.2.5 → autorag-0.2.7}/sample_config/compact_local.yaml +0 -0
  263. {autorag-0.2.5 → autorag-0.2.7}/sample_config/compact_openai.yaml +0 -0
  264. {autorag-0.2.5 → autorag-0.2.7}/sample_config/config_korean.yaml +0 -0
  265. {autorag-0.2.5 → autorag-0.2.7}/sample_config/extracted_sample.yaml +0 -0
  266. {autorag-0.2.5 → autorag-0.2.7}/sample_config/full.yaml +0 -0
  267. {autorag-0.2.5 → autorag-0.2.7}/sample_config/simple_local.yaml +0 -0
  268. {autorag-0.2.5 → autorag-0.2.7}/sample_config/simple_openai.yaml +0 -0
  269. {autorag-0.2.5 → autorag-0.2.7}/sample_dataset/eli5/load_eli5_dataset.py +0 -0
  270. {autorag-0.2.5 → autorag-0.2.7}/sample_dataset/msmarco/load_msmarco_dataset.py +0 -0
  271. {autorag-0.2.5 → autorag-0.2.7}/sample_dataset/triviaqa/load_triviaqa_dataset.py +0 -0
  272. {autorag-0.2.5 → autorag-0.2.7}/setup.cfg +0 -0
  273. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/corpus/test_base.py +0 -0
  274. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/corpus/test_langchain.py +0 -0
  275. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/corpus/test_llama_index_corpus.py +0 -0
  276. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/qacreation/test_base_qacreation.py +0 -0
  277. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/qacreation/test_llama_index_qacreation.py +0 -0
  278. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/qacreation/test_ragas_qa_creation.py +0 -0
  279. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/data/qacreation/test_simple.py +0 -0
  280. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_generator_base.py +0 -0
  281. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_llama_index_llm.py +0 -0
  282. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_openai.py +0 -0
  283. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_run_generator_node.py +0 -0
  284. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/generator/test_vllm.py +0 -0
  285. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passageaugmenter/test_base_passage_augmenter.py +0 -0
  286. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passageaugmenter/test_pass_passage_augmenter.py +0 -0
  287. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passageaugmenter/test_prev_next_augmenter.py +0 -0
  288. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passageaugmenter/test_run_passage_augmenter.py +0 -0
  289. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_base_passage_compressor.py +0 -0
  290. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_longllmlingua.py +0 -0
  291. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_pass_compressor.py +0 -0
  292. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_refine.py +0 -0
  293. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_run_passage_compressor_node.py +0 -0
  294. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagecompressor/test_tree_summarize.py +0 -0
  295. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_pass_passage_filter.py +0 -0
  296. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_passage_filter_base.py +0 -0
  297. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_passage_filter_run.py +0 -0
  298. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_percentile_cutoff.py +0 -0
  299. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_recency_filter.py +0 -0
  300. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_similarity_percentile_cutoff.py +0 -0
  301. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_similarity_threshold_cutoff.py +0 -0
  302. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagefilter/test_threshold_cutoff.py +0 -0
  303. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_cohere_reranker.py +0 -0
  304. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_colbert_reranker.py +0 -0
  305. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_flag_embedding.py +0 -0
  306. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_flag_embedding_llm.py +0 -0
  307. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_jina_reranker.py +0 -0
  308. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_koreranker.py +0 -0
  309. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_monot5.py +0 -0
  310. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_pass_reranker.py +0 -0
  311. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_passage_reranker_base.py +0 -0
  312. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_passage_reranker_run.py +0 -0
  313. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_rankgpt.py +0 -0
  314. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_sentence_transformer.py +0 -0
  315. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_tart.py +0 -0
  316. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_time_reranker.py +0 -0
  317. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/passagereranker/test_upr.py +0 -0
  318. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/promptmaker/test_fstring.py +0 -0
  319. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/promptmaker/test_long_context_reorder.py +0 -0
  320. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/promptmaker/test_prompt_maker_base.py +0 -0
  321. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_hyde.py +0 -0
  322. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_multi_query_expansion.py +0 -0
  323. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_pass_query_expansion.py +0 -0
  324. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_query_decompose.py +0 -0
  325. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_query_expansion_base.py +0 -0
  326. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/queryexpansion/test_query_expansion_run.py +0 -0
  327. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_bm25.py +0 -0
  328. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_base.py +0 -0
  329. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_cc.py +0 -0
  330. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_dbsf.py +0 -0
  331. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_rrf.py +0 -0
  332. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_hybrid_rsf.py +0 -0
  333. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_retrieval_base.py +0 -0
  334. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/nodes/retrieval/test_run_retrieval_node.py +0 -0
  335. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/schema/test_module_schema.py +0 -0
  336. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/schema/test_node_schema.py +0 -0
  337. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_cli.py +0 -0
  338. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_dashboard.py +0 -0
  339. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_deploy.py +0 -0
  340. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_evaluator.py +0 -0
  341. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_strategy.py +0 -0
  342. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_support.py +0 -0
  343. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/test_web.py +0 -0
  344. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/utils/test_preprocess.py +0 -0
  345. {autorag-0.2.5 → autorag-0.2.7}/tests/autorag/utils/test_util.py +0 -0
  346. {autorag-0.2.5 → autorag-0.2.7}/tests/conftest.py +0 -0
  347. {autorag-0.2.5 → autorag-0.2.7}/tests/delete_tests.py +0 -0
  348. {autorag-0.2.5 → autorag-0.2.7}/tests/mock.py +0 -0
  349. {autorag-0.2.5 → autorag-0.2.7}/tests/requirements.txt +0 -0
  350. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/README.md +0 -0
  351. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/corpus_data_sample.parquet +0 -0
  352. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/data_creation/raw_dir/sample1.txt +0 -0
  353. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/data_creation/raw_dir/sample2.txt +0 -0
  354. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/data_creation/raw_dir/sample3.txt +0 -0
  355. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/full.yaml +0 -0
  356. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_data_sample.parquet +0 -0
  357. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_gen_prompts/prompt1.txt +0 -0
  358. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_gen_prompts/prompt2.txt +0 -0
  359. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_gen_prompts/prompt3.txt +0 -0
  360. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/qa_test_data_sample.parquet +0 -0
  361. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/config.yaml +0 -0
  362. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/0.parquet +0 -0
  363. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/1.parquet +0 -0
  364. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/2.parquet +0 -0
  365. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/3.parquet +0 -0
  366. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/4.parquet +0 -0
  367. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/5.parquet +0 -0
  368. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/best_5.parquet +0 -0
  369. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/generator/summary.csv +0 -0
  370. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/0.parquet +0 -0
  371. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/1.parquet +0 -0
  372. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/best_0.parquet +0 -0
  373. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/summary.csv +0 -0
  374. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/post_retrieve_node_line/summary.csv +0 -0
  375. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
  376. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
  377. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
  378. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
  379. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
  380. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/pre_retrieve_node_line/summary.csv +0 -0
  381. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/0.parquet +0 -0
  382. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/best_0.parquet +0 -0
  383. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/summary.csv +0 -0
  384. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/0.parquet +0 -0
  385. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/1.parquet +0 -0
  386. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
  387. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/summary.csv +0 -0
  388. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/retrieval/0.parquet +0 -0
  389. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/retrieval/1.parquet +0 -0
  390. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/retrieval/best_0.parquet +0 -0
  391. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/retrieval/summary.csv +0 -0
  392. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/retrieve_node_line/summary.csv +0 -0
  393. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/0/summary.csv +0 -0
  394. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/config.yaml +0 -0
  395. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
  396. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
  397. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
  398. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
  399. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
  400. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/pre_retrieve_node_line/summary.csv +0 -0
  401. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_filter/0.parquet +0 -0
  402. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/0.parquet +0 -0
  403. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/1.parquet +0 -0
  404. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
  405. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/summary.csv +0 -0
  406. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/retrieval/0.parquet +0 -0
  407. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/retrieval/1.parquet +0 -0
  408. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/retrieval/best_0.parquet +0 -0
  409. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/1/retrieve_node_line/retrieval/summary.csv +0 -0
  410. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/config.yaml +0 -0
  411. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/post_retrieve_node_line/prompt_maker/0.parquet +0 -0
  412. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
  413. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
  414. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
  415. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
  416. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
  417. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/pre_retrieve_node_line/summary.csv +0 -0
  418. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/0.parquet +0 -0
  419. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/best_0.parquet +0 -0
  420. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/summary.csv +0 -0
  421. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/0.parquet +0 -0
  422. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/1.parquet +0 -0
  423. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
  424. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/summary.csv +0 -0
  425. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/retrieval/0.parquet +0 -0
  426. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/retrieval/1.parquet +0 -0
  427. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/retrieval/best_0.parquet +0 -0
  428. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/retrieval/summary.csv +0 -0
  429. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/2/retrieve_node_line/summary.csv +0 -0
  430. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/3/config.yaml +0 -0
  431. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/best.yaml +0 -0
  432. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/data/corpus.parquet +0 -0
  433. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/data/qa.parquet +0 -0
  434. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/bm25_porter_stemmer.pkl +0 -0
  435. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/data_level0.bin +0 -0
  436. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/header.bin +0 -0
  437. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/length.bin +0 -0
  438. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/link_lists.bin +0 -0
  439. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/resources/chroma/chroma.sqlite3 +0 -0
  440. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/result_project/trial.json +0 -0
  441. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_contents_nqa.csv +0 -0
  442. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_project/data/corpus.parquet +0 -0
  443. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_project/data/qa.parquet +0 -0
  444. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_project/resources/bm25_gpt2.pkl +0 -0
  445. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/sample_project/resources/bm25_porter_stemmer.pkl +0 -0
  446. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/simple.yaml +0 -0
  447. {autorag-0.2.5 → autorag-0.2.7}/tests/resources/test_bm25_retrieval.pkl +0 -0
@@ -22,6 +22,9 @@ jobs:
22
22
  - name: Build HTML
23
23
  run: |
24
24
  sphinx-build -b html docs/source docs/build/html
25
+ - name: Copy CNAME
26
+ run: |
27
+ cp docs/source/CNAME docs/build/html/CNAME
25
28
  - name: Upload artifacts
26
29
  uses: actions/upload-artifact@v3
27
30
  with:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: AutoRAG
3
- Version: 0.2.5
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://marker-inc-korea.github.io/AutoRAG/)!!
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
- 📌 Colab Tutorial
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
- 🚨 YouTube Tutorial
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
- # 📑 Index
295
-
296
- - [Introduction](#introduction)
297
- - [Quick Install](#-quick-install)
298
- - [Index](#-index)
299
- - [Strengths](#-strengths)
300
- - [QuickStart](#-quickstart)
301
- - [1. Prepare your evaluation data](#1-prepare-your-evaluation-data)
302
- - [2. Evaluate your data to various RAG modules](#2-evaluate-your-data-to-various-rag-modules)
303
- - [3. Use a found optimal RAG pipeline](#3-use-a-found-optimal-rag-pipeline)
304
- - [4. Run Dashboard to see the result](#4-run-dashboard)
305
- - [5. Share your RAG pipeline](#5-share-your-rag-pipeline)
306
- - [+ Config yaml file](#-create-your-own-config-yaml-file)
307
- - [Supporting RAG modules](#supporting-nodes--modules)
308
- - [Roadmap](#roadmap)
309
- - [Contribution](#contribution)
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
- # Quick Install
327
+ # 📌AutoRAG Structure
326
328
 
327
- ```bash
328
- pip install AutoRAG
329
- ```
329
+ ![Node](https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/79dda7ba-e9d8-4552-9e7b-6a5f9edc4c1a)
330
330
 
331
- # 💪 Strengths
331
+ ## ❗Supporting Nodes & modules
332
332
 
333
- ### **1. Find your RAG baseline**
333
+ ![module_1](https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/828d8752-13f2-4918-8ca4-2605a86596cb)
334
+ ![module_2](https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/4db3d83f-3178-4b81-bad1-b751dcd31a13)
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
- Benchmark RAG pipelines with few lines of code. You can quickly get a high-performance RAG
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
- ### **2. Analyze where is wrong**
340
+ ![Metrics](https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/9f090e3c-d762-41cb-9f1d-cd8d7da137dd)
339
341
 
340
- Sometimes it is hard to keep tracking where is the major problem within your RAG pipeline.
341
- AutoRAG gives you the data of it, so you can analyze and focus where is the major problem and where you to focus on.
342
+ You can check our all supporting Evaluation Metrics
343
+ at [here](https://edai.notion.site/Supporting-metrics-867d71caefd7401c9264dd91ba406043?pvs=4)
342
344
 
343
- ### **3. Quick Starter Pack for your new RAG product**
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
- Get the most effective RAG workflow among many pipelines, and start from
346
- there.
347
- Don’t start at toy-project level, start from advanced level.
349
+ # Quick Install
348
350
 
349
- ### **4. Share your experiment to others**
351
+ We recommend using Python version 3.9 or higher for AutoRAG.
350
352
 
351
- It's really easy to share your experiment to others. Share your config yaml file and
352
- summary csv files. Plus, check out others result and adapt to your use-case.
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
- - QA dataset file (qa.parquet)
361
- - Corpus dataset file (corpus.parquet)
362
- - Config yaml file (config.yaml)
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://marker-inc-korea.github.io/AutoRAG/data_creation/tutorial.html).
370
+ at [here](https://docs.auto-rag.com/data_creation/tutorial.html).
368
371
  - Check out the evaluation data rule
369
- at [here](https://marker-inc-korea.github.io/AutoRAG/data_creation/data_format.html).
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://marker-inc-korea.github.io/AutoRAG/optimization/folder_structure.html).
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://marker-inc-korea.github.io/AutoRAG/deploy/api_endpoint.html).
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
+ ![dashboard](https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/3798827d-31d7-4c4e-a9b1-54340b964e53)
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
- ### Create your own Config yaml file
458
-
459
- You can build your own evaluation process with config yaml file.
460
- You can check detailed explanation how to configure each module and node
461
- at [here](https://marker-inc-korea.github.io/AutoRAG/nodes/index.html#).
462
-
463
- There is a simple yaml file example.
464
-
465
- It evaluates two retrieval modules which are BM25 and Vector Retriever, and three reranking modules.
466
- Lastly, it generates prompt and makes generation with two other LLM models and three temperatures.
467
-
468
- ```yaml
469
- node_lines:
470
- - node_line_name: retrieve_node_line
471
- nodes:
472
- - node_type: retrieval
473
- strategy:
474
- metric: retrieval_f1
475
- top_k: 50
476
- modules:
477
- - module_type: bm25
478
- - module_type: vector
479
- embedding_model: [ openai, openai_embed_3_large ]
480
- - module_type: hybrid_rrf
481
- target_modules: ('bm25', 'vectordb')
482
- rrf_k: [ 3, 5, 10 ]
483
- - node_type: reranker
484
- strategy:
485
- metric: retrieval_precision
486
- speed_threshold: 5
487
- top_k: 3
488
- modules:
489
- - module_type: upr
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
- # ❗Supporting Nodes & modules
504
+ - sample web interface:
517
505
 
518
- You can check our all supporting Nodes & modules
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
- # ❗Supporting Evaluation Metrics
508
+ # Star History
522
509
 
523
- You can check our all supporting Evaluation Metrics
524
- at [here](https://edai.notion.site/Supporting-metrics-867d71caefd7401c9264dd91ba406043?pvs=4)
510
+ [![Star History Chart](https://api.star-history.com/svg?repos=Marker-Inc-Korea/AutoRAG&type=Date)](https://star-history.com/#Marker-Inc-Korea/AutoRAG&Date)
525
511
 
526
- - [Retrieval Metrics](https://edai.notion.site/Retrieval-Metrics-dde3d9fa1d9547cdb8b31b94060d21e7?pvs=4)
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
- # 🛣Roadmap
514
+ Thanks go to these wonderful people:
531
515
 
532
- - [ ] Policy Module for modular RAG pipeline
533
- - [x] Visualize evaluation result
534
- - [ ] Visualize config yaml file
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://marker-inc-korea.github.io/AutoRAG/index.html).
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/evaluate/__init__.py
42
- autorag/evaluate/generation.py
43
- autorag/evaluate/retrieval.py
44
- autorag/evaluate/retrieval_contents.py
45
- autorag/evaluate/util.py
46
- autorag/evaluate/metric/__init__.py
47
- autorag/evaluate/metric/generation.py
48
- autorag/evaluate/metric/retrieval.py
49
- autorag/evaluate/metric/retrieval_contents.py
50
- autorag/evaluate/metric/util.py
51
- autorag/evaluate/metric/g_eval_prompts/coh_detailed.txt
52
- autorag/evaluate/metric/g_eval_prompts/con_detailed.txt
53
- autorag/evaluate/metric/g_eval_prompts/flu_detailed.txt
54
- autorag/evaluate/metric/g_eval_prompts/rel_detailed.txt
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.evaluate.metric.rst
173
- docs/source/api_spec/autorag.evaluate.rst
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