AutoRAG 0.2.18__tar.gz → 0.3.0__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 (618) hide show
  1. {autorag-0.2.18 → autorag-0.3.0}/AutoRAG.egg-info/PKG-INFO +238 -114
  2. {autorag-0.2.18 → autorag-0.3.0}/AutoRAG.egg-info/SOURCES.txt +82 -65
  3. {autorag-0.2.18 → autorag-0.3.0}/PKG-INFO +238 -114
  4. autorag-0.3.0/README.md +379 -0
  5. autorag-0.3.0/autorag/VERSION +1 -0
  6. {autorag-0.2.18/autorag/data → autorag-0.3.0/autorag/data/legacy}/qacreation/base.py +17 -5
  7. autorag-0.3.0/autorag/data/parse/__init__.py +1 -0
  8. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/filter/dontknow.py +1 -1
  9. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/generation_gt/llama_index_gen_gt.py +2 -2
  10. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/generation_gt/openai_gen_gt.py +2 -2
  11. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/query/llama_gen_query.py +1 -1
  12. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/query/openai_gen_query.py +1 -1
  13. {autorag-0.2.18 → autorag-0.3.0}/autorag/deploy.py +40 -29
  14. autorag-0.3.0/autorag/nodes/generator/__init__.py +3 -0
  15. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/generator/base.py +19 -0
  16. autorag-0.3.0/autorag/nodes/generator/llama_index_llm.py +81 -0
  17. autorag-0.3.0/autorag/nodes/generator/openai_llm.py +189 -0
  18. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/generator/run.py +9 -4
  19. autorag-0.3.0/autorag/nodes/generator/vllm.py +108 -0
  20. autorag-0.3.0/autorag/nodes/passageaugmenter/__init__.py +2 -0
  21. autorag-0.3.0/autorag/nodes/passageaugmenter/base.py +80 -0
  22. autorag-0.3.0/autorag/nodes/passageaugmenter/pass_passage_augmenter.py +43 -0
  23. autorag-0.3.0/autorag/nodes/passageaugmenter/prev_next_augmenter.py +152 -0
  24. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/passageaugmenter/run.py +11 -5
  25. autorag-0.3.0/autorag/nodes/passagecompressor/__init__.py +4 -0
  26. autorag-0.3.0/autorag/nodes/passagecompressor/base.py +83 -0
  27. autorag-0.3.0/autorag/nodes/passagecompressor/longllmlingua.py +105 -0
  28. autorag-0.3.0/autorag/nodes/passagecompressor/pass_compressor.py +16 -0
  29. autorag-0.3.0/autorag/nodes/passagecompressor/refine.py +54 -0
  30. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/passagecompressor/run.py +11 -6
  31. autorag-0.3.0/autorag/nodes/passagecompressor/tree_summarize.py +56 -0
  32. autorag-0.3.0/autorag/nodes/passagefilter/__init__.py +6 -0
  33. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/passagefilter/base.py +22 -8
  34. autorag-0.3.0/autorag/nodes/passagefilter/pass_passage_filter.py +14 -0
  35. autorag-0.3.0/autorag/nodes/passagefilter/percentile_cutoff.py +58 -0
  36. autorag-0.3.0/autorag/nodes/passagefilter/recency.py +97 -0
  37. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/passagefilter/run.py +9 -5
  38. autorag-0.3.0/autorag/nodes/passagefilter/similarity_percentile_cutoff.py +134 -0
  39. autorag-0.3.0/autorag/nodes/passagefilter/similarity_threshold_cutoff.py +109 -0
  40. autorag-0.3.0/autorag/nodes/passagefilter/threshold_cutoff.py +78 -0
  41. autorag-0.3.0/autorag/nodes/passagereranker/__init__.py +13 -0
  42. autorag-0.3.0/autorag/nodes/passagereranker/base.py +55 -0
  43. autorag-0.3.0/autorag/nodes/passagereranker/cohere.py +117 -0
  44. autorag-0.3.0/autorag/nodes/passagereranker/colbert.py +197 -0
  45. autorag-0.3.0/autorag/nodes/passagereranker/flag_embedding.py +105 -0
  46. autorag-0.3.0/autorag/nodes/passagereranker/flag_embedding_llm.py +97 -0
  47. autorag-0.3.0/autorag/nodes/passagereranker/jina.py +115 -0
  48. autorag-0.3.0/autorag/nodes/passagereranker/koreranker.py +130 -0
  49. autorag-0.3.0/autorag/nodes/passagereranker/monot5.py +177 -0
  50. autorag-0.3.0/autorag/nodes/passagereranker/pass_reranker.py +31 -0
  51. autorag-0.3.0/autorag/nodes/passagereranker/rankgpt.py +171 -0
  52. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/passagereranker/run.py +9 -5
  53. autorag-0.3.0/autorag/nodes/passagereranker/sentence_transformer.py +119 -0
  54. autorag-0.3.0/autorag/nodes/passagereranker/tart/tart.py +131 -0
  55. autorag-0.3.0/autorag/nodes/passagereranker/time_reranker.py +72 -0
  56. autorag-0.3.0/autorag/nodes/passagereranker/upr.py +152 -0
  57. autorag-0.3.0/autorag/nodes/promptmaker/__init__.py +3 -0
  58. autorag-0.3.0/autorag/nodes/promptmaker/base.py +34 -0
  59. autorag-0.3.0/autorag/nodes/promptmaker/fstring.py +49 -0
  60. autorag-0.3.0/autorag/nodes/promptmaker/long_context_reorder.py +83 -0
  61. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/promptmaker/run.py +12 -10
  62. autorag-0.3.0/autorag/nodes/promptmaker/window_replacement.py +85 -0
  63. autorag-0.3.0/autorag/nodes/queryexpansion/__init__.py +4 -0
  64. autorag-0.3.0/autorag/nodes/queryexpansion/base.py +62 -0
  65. autorag-0.3.0/autorag/nodes/queryexpansion/hyde.py +43 -0
  66. autorag-0.3.0/autorag/nodes/queryexpansion/multi_query_expansion.py +57 -0
  67. autorag-0.3.0/autorag/nodes/queryexpansion/pass_query_expansion.py +22 -0
  68. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/queryexpansion/query_decompose.py +39 -34
  69. autorag-0.3.0/autorag/nodes/queryexpansion/run.py +276 -0
  70. autorag-0.3.0/autorag/nodes/retrieval/__init__.py +4 -0
  71. autorag-0.3.0/autorag/nodes/retrieval/base.py +127 -0
  72. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/retrieval/bm25.py +116 -70
  73. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/retrieval/hybrid_cc.py +64 -3
  74. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/retrieval/hybrid_rrf.py +52 -8
  75. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/retrieval/run.py +26 -14
  76. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/retrieval/vectordb.py +135 -70
  77. autorag-0.3.0/autorag/nodes/util.py +16 -0
  78. {autorag-0.2.18 → autorag-0.3.0}/autorag/schema/__init__.py +1 -0
  79. autorag-0.3.0/autorag/schema/base.py +35 -0
  80. autorag-0.3.0/autorag/support.py +195 -0
  81. {autorag-0.2.18 → autorag-0.3.0}/autorag/utils/util.py +22 -0
  82. autorag-0.3.0/docs/source/api_spec/autorag.data.legacy.corpus.rst +29 -0
  83. autorag-0.3.0/docs/source/api_spec/autorag.data.legacy.qacreation.rst +45 -0
  84. autorag-0.3.0/docs/source/api_spec/autorag.data.legacy.rst +19 -0
  85. autorag-0.3.0/docs/source/api_spec/autorag.data.qa.filter.rst +29 -0
  86. autorag-0.3.0/docs/source/api_spec/autorag.data.qa.generation_gt.rst +45 -0
  87. autorag-0.3.0/docs/source/api_spec/autorag.data.qa.query.rst +37 -0
  88. autorag-0.3.0/docs/source/api_spec/autorag.data.qa.rst +47 -0
  89. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.rst +2 -3
  90. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.rst +11 -0
  91. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.schema.rst +8 -0
  92. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/data_creation.md +1 -1
  93. {autorag-0.2.18/docs/source/data_creation → autorag-0.3.0/docs/source/data_creation/legacy}/ragas.md +4 -4
  94. {autorag-0.2.18/docs/source/data_creation → autorag-0.3.0/docs/source/data_creation/legacy}/tutorial.md +17 -17
  95. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/qa_creation/answer_gen.md +8 -8
  96. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/qa_creation/filter.md +12 -12
  97. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/qa_creation/qa_creation.md +14 -14
  98. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/qa_creation/query_gen.md +12 -12
  99. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/tutorial.md +8 -8
  100. autorag-0.3.0/docs/source/migration.md +39 -0
  101. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/sentence_transformer_reranker.md +1 -1
  102. {autorag-0.2.18 → autorag-0.3.0}/pyproject.toml +1 -2
  103. autorag-0.3.0/sample_config/chunk/chunk_full.yaml +32 -0
  104. autorag-0.2.18/sample_config/chunk/chunk_full.yaml → autorag-0.3.0/sample_config/chunk/chunk_ko.yaml +6 -10
  105. autorag-0.3.0/sample_config/chunk/simple_chunk.yaml +3 -0
  106. autorag-0.3.0/sample_config/parse/parse_ko.yaml +6 -0
  107. autorag-0.3.0/sample_config/parse/parse_ocr.yaml +7 -0
  108. autorag-0.3.0/sample_config/parse/simple_parse.yaml +3 -0
  109. {autorag-0.2.18/tests/autorag/data → autorag-0.3.0/tests/autorag/data/legacy}/corpus/test_langchain.py +2 -2
  110. {autorag-0.2.18/tests/autorag/data → autorag-0.3.0/tests/autorag/data/legacy}/corpus/test_llama_index_corpus.py +5 -2
  111. {autorag-0.2.18/tests/autorag/data → autorag-0.3.0/tests/autorag/data/legacy}/qacreation/test_base_qacreation.py +2 -2
  112. {autorag-0.2.18/tests/autorag/data → autorag-0.3.0/tests/autorag/data/legacy}/qacreation/test_llama_index_qacreation.py +2 -2
  113. {autorag-0.2.18/tests/autorag/data → autorag-0.3.0/tests/autorag/data/legacy}/qacreation/test_ragas_qa_creation.py +2 -2
  114. {autorag-0.2.18/tests/autorag/data → autorag-0.3.0/tests/autorag/data/legacy}/qacreation/test_simple.py +6 -3
  115. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/parse/test_clova.py +1 -1
  116. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/parse/test_llamaparse.py +1 -1
  117. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/parse/test_table_hybrid_parse.py +1 -1
  118. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/filter/test_dontknow.py +2 -2
  119. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/generation_gt/base_test_generation_gt.py +1 -1
  120. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/generation_gt/test_llama_index_gen_gt.py +3 -3
  121. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/generation_gt/test_openai_gen_gt.py +3 -3
  122. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/query/test_llama_gen_query.py +3 -3
  123. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/query/test_openai_gen_query.py +3 -3
  124. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/test_data_creation_piepline.py +5 -5
  125. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/test_sample.py +2 -2
  126. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/test_schema.py +2 -2
  127. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/generator/test_llama_index_llm.py +11 -5
  128. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/generator/test_openai.py +20 -15
  129. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/generator/test_run_generator_node.py +2 -2
  130. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/generator/test_vllm.py +3 -2
  131. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passageaugmenter/test_pass_passage_augmenter.py +2 -2
  132. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passageaugmenter/test_prev_next_augmenter.py +16 -18
  133. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passageaugmenter/test_run_passage_augmenter.py +3 -3
  134. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagecompressor/test_longllmlingua.py +4 -3
  135. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagecompressor/test_pass_compressor.py +2 -2
  136. autorag-0.3.0/tests/autorag/nodes/passagecompressor/test_refine.py +82 -0
  137. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagecompressor/test_run_passage_compressor_node.py +4 -3
  138. autorag-0.3.0/tests/autorag/nodes/passagecompressor/test_tree_summarize.py +88 -0
  139. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagefilter/test_pass_passage_filter.py +2 -2
  140. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagefilter/test_passage_filter_run.py +3 -3
  141. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagefilter/test_percentile_cutoff.py +16 -8
  142. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagefilter/test_recency_filter.py +19 -17
  143. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagefilter/test_similarity_percentile_cutoff.py +18 -6
  144. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagefilter/test_similarity_threshold_cutoff.py +13 -6
  145. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagefilter/test_threshold_cutoff.py +18 -15
  146. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_cohere_reranker.py +12 -8
  147. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_colbert_reranker.py +16 -15
  148. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_flag_embedding.py +16 -14
  149. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_flag_embedding_llm.py +19 -18
  150. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_jina_reranker.py +23 -17
  151. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_koreranker.py +12 -11
  152. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_monot5.py +12 -11
  153. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_pass_reranker.py +2 -2
  154. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_passage_reranker_run.py +3 -3
  155. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_rankgpt.py +21 -11
  156. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_sentence_transformer.py +15 -11
  157. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_tart.py +13 -11
  158. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_time_reranker.py +11 -5
  159. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_upr.py +10 -7
  160. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/promptmaker/test_fstring.py +11 -5
  161. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/promptmaker/test_long_context_reorder.py +11 -5
  162. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/promptmaker/test_prompt_maker_run.py +12 -8
  163. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/promptmaker/test_window_replacement.py +9 -5
  164. autorag-0.3.0/tests/autorag/nodes/queryexpansion/test_hyde.py +34 -0
  165. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/queryexpansion/test_multi_query_expansion.py +15 -9
  166. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/queryexpansion/test_pass_query_expansion.py +2 -2
  167. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/queryexpansion/test_query_decompose.py +12 -9
  168. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/queryexpansion/test_query_expansion_run.py +12 -10
  169. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/retrieval/test_bm25.py +31 -38
  170. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/retrieval/test_hybrid_cc.py +42 -4
  171. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/retrieval/test_hybrid_rrf.py +6 -9
  172. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/retrieval/test_run_retrieval_node.py +5 -5
  173. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/retrieval/test_vectordb.py +42 -25
  174. autorag-0.3.0/tests/autorag/schema/test_base.py +38 -0
  175. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/schema/test_node_schema.py +4 -4
  176. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_deploy.py +0 -1
  177. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_evaluator.py +28 -17
  178. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_support.py +1 -1
  179. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/utils/test_util.py +66 -0
  180. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/full.yaml +4 -27
  181. autorag-0.3.0/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/link_lists.bin +0 -0
  182. autorag-0.2.18/README.md +0 -254
  183. autorag-0.2.18/autorag/VERSION +0 -1
  184. autorag-0.2.18/autorag/data/parse/__init__.py +0 -4
  185. autorag-0.2.18/autorag/nodes/generator/__init__.py +0 -3
  186. autorag-0.2.18/autorag/nodes/generator/llama_index_llm.py +0 -37
  187. autorag-0.2.18/autorag/nodes/generator/openai_llm.py +0 -180
  188. autorag-0.2.18/autorag/nodes/generator/vllm.py +0 -95
  189. autorag-0.2.18/autorag/nodes/passageaugmenter/__init__.py +0 -2
  190. autorag-0.2.18/autorag/nodes/passageaugmenter/base.py +0 -124
  191. autorag-0.2.18/autorag/nodes/passageaugmenter/pass_passage_augmenter.py +0 -17
  192. autorag-0.2.18/autorag/nodes/passageaugmenter/prev_next_augmenter.py +0 -66
  193. autorag-0.2.18/autorag/nodes/passagecompressor/__init__.py +0 -4
  194. autorag-0.2.18/autorag/nodes/passagecompressor/base.py +0 -89
  195. autorag-0.2.18/autorag/nodes/passagecompressor/longllmlingua.py +0 -93
  196. autorag-0.2.18/autorag/nodes/passagecompressor/pass_compressor.py +0 -9
  197. autorag-0.2.18/autorag/nodes/passagecompressor/refine.py +0 -62
  198. autorag-0.2.18/autorag/nodes/passagecompressor/tree_summarize.py +0 -64
  199. autorag-0.2.18/autorag/nodes/passagefilter/__init__.py +0 -6
  200. autorag-0.2.18/autorag/nodes/passagefilter/pass_passage_filter.py +0 -17
  201. autorag-0.2.18/autorag/nodes/passagefilter/percentile_cutoff.py +0 -52
  202. autorag-0.2.18/autorag/nodes/passagefilter/recency.py +0 -75
  203. autorag-0.2.18/autorag/nodes/passagefilter/similarity_percentile_cutoff.py +0 -120
  204. autorag-0.2.18/autorag/nodes/passagefilter/similarity_threshold_cutoff.py +0 -96
  205. autorag-0.2.18/autorag/nodes/passagefilter/threshold_cutoff.py +0 -73
  206. autorag-0.2.18/autorag/nodes/passagereranker/__init__.py +0 -13
  207. autorag-0.2.18/autorag/nodes/passagereranker/base.py +0 -77
  208. autorag-0.2.18/autorag/nodes/passagereranker/cohere.py +0 -97
  209. autorag-0.2.18/autorag/nodes/passagereranker/colbert.py +0 -162
  210. autorag-0.2.18/autorag/nodes/passagereranker/flag_embedding.py +0 -81
  211. autorag-0.2.18/autorag/nodes/passagereranker/flag_embedding_llm.py +0 -68
  212. autorag-0.2.18/autorag/nodes/passagereranker/jina.py +0 -99
  213. autorag-0.2.18/autorag/nodes/passagereranker/koreranker.py +0 -112
  214. autorag-0.2.18/autorag/nodes/passagereranker/monot5.py +0 -148
  215. autorag-0.2.18/autorag/nodes/passagereranker/pass_reranker.py +0 -21
  216. autorag-0.2.18/autorag/nodes/passagereranker/rankgpt.py +0 -125
  217. autorag-0.2.18/autorag/nodes/passagereranker/sentence_transformer.py +0 -80
  218. autorag-0.2.18/autorag/nodes/passagereranker/tart/tart.py +0 -114
  219. autorag-0.2.18/autorag/nodes/passagereranker/time_reranker.py +0 -50
  220. autorag-0.2.18/autorag/nodes/passagereranker/upr.py +0 -125
  221. autorag-0.2.18/autorag/nodes/promptmaker/__init__.py +0 -3
  222. autorag-0.2.18/autorag/nodes/promptmaker/base.py +0 -57
  223. autorag-0.2.18/autorag/nodes/promptmaker/fstring.py +0 -34
  224. autorag-0.2.18/autorag/nodes/promptmaker/long_context_reorder.py +0 -67
  225. autorag-0.2.18/autorag/nodes/promptmaker/window_replacement.py +0 -57
  226. autorag-0.2.18/autorag/nodes/queryexpansion/__init__.py +0 -4
  227. autorag-0.2.18/autorag/nodes/queryexpansion/base.py +0 -70
  228. autorag-0.2.18/autorag/nodes/queryexpansion/hyde.py +0 -40
  229. autorag-0.2.18/autorag/nodes/queryexpansion/multi_query_expansion.py +0 -58
  230. autorag-0.2.18/autorag/nodes/queryexpansion/pass_query_expansion.py +0 -13
  231. autorag-0.2.18/autorag/nodes/queryexpansion/run.py +0 -267
  232. autorag-0.2.18/autorag/nodes/retrieval/__init__.py +0 -5
  233. autorag-0.2.18/autorag/nodes/retrieval/base.py +0 -190
  234. autorag-0.2.18/autorag/support.py +0 -129
  235. autorag-0.2.18/tests/autorag/nodes/passagecompressor/test_refine.py +0 -60
  236. autorag-0.2.18/tests/autorag/nodes/passagecompressor/test_tree_summarize.py +0 -62
  237. autorag-0.2.18/tests/autorag/nodes/queryexpansion/test_hyde.py +0 -26
  238. {autorag-0.2.18 → autorag-0.3.0}/.github/FUNDING.yml +0 -0
  239. {autorag-0.2.18 → autorag-0.3.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  240. {autorag-0.2.18 → autorag-0.3.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  241. {autorag-0.2.18 → autorag-0.3.0}/.github/dependabot.yml +0 -0
  242. {autorag-0.2.18 → autorag-0.3.0}/.github/workflows/publish.yml +0 -0
  243. {autorag-0.2.18 → autorag-0.3.0}/.github/workflows/sphinx.yml +0 -0
  244. {autorag-0.2.18 → autorag-0.3.0}/.github/workflows/test.yml +0 -0
  245. {autorag-0.2.18 → autorag-0.3.0}/.gitignore +0 -0
  246. {autorag-0.2.18 → autorag-0.3.0}/.pre-commit-config.yaml +0 -0
  247. {autorag-0.2.18 → autorag-0.3.0}/AutoRAG.egg-info/dependency_links.txt +0 -0
  248. {autorag-0.2.18 → autorag-0.3.0}/AutoRAG.egg-info/entry_points.txt +0 -0
  249. {autorag-0.2.18 → autorag-0.3.0}/AutoRAG.egg-info/requires.txt +0 -0
  250. {autorag-0.2.18 → autorag-0.3.0}/AutoRAG.egg-info/top_level.txt +0 -0
  251. {autorag-0.2.18 → autorag-0.3.0}/CODE_OF_CONDUCT.md +0 -0
  252. {autorag-0.2.18 → autorag-0.3.0}/CONTRIBUTING.md +0 -0
  253. {autorag-0.2.18 → autorag-0.3.0}/LICENSE +0 -0
  254. {autorag-0.2.18 → autorag-0.3.0}/autorag/__init__.py +0 -0
  255. {autorag-0.2.18 → autorag-0.3.0}/autorag/chunker.py +0 -0
  256. {autorag-0.2.18 → autorag-0.3.0}/autorag/cli.py +0 -0
  257. {autorag-0.2.18 → autorag-0.3.0}/autorag/dashboard.py +0 -0
  258. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/__init__.py +0 -0
  259. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/chunk/__init__.py +0 -0
  260. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/chunk/base.py +0 -0
  261. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/chunk/langchain_chunk.py +0 -0
  262. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/chunk/llama_index_chunk.py +0 -0
  263. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/chunk/run.py +0 -0
  264. {autorag-0.2.18/autorag/data/beta/filter → autorag-0.3.0/autorag/data/legacy}/__init__.py +0 -0
  265. {autorag-0.2.18/autorag/data → autorag-0.3.0/autorag/data/legacy}/corpus/__init__.py +0 -0
  266. {autorag-0.2.18/autorag/data → autorag-0.3.0/autorag/data/legacy}/corpus/langchain.py +0 -0
  267. {autorag-0.2.18/autorag/data → autorag-0.3.0/autorag/data/legacy}/corpus/llama_index.py +0 -0
  268. {autorag-0.2.18/autorag/data → autorag-0.3.0/autorag/data/legacy}/qacreation/__init__.py +0 -0
  269. {autorag-0.2.18/autorag/data → autorag-0.3.0/autorag/data/legacy}/qacreation/llama_index.py +0 -0
  270. {autorag-0.2.18/autorag/data → autorag-0.3.0/autorag/data/legacy}/qacreation/llama_index_default_prompt.txt +0 -0
  271. {autorag-0.2.18/autorag/data → autorag-0.3.0/autorag/data/legacy}/qacreation/ragas.py +0 -0
  272. {autorag-0.2.18/autorag/data → autorag-0.3.0/autorag/data/legacy}/qacreation/simple.py +0 -0
  273. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/parse/base.py +0 -0
  274. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/parse/clova.py +0 -0
  275. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/parse/langchain_parse.py +0 -0
  276. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/parse/llamaparse.py +0 -0
  277. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/parse/run.py +0 -0
  278. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/parse/table_hybrid_parse.py +0 -0
  279. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/__init__.py +0 -0
  280. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/extract_evidence.py +0 -0
  281. {autorag-0.2.18/autorag/data/beta/generation_gt → autorag-0.3.0/autorag/data/qa/filter}/__init__.py +0 -0
  282. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/filter/prompt.py +0 -0
  283. {autorag-0.2.18/autorag/data/beta/query → autorag-0.3.0/autorag/data/qa/generation_gt}/__init__.py +0 -0
  284. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/generation_gt/base.py +0 -0
  285. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/generation_gt/prompt.py +0 -0
  286. {autorag-0.2.18/autorag/data/utils → autorag-0.3.0/autorag/data/qa/query}/__init__.py +0 -0
  287. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/query/prompt.py +0 -0
  288. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/sample.py +0 -0
  289. {autorag-0.2.18/autorag/data/beta → autorag-0.3.0/autorag/data/qa}/schema.py +0 -0
  290. {autorag-0.2.18/autorag/nodes → autorag-0.3.0/autorag/data/utils}/__init__.py +0 -0
  291. {autorag-0.2.18 → autorag-0.3.0}/autorag/data/utils/util.py +0 -0
  292. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/__init__.py +0 -0
  293. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/generation.py +0 -0
  294. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/metric/__init__.py +0 -0
  295. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/metric/g_eval_prompts/coh_detailed.txt +0 -0
  296. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/metric/g_eval_prompts/con_detailed.txt +0 -0
  297. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/metric/g_eval_prompts/flu_detailed.txt +0 -0
  298. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/metric/g_eval_prompts/rel_detailed.txt +0 -0
  299. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/metric/generation.py +0 -0
  300. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/metric/retrieval.py +0 -0
  301. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/metric/retrieval_contents.py +0 -0
  302. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/metric/util.py +0 -0
  303. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/retrieval.py +0 -0
  304. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/retrieval_contents.py +0 -0
  305. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluation/util.py +0 -0
  306. {autorag-0.2.18 → autorag-0.3.0}/autorag/evaluator.py +0 -0
  307. {autorag-0.2.18 → autorag-0.3.0}/autorag/node_line.py +0 -0
  308. {autorag-0.2.18/autorag/nodes/passagereranker/tart → autorag-0.3.0/autorag/nodes}/__init__.py +0 -0
  309. /autorag-0.2.18/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/link_lists.bin → /autorag-0.3.0/autorag/nodes/passagereranker/tart/__init__.py +0 -0
  310. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/passagereranker/tart/modeling_enc_t5.py +0 -0
  311. {autorag-0.2.18 → autorag-0.3.0}/autorag/nodes/passagereranker/tart/tokenization_enc_t5.py +0 -0
  312. {autorag-0.2.18 → autorag-0.3.0}/autorag/parser.py +0 -0
  313. {autorag-0.2.18 → autorag-0.3.0}/autorag/schema/metricinput.py +0 -0
  314. {autorag-0.2.18 → autorag-0.3.0}/autorag/schema/module.py +0 -0
  315. {autorag-0.2.18 → autorag-0.3.0}/autorag/schema/node.py +0 -0
  316. {autorag-0.2.18 → autorag-0.3.0}/autorag/strategy.py +0 -0
  317. {autorag-0.2.18 → autorag-0.3.0}/autorag/utils/__init__.py +0 -0
  318. {autorag-0.2.18 → autorag-0.3.0}/autorag/utils/preprocess.py +0 -0
  319. {autorag-0.2.18 → autorag-0.3.0}/autorag/validator.py +0 -0
  320. {autorag-0.2.18 → autorag-0.3.0}/autorag/web.py +0 -0
  321. {autorag-0.2.18 → autorag-0.3.0}/docs/Makefile +0 -0
  322. {autorag-0.2.18 → autorag-0.3.0}/docs/make.bat +0 -0
  323. {autorag-0.2.18 → autorag-0.3.0}/docs/requirements.txt +0 -0
  324. {autorag-0.2.18 → autorag-0.3.0}/docs/source/CNAME +0 -0
  325. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/data_creation.png +0 -0
  326. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/data_folder.png +0 -0
  327. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/dcg.png +0 -0
  328. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/f1_score.png +0 -0
  329. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/map.png +0 -0
  330. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/mrr.png +0 -0
  331. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/ndcg.png +0 -0
  332. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/ndcg_formula.png +0 -0
  333. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/node_folder.png +0 -0
  334. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/node_line_folder.png +0 -0
  335. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/node_line_summary.png +0 -0
  336. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/node_lines.png +0 -0
  337. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/node_summary.png +0 -0
  338. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/normal_distribution.png +0 -0
  339. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/project_folder_example.png +0 -0
  340. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/project_folders.png +0 -0
  341. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/resources_folder.png +0 -0
  342. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/roadmap/RAG_paradigms.png +0 -0
  343. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/roadmap/advanced_RAG.png +0 -0
  344. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/roadmap/cycle.png +0 -0
  345. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/roadmap/merger.png +0 -0
  346. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/roadmap/node_line_modular.png +0 -0
  347. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/roadmap/policy.png +0 -0
  348. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/samsung_sundae.jpeg +0 -0
  349. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/score_fusion.png +0 -0
  350. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/trial_folder.png +0 -0
  351. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/trial_json.png +0 -0
  352. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/trial_summary.png +0 -0
  353. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/web_interface.png +0 -0
  354. {autorag-0.2.18 → autorag-0.3.0}/docs/source/_static/web_interface_gradio.png +0 -0
  355. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.beta.filter.rst +0 -0
  356. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.beta.generation_gt.rst +0 -0
  357. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.beta.query.rst +0 -0
  358. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.beta.rst +0 -0
  359. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.beta.schema.rst +0 -0
  360. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.chunk.rst +0 -0
  361. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.corpus.rst +0 -0
  362. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.parse.rst +0 -0
  363. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.qacreation.rst +0 -0
  364. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.data.utils.rst +0 -0
  365. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.evaluation.metric.rst +0 -0
  366. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.evaluation.rst +0 -0
  367. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.generator.rst +0 -0
  368. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.passageaugmenter.rst +0 -0
  369. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.passagecompressor.rst +0 -0
  370. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.passagefilter.rst +0 -0
  371. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.passagereranker.rst +0 -0
  372. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.passagereranker.tart.rst +0 -0
  373. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.promptmaker.rst +0 -0
  374. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.queryexpansion.rst +0 -0
  375. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.nodes.retrieval.rst +0 -0
  376. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.rst +0 -0
  377. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/autorag.utils.rst +0 -0
  378. {autorag-0.2.18 → autorag-0.3.0}/docs/source/api_spec/modules.rst +0 -0
  379. {autorag-0.2.18 → autorag-0.3.0}/docs/source/conf.py +0 -0
  380. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/chunk/chunk.md +0 -0
  381. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/chunk/langchain_chunk.md +0 -0
  382. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/chunk/llama_index_chunk.md +0 -0
  383. {autorag-0.2.18 → autorag-0.3.0}/docs/source/data_creation/data_format.md +0 -0
  384. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/parse/clova.md +0 -0
  385. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/parse/langchain_parse.md +0 -0
  386. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/parse/llama_parse.md +0 -0
  387. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/parse/parse.md +0 -0
  388. {autorag-0.2.18/docs/source/data_creation/beta → autorag-0.3.0/docs/source/data_creation}/parse/table_hybrid_parse.md +0 -0
  389. {autorag-0.2.18 → autorag-0.3.0}/docs/source/deploy/api_endpoint.md +0 -0
  390. {autorag-0.2.18 → autorag-0.3.0}/docs/source/deploy/web.md +0 -0
  391. {autorag-0.2.18 → autorag-0.3.0}/docs/source/evaluate_metrics/generation.md +0 -0
  392. {autorag-0.2.18 → autorag-0.3.0}/docs/source/evaluate_metrics/retrieval.md +0 -0
  393. {autorag-0.2.18 → autorag-0.3.0}/docs/source/evaluate_metrics/retrieval_contents.md +0 -0
  394. {autorag-0.2.18 → autorag-0.3.0}/docs/source/index.rst +0 -0
  395. {autorag-0.2.18 → autorag-0.3.0}/docs/source/install.md +0 -0
  396. {autorag-0.2.18 → autorag-0.3.0}/docs/source/local_model.md +0 -0
  397. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/generator/generator.md +0 -0
  398. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/generator/llama_index_llm.md +0 -0
  399. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/generator/openai_llm.md +0 -0
  400. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/generator/vllm.md +0 -0
  401. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/index.md +0 -0
  402. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_augmenter/passage_augmenter.md +0 -0
  403. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_augmenter/prev_next_augmenter.md +0 -0
  404. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_compressor/longllmlingua.md +0 -0
  405. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_compressor/passage_compressor.md +0 -0
  406. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_compressor/refine.md +0 -0
  407. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_compressor/tree_summarize.md +0 -0
  408. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_filter/passage_filter.md +0 -0
  409. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_filter/percentile_cutoff.md +0 -0
  410. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_filter/recency_filter.md +0 -0
  411. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_filter/similarity_percentile_cutoff.md +0 -0
  412. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_filter/similarity_threshold_cutoff.md +0 -0
  413. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_filter/threshold_cutoff.md +0 -0
  414. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/cohere.md +0 -0
  415. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/colbert.md +0 -0
  416. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/flag_embedding_llm_reranker.md +0 -0
  417. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/flag_embedding_reranker.md +0 -0
  418. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/jina_reranker.md +0 -0
  419. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/koreranker.md +0 -0
  420. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/monot5.md +0 -0
  421. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/passage_reranker.md +0 -0
  422. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/rankgpt.md +0 -0
  423. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/tart.md +0 -0
  424. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/time_reranker.md +0 -0
  425. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/passage_reranker/upr.md +0 -0
  426. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/prompt_maker/fstring.md +0 -0
  427. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/prompt_maker/long_context_reorder.md +0 -0
  428. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/prompt_maker/prompt_maker.md +0 -0
  429. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/prompt_maker/window_replacement.md +0 -0
  430. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/query_expansion/hyde.md +0 -0
  431. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/query_expansion/multi_query_expansion.md +0 -0
  432. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/query_expansion/query_decompose.md +0 -0
  433. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/query_expansion/query_expansion.md +0 -0
  434. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/retrieval/bm25.md +0 -0
  435. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/retrieval/hybrid_cc.md +0 -0
  436. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/retrieval/hybrid_rrf.md +0 -0
  437. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/retrieval/retrieval.md +0 -0
  438. {autorag-0.2.18 → autorag-0.3.0}/docs/source/nodes/retrieval/vectordb.md +0 -0
  439. {autorag-0.2.18 → autorag-0.3.0}/docs/source/optimization/custom_config.md +0 -0
  440. {autorag-0.2.18 → autorag-0.3.0}/docs/source/optimization/folder_structure.md +0 -0
  441. {autorag-0.2.18 → autorag-0.3.0}/docs/source/optimization/optimization.md +0 -0
  442. {autorag-0.2.18 → autorag-0.3.0}/docs/source/optimization/strategies.md +0 -0
  443. {autorag-0.2.18 → autorag-0.3.0}/docs/source/roadmap/modular_rag.md +0 -0
  444. {autorag-0.2.18 → autorag-0.3.0}/docs/source/structure.md +0 -0
  445. {autorag-0.2.18 → autorag-0.3.0}/docs/source/troubleshooting.md +0 -0
  446. {autorag-0.2.18 → autorag-0.3.0}/docs/source/tutorial.md +0 -0
  447. {autorag-0.2.18 → autorag-0.3.0}/requirements.txt +0 -0
  448. {autorag-0.2.18 → autorag-0.3.0}/sample_config/parse/parse_full.yaml +0 -0
  449. {autorag-0.2.18 → autorag-0.3.0}/sample_config/parse/parse_hybird.yaml +0 -0
  450. {autorag-0.2.18/sample_config → autorag-0.3.0/sample_config/rag/compact}/compact_local.yaml +0 -0
  451. {autorag-0.2.18/sample_config → autorag-0.3.0/sample_config/rag/compact}/compact_openai.yaml +0 -0
  452. {autorag-0.2.18/sample_config → autorag-0.3.0/sample_config/rag}/config_korean.yaml +0 -0
  453. {autorag-0.2.18/sample_config → autorag-0.3.0/sample_config/rag}/extracted_sample.yaml +0 -0
  454. {autorag-0.2.18/sample_config → autorag-0.3.0/sample_config/rag}/full.yaml +0 -0
  455. {autorag-0.2.18/sample_config → autorag-0.3.0/sample_config/rag/simple}/simple_local.yaml +0 -0
  456. {autorag-0.2.18/sample_config → autorag-0.3.0/sample_config/rag/simple}/simple_ollama.yaml +0 -0
  457. {autorag-0.2.18/sample_config → autorag-0.3.0/sample_config/rag/simple}/simple_openai.yaml +0 -0
  458. {autorag-0.2.18 → autorag-0.3.0}/sample_dataset/README.md +0 -0
  459. {autorag-0.2.18 → autorag-0.3.0}/sample_dataset/eli5/load_eli5_dataset.py +0 -0
  460. {autorag-0.2.18 → autorag-0.3.0}/sample_dataset/hotpotqa/load_hotpotqa_dataset.py +0 -0
  461. {autorag-0.2.18 → autorag-0.3.0}/sample_dataset/msmarco/load_msmarco_dataset.py +0 -0
  462. {autorag-0.2.18 → autorag-0.3.0}/sample_dataset/triviaqa/load_triviaqa_dataset.py +0 -0
  463. {autorag-0.2.18 → autorag-0.3.0}/setup.cfg +0 -0
  464. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/chunk/test_chunk_base.py +0 -0
  465. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/chunk/test_chunk_run.py +0 -0
  466. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/chunk/test_langchain_chunk.py +0 -0
  467. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/chunk/test_llama_index_chunk.py +0 -0
  468. {autorag-0.2.18/tests/autorag/data → autorag-0.3.0/tests/autorag/data/legacy}/corpus/test_base.py +0 -0
  469. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/parse/test_langchain_parse.py +0 -0
  470. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/parse/test_parse_base.py +0 -0
  471. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/data/parse/test_parse_run.py +0 -0
  472. {autorag-0.2.18/tests/autorag/data/beta → autorag-0.3.0/tests/autorag/data/qa}/query/base_test_query_gen.py +0 -0
  473. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/evaluate/metric/test_generation_metric.py +0 -0
  474. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/evaluate/metric/test_retrieval_contents_metric.py +0 -0
  475. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/evaluate/metric/test_retrieval_metric.py +0 -0
  476. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/evaluate/test_evaluate_util.py +0 -0
  477. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/evaluate/test_generation_evaluate.py +0 -0
  478. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/evaluate/test_retrieval_contents_evaluate.py +0 -0
  479. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/evaluate/test_retrieval_evaluate.py +0 -0
  480. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/generator/test_generator_base.py +0 -0
  481. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passageaugmenter/test_base_passage_augmenter.py +0 -0
  482. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagecompressor/test_base_passage_compressor.py +0 -0
  483. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagefilter/test_passage_filter_base.py +0 -0
  484. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/passagereranker/test_passage_reranker_base.py +0 -0
  485. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/promptmaker/test_prompt_maker_base.py +0 -0
  486. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/queryexpansion/test_query_expansion_base.py +0 -0
  487. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/retrieval/test_hybrid_base.py +0 -0
  488. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/nodes/retrieval/test_retrieval_base.py +0 -0
  489. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/schema/test_metricinput_schema.py +0 -0
  490. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/schema/test_module_schema.py +0 -0
  491. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_chunker.py +0 -0
  492. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_cli.py +0 -0
  493. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_dashboard.py +0 -0
  494. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_parser.py +0 -0
  495. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_strategy.py +0 -0
  496. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_validator.py +0 -0
  497. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/test_web.py +0 -0
  498. {autorag-0.2.18 → autorag-0.3.0}/tests/autorag/utils/test_preprocess.py +0 -0
  499. {autorag-0.2.18 → autorag-0.3.0}/tests/conftest.py +0 -0
  500. {autorag-0.2.18 → autorag-0.3.0}/tests/delete_tests.py +0 -0
  501. {autorag-0.2.18 → autorag-0.3.0}/tests/mock.py +0 -0
  502. {autorag-0.2.18 → autorag-0.3.0}/tests/requirements.txt +0 -0
  503. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/README.md +0 -0
  504. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/chunk_data/sample_parsed.parquet +0 -0
  505. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/corpus_data_sample.parquet +0 -0
  506. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/data_creation/raw_dir/sample1.txt +0 -0
  507. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/data_creation/raw_dir/sample2.txt +0 -0
  508. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/data_creation/raw_dir/sample3.txt +0 -0
  509. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/all_files/baseball_1.pdf +0 -0
  510. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/all_files/csv_sample.csv +0 -0
  511. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/clova_data/result_sample.json +0 -0
  512. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/clova_data/result_table.txt +0 -0
  513. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/clova_data/result_text.txt +0 -0
  514. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/csv_data/csv_sample.csv +0 -0
  515. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/eng_text/baseball_1.pdf +0 -0
  516. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/eng_text/baseball_2.pdf +0 -0
  517. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/html_data/html_sample.html +0 -0
  518. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/hybrid_data/nfl_rulebook_both.pdf +0 -0
  519. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/json_data/json_sample.json +0 -0
  520. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/korean_table/only_table/kbo_only_table.pdf +0 -0
  521. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/korean_table/table_text/kbo_table_text.pdf +0 -0
  522. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/korean_text/korean_texts_two_page.pdf +0 -0
  523. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/markdown_data/markdown_sample.md +0 -0
  524. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/parse_data/xml_data/xml_sample.xml +0 -0
  525. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/qa_data_sample.parquet +0 -0
  526. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/qa_gen_prompts/prompt1.txt +0 -0
  527. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/qa_gen_prompts/prompt2.txt +0 -0
  528. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/qa_gen_prompts/prompt3.txt +0 -0
  529. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/qa_test_data_sample.parquet +0 -0
  530. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/config.yaml +0 -0
  531. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/generator/0.parquet +0 -0
  532. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/generator/1.parquet +0 -0
  533. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/generator/2.parquet +0 -0
  534. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/generator/3.parquet +0 -0
  535. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/generator/4.parquet +0 -0
  536. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/generator/5.parquet +0 -0
  537. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/generator/best_5.parquet +0 -0
  538. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/generator/summary.csv +0 -0
  539. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/0.parquet +0 -0
  540. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/1.parquet +0 -0
  541. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/best_0.parquet +0 -0
  542. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/prompt_maker/summary.csv +0 -0
  543. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/post_retrieve_node_line/summary.csv +0 -0
  544. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
  545. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
  546. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
  547. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
  548. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
  549. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/pre_retrieve_node_line/summary.csv +0 -0
  550. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/0.parquet +0 -0
  551. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/best_0.parquet +0 -0
  552. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/passage_compressor/summary.csv +0 -0
  553. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/0.parquet +0 -0
  554. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/1.parquet +0 -0
  555. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
  556. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/passage_reranker/summary.csv +0 -0
  557. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/retrieval/0.parquet +0 -0
  558. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/retrieval/1.parquet +0 -0
  559. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/retrieval/best_0.parquet +0 -0
  560. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/retrieval/summary.csv +0 -0
  561. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/retrieve_node_line/summary.csv +0 -0
  562. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/0/summary.csv +0 -0
  563. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/config.yaml +0 -0
  564. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
  565. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
  566. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
  567. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
  568. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
  569. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/pre_retrieve_node_line/summary.csv +0 -0
  570. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/retrieve_node_line/passage_filter/0.parquet +0 -0
  571. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/0.parquet +0 -0
  572. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/1.parquet +0 -0
  573. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
  574. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/retrieve_node_line/passage_reranker/summary.csv +0 -0
  575. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/retrieve_node_line/retrieval/0.parquet +0 -0
  576. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/retrieve_node_line/retrieval/1.parquet +0 -0
  577. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/retrieve_node_line/retrieval/best_0.parquet +0 -0
  578. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/1/retrieve_node_line/retrieval/summary.csv +0 -0
  579. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/config.yaml +0 -0
  580. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/post_retrieve_node_line/prompt_maker/0.parquet +0 -0
  581. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/0.parquet +0 -0
  582. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/1.parquet +0 -0
  583. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/2.parquet +0 -0
  584. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/best_0.parquet +0 -0
  585. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/pre_retrieve_node_line/query_expansion/summary.csv +0 -0
  586. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/pre_retrieve_node_line/summary.csv +0 -0
  587. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/0.parquet +0 -0
  588. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/best_0.parquet +0 -0
  589. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/passage_compressor/summary.csv +0 -0
  590. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/0.parquet +0 -0
  591. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/1.parquet +0 -0
  592. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/best_0.parquet +0 -0
  593. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/passage_reranker/summary.csv +0 -0
  594. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/retrieval/0.parquet +0 -0
  595. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/retrieval/1.parquet +0 -0
  596. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/retrieval/best_0.parquet +0 -0
  597. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/retrieval/summary.csv +0 -0
  598. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/2/retrieve_node_line/summary.csv +0 -0
  599. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/3/config.yaml +0 -0
  600. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/best.yaml +0 -0
  601. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/data/corpus.parquet +0 -0
  602. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/data/qa.parquet +0 -0
  603. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/resources/bm25_porter_stemmer.pkl +0 -0
  604. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/data_level0.bin +0 -0
  605. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/header.bin +0 -0
  606. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/resources/chroma/6595d304-5270-4d9f-a267-c191366804ce/length.bin +0 -0
  607. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/resources/chroma/chroma.sqlite3 +0 -0
  608. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/result_project/trial.json +0 -0
  609. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/sample_contents_nqa.csv +0 -0
  610. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/sample_project/data/corpus.parquet +0 -0
  611. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/sample_project/data/qa.parquet +0 -0
  612. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/sample_project/resources/bm25_gpt2.pkl +0 -0
  613. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/sample_project/resources/bm25_porter_stemmer.pkl +0 -0
  614. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/simple.yaml +0 -0
  615. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/simple_chunk.yaml +0 -0
  616. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/simple_mock.yaml +0 -0
  617. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/simple_parse.yaml +0 -0
  618. {autorag-0.2.18 → autorag-0.3.0}/tests/resources/test_bm25_retrieval.pkl +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: AutoRAG
3
- Version: 0.2.18
3
+ Version: 0.3.0
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,14 +210,13 @@ 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.9
214
213
  Classifier: Programming Language :: Python :: 3.10
215
214
  Classifier: Programming Language :: Python :: 3.11
216
215
  Classifier: Programming Language :: Python :: 3.12
217
216
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
218
217
  Classifier: Topic :: Software Development :: Libraries
219
218
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
220
- Requires-Python: >=3.8
219
+ Requires-Python: >=3.10
221
220
  Description-Content-Type: text/markdown
222
221
  License-File: LICENSE
223
222
  Requires-Dist: numpy<2.0.0
@@ -293,19 +292,27 @@ Requires-Dist: AutoRAG[parse]; extra == "all"
293
292
 
294
293
  RAG AutoML tool for automatically finds an optimal RAG pipeline for your data.
295
294
 
296
- Explore our 📖 [Document](https://docs.auto-rag.com)!!
295
+ ![Thumbnail](https://github.com/user-attachments/assets/6bab243d-a4b3-431a-8ac0-fe17336ab4de)
297
296
 
298
- Plus, join our 📞 [Discord](https://discord.gg/P4DYXfmSAs) Community.
297
+ There are many RAG pipelines and modules out there,
298
+ but you don’t know what pipeline is great for “your own data” and "your own use-case."
299
+ Making and evaluating all RAG modules is very time-consuming and hard to do.
300
+ But without it, you will never know which RAG pipeline is the best for your own use-case.
299
301
 
300
- ---
302
+ AutoRAG is a tool for finding optimal RAG pipeline for “your data.”
303
+ You can evaluate various RAG modules automatically with your own evaluation data,
304
+ and find the best RAG pipeline for your own use-case.
301
305
 
302
- ### 💪 Colab Tutorial
306
+ AutoRAG supports a simple way to evaluate many RAG module combinations.
307
+ Try now and find the best RAG pipeline for your own use-case.
303
308
 
304
- - [Step 1: Basic of AutoRAG | Optimizing your RAG pipeline](https://colab.research.google.com/drive/19OEQXO_pHN6gnn2WdfPd4hjnS-4GurVd?usp=sharing)
309
+ Explore our 📖 [Document](https://docs.auto-rag.com)!!
310
+
311
+ Plus, join our 📞 [Discord](https://discord.gg/P4DYXfmSAs) Community.
305
312
 
306
313
  ---
307
314
 
308
- ### 🚨 YouTube Tutorial
315
+ ## YouTube Tutorial
309
316
 
310
317
  https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/c0d23896-40c0-479f-a17b-aa2ec3183a26
311
318
 
@@ -313,85 +320,168 @@ _Muted by default, enable sound for voice-over_
313
320
 
314
321
  You can see on [YouTube](https://youtu.be/2ojK8xjyXAU?feature=shared)
315
322
 
316
- ---
323
+ ## Colab Tutorial
317
324
 
318
- ### ☎️ FaQ
325
+ - [Step 1: Basic of AutoRAG | Optimizing your RAG pipeline](https://colab.research.google.com/drive/19OEQXO_pHN6gnn2WdfPd4hjnS-4GurVd?usp=sharing)
326
+ - [Step 2: Data Creation | Create your own Data for RAG Optimization](https://colab.research.google.com/drive/1BOdzMndYgMY_iqhwKcCCS7ezHbZ4Oz5X?usp=sharing)
327
+ - [Step 3: Use Custom LLM & Embedding Model | Use Custom Model](https://colab.research.google.com/drive/12VpWcSTSOsLSyW0BKb-kPoEzK22ACxvS?usp=sharing)
328
+
329
+ # Index
330
+
331
+ - [Quick Install](#quick-install)
332
+ - [Data Creation](#data-creation)
333
+ - [Parsing](#1-parsing)
334
+ - [Chunking](#2-chunking)
335
+ - [QA Creation](#3-qa-creation)
336
+ - [RAG Optimization](#rag-optimization)
337
+ - [Set YAML File](#1-set-yaml-file)
338
+ - [Run AutoRAG](#2-run-autorag)
339
+ - [Run Dashboard](#3-run-dashboard)
340
+ - [Deploy your optimal RAG pipeline (for testing)](#4-deploy-your-optimal-rag-pipeline-for-testing)
341
+ - [Supporting Data Creation Modules](#-supporting-data-creation-modules)
342
+ - [Supporting RAG Optimization Nodes & modules](#supporting-rag-optimization-nodes--modules)
343
+ - [Supporting Evaluation Metrics](#supporting-evaluation-metrics)
344
+ - [FaQ](#-faq)
345
+
346
+ # Quick Install
347
+
348
+ We recommend using Python version 3.10 or higher for AutoRAG.
319
349
 
320
- 🛣️ [Support plans & Roadmap](https://edai.notion.site/Support-plans-Roadmap-02ca7c97376340c393885855e2d99630?pvs=4)
350
+ ```bash
351
+ pip install AutoRAG
352
+ ```
321
353
 
322
- 💻 [Hardware Specs](https://edai.notion.site/Hardware-specs-28cefcf2a26246ffadc91e2f3dc3d61c?pvs=4)
354
+ # Data Creation
323
355
 
324
- ⭐ [Running AutoRAG](https://edai.notion.site/About-running-AutoRAG-44a8058307af42068fc218a073ee480b?pvs=4)
356
+ ![image](https://github.com/user-attachments/assets/6079f696-207c-4221-8d28-5561a203dfe2)
325
357
 
326
- 🍯 [Tips/Tricks](https://edai.notion.site/Tips-Tricks-10708a0e36ff461cb8a5d4fb3279ff15?pvs=4)
358
+ RAG Optimization requires two types of data: QA dataset and Corpus dataset.
327
359
 
328
- ☎️ [TroubleShooting](https://medium.com/@autorag/autorag-troubleshooting-5cf872b100e3)
360
+ 1. **QA** dataset file (qa.parquet)
361
+ 2. **Corpus** dataset file (corpus.parquet)
329
362
 
330
- ---
363
+ **QA** dataset is important for accurate and reliable evaluation and optimization.
331
364
 
332
- # 😁 Introduction
365
+ **Corpus** dataset is critical to the performance of RAGs.
366
+ This is because RAG uses the corpus to retrieve documents and generate answers using it.
333
367
 
334
- There are many RAG pipelines and modules out there,
335
- but you don’t know what pipeline is great for “your own data” and "your own use-case."
336
- Making and evaluating all RAG modules is very time-consuming and hard to do.
337
- But without it, you will never know which RAG pipeline is the best for your own use-case.
368
+ ## Quick Start
338
369
 
339
- AutoRAG is a tool for finding optimal RAG pipeline for “your data.”
340
- You can evaluate various RAG modules automatically with your own evaluation data,
341
- and find the best RAG pipeline for your own use-case.
370
+ ### 1. Parsing
342
371
 
343
- AutoRAG supports a simple way to evaluate many RAG module combinations.
344
- Try now and find the best RAG pipeline for your own use-case.
372
+ #### Set YAML File
345
373
 
346
- # 📌AutoRAG Structure
374
+ ```yaml
375
+ modules:
376
+ - module_type: langchain_parse
377
+ parse_method: pdfminer
378
+ ```
347
379
 
348
- ![Node](https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/79dda7ba-e9d8-4552-9e7b-6a5f9edc4c1a)
380
+ You can also use multiple Parse modules at once.
381
+ However, in this case, you'll need to return a new process for each parsed result.
349
382
 
350
- ## ❗Supporting Nodes & modules
383
+ #### Start Parsing
351
384
 
352
- ![module_1](https://github.com/user-attachments/assets/d49cc7b4-56a6-4b5f-bb3d-2fc5b962996b)
353
- ![module_2](https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/4db3d83f-3178-4b81-bad1-b751dcd31a13)
354
- You can check our all supporting Nodes & modules
355
- at [here](https://edai.notion.site/Supporting-Nodes-modules-0ebc7810649f4e41aead472a92976be4?pvs=4)
385
+ You can parse your raw documents with just a few lines of code.
356
386
 
357
- ## ❗Supporting Evaluation Metrics
387
+ ```python
388
+ from autorag.parser import Parser
358
389
 
359
- ![Metrics](https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/9f090e3c-d762-41cb-9f1d-cd8d7da137dd)
390
+ parser = Parser(data_path_glob="your/data/path/*")
391
+ parser.start_parsing("your/path/to/parse_config.yaml")
392
+ ```
360
393
 
361
- You can check our all supporting Evaluation Metrics
362
- at [here](https://edai.notion.site/Supporting-metrics-867d71caefd7401c9264dd91ba406043?pvs=4)
394
+ ### 2. Chunking
363
395
 
364
- - [Retrieval Metrics](https://edai.notion.site/Retrieval-Metrics-dde3d9fa1d9547cdb8b31b94060d21e7?pvs=4)
365
- - [Retrieval Token Metrics](https://edai.notion.site/Retrieval-Token-Metrics-c3e2d83358e04510a34b80429ebb543f?pvs=4)
366
- - [Generation Metrics](https://edai.notion.site/Retrieval-Token-Metrics-c3e2d83358e04510a34b80429ebb543f?pvs=4)
396
+ #### Set YAML File
397
+
398
+ ```yaml
399
+ modules:
400
+ - module_type: llama_index_chunk
401
+ chunk_method: Token
402
+ chunk_size: 1024
403
+ chunk_overlap: 24
404
+ add_file_name: english
405
+ ```
367
406
 
368
- # ⚡ Quick Install
407
+ You can also use multiple Chunk modules at once.
408
+ In this case, you need to use one corpus to create QA, and then map the rest of the corpus to QA Data.
409
+ If the chunk method is different, the retrieval_gt will be different, so we need to remap it to the QA dataset.
369
410
 
370
- We recommend using Python version 3.9 or higher for AutoRAG.
411
+ #### Start Chunking
371
412
 
372
- ```bash
373
- pip install AutoRAG
413
+ You can chunk your parsed results with just a few lines of code.
414
+
415
+ ```python
416
+ from autorag.chunker import Chunker
417
+
418
+ chunker = Chunker.from_parquet(parsed_data_path="your/parsed/data/path")
419
+ chunker.start_chunking("your/path/to/chunk_config.yaml")
374
420
  ```
375
421
 
376
- # ⚡ QuickStart
422
+ ### 3. QA Creation
377
423
 
378
- ### 1. Prepare your evaluation data
424
+ You can create QA dataset with just a few lines of code.
379
425
 
380
- For evaluation, you need to prepare just three files.
426
+ ```python
427
+ import pandas as pd
428
+ from llama_index.llms.openai import OpenAI
429
+
430
+ from autorag.data.beta.filter.dontknow import dontknow_filter_rule_based
431
+ from autorag.data.beta.generation_gt.llama_index_gen_gt import (
432
+ make_basic_gen_gt,
433
+ make_concise_gen_gt,
434
+ )
435
+ from autorag.data.beta.schema import Raw, Corpus
436
+ from autorag.data.beta.query.llama_gen_query import factoid_query_gen
437
+ from autorag.data.beta.sample import random_single_hop
438
+
439
+ llm = OpenAI()
440
+ raw_df = pd.read_parquet("your/path/to/corpus.parquet")
441
+ raw_instance = Raw(raw_df)
442
+
443
+ corpus_df = pd.read_parquet("your/path/to/corpus.parquet")
444
+ corpus_instance = Corpus(corpus_df, raw_instance)
445
+
446
+ initial_qa = (
447
+ corpus_instance.sample(random_single_hop, n=3)
448
+ .map(
449
+ lambda df: df.reset_index(drop=True),
450
+ )
451
+ .make_retrieval_gt_contents()
452
+ .batch_apply(
453
+ factoid_query_gen, # query generation
454
+ llm=llm,
455
+ )
456
+ .batch_apply(
457
+ make_basic_gen_gt, # answer generation (basic)
458
+ llm=llm,
459
+ )
460
+ .batch_apply(
461
+ make_concise_gen_gt, # answer generation (concise)
462
+ llm=llm,
463
+ )
464
+ .filter(
465
+ dontknow_filter_rule_based, # filter don't know
466
+ lang="en",
467
+ )
468
+ )
469
+
470
+ initial_qa.to_parquet('./qa.parquet', './corpus.parquet')
471
+ ```
381
472
 
382
- 1. **QA** dataset file (qa.parquet)
383
- 2. **Corpus** dataset file (corpus.parquet)
384
- 3. **Config yaml file** (config.yaml)
473
+ # RAG Optimization
474
+ ![rag](https://github.com/user-attachments/assets/214d842e-fc67-4113-9c24-c94158b00c23)
475
+
476
+ ### How AutoRAG optimizes RAG pipeline?
385
477
 
386
- There is a template for your evaluation data for using AutoRAG.
478
+ ![rag_opt_gif](https://github.com/user-attachments/assets/55bd09cd-8420-4f6d-bc7d-0a66af288317)
387
479
 
388
- - Check out how to make evaluation data
389
- at [here](https://docs.auto-rag.com/data_creation/tutorial.html).
390
- - Check out the evaluation data rule
391
- at [here](https://docs.auto-rag.com/data_creation/data_format.html).
392
- - Plus, you can get example datasets for testing AutoRAG at [here](./sample_dataset).
480
+ ## Quick Start
393
481
 
394
- ### 2. Evaluate your data to various RAG modules
482
+ ### 1. Set YAML File
483
+
484
+ First, you need to set the config yaml file for your RAG optimization.
395
485
 
396
486
  You can get various config yaml files at [here](./sample_config).
397
487
  We highly recommend using pre-made config yaml files for starter.
@@ -399,6 +489,49 @@ We highly recommend using pre-made config yaml files for starter.
399
489
  If you want to make your own config yaml files, check out the [Config yaml file](#-create-your-own-config-yaml-file)
400
490
  section.
401
491
 
492
+ Here is an example of the config yaml file to use `retrieval`, `prompt_maker`, and `generator` nodes.
493
+
494
+ ```yaml
495
+ node_lines:
496
+ - node_line_name: retrieve_node_line # Set Node Line (Arbitrary Name)
497
+ nodes:
498
+ - node_type: retrieval # Set Retrieval Node
499
+ strategy:
500
+ metrics: [retrieval_f1, retrieval_recall, retrieval_ndcg, retrieval_mrr] # Set Retrieval Metrics
501
+ top_k: 3
502
+ modules:
503
+ - module_type: vectordb
504
+ embedding_model: openai
505
+ - module_type: bm25
506
+ - module_type: hybrid_rrf
507
+ weight_range: (4,80)
508
+ - node_line_name: post_retrieve_node_line # Set Node Line (Arbitrary Name)
509
+ nodes:
510
+ - node_type: prompt_maker # Set Prompt Maker Node
511
+ strategy:
512
+ metrics: # Set Generation Metrics
513
+ - metric_name: meteor
514
+ - metric_name: rouge
515
+ - metric_name: sem_score
516
+ embedding_model: openai
517
+ modules:
518
+ - module_type: fstring
519
+ prompt: "Read the passages and answer the given question. \n Question: {query} \n Passage: {retrieved_contents} \n Answer : "
520
+ - node_type: generator # Set Generator Node
521
+ strategy:
522
+ metrics: # Set Generation Metrics
523
+ - metric_name: meteor
524
+ - metric_name: rouge
525
+ - metric_name: sem_score
526
+ embedding_model: openai
527
+ modules:
528
+ - module_type: openai_llm
529
+ llm: gpt-4o-mini
530
+ batch: 16
531
+ ```
532
+
533
+ ### 2. Run AutoRAG
534
+
402
535
  You can evaluate your RAG pipeline with just a few lines of code.
403
536
 
404
537
  ```python
@@ -421,40 +554,7 @@ you can check `summary.csv` file that summarizes the evaluation results and the
421
554
  For more details, you can check out how the folder structure looks like
422
555
  at [here](https://docs.auto-rag.com/optimization/folder_structure.html).
423
556
 
424
- ### 3. Use a found optimal RAG pipeline
425
-
426
- You can use a found optimal RAG pipeline right away.
427
- It needs just a few lines of code, and you are ready to use!
428
-
429
- First, you need to build pipeline yaml file from your evaluated trial folder.
430
- You can find the trial folder in your current directory.
431
- Just looking folder like '0' or other numbers.
432
-
433
- ```python
434
- from autorag.deploy import Runner
435
-
436
- runner = Runner.from_trial_folder('your/path/to/trial_folder')
437
- runner.run('your question')
438
- ```
439
-
440
- Or, you can run this pipeline as api server.
441
- You can use python code or CLI command.
442
- Check out API endpoint at [here](https://docs.auto-rag.com/deploy/api_endpoint.html).
443
-
444
- ```python
445
- from autorag.deploy import Runner
446
-
447
- runner = Runner.from_trial_folder('your/path/to/trial_folder')
448
- runner.run_api_server()
449
- ```
450
-
451
- You can run api server with CLI command.
452
-
453
- ```bash
454
- autorag run_api --config_path your/path/to/pipeline.yaml --host 0.0.0.0 --port 8000
455
- ```
456
-
457
- ### 4. Run Dashboard
557
+ ### 3. Run Dashboard
458
558
 
459
559
  You can run dashboard to easily see the result.
460
560
 
@@ -462,27 +562,13 @@ You can run dashboard to easily see the result.
462
562
  autorag dashboard --trial_dir /your/path/to/trial_dir
463
563
  ```
464
564
 
465
- - sample dashboard:
565
+ #### sample dashboard
466
566
 
467
567
  ![dashboard](https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/3798827d-31d7-4c4e-a9b1-54340b964e53)
468
568
 
469
- ### 5. Share your RAG pipeline
470
-
471
- You can use your RAG pipeline from extracted pipeline yaml file.
472
- This extracted pipeline is great for sharing your RAG pipeline to others.
473
-
474
- You must run this at project folder, which contains datas in data folder, and ingested corpus for retrieval at resources
475
- folder.
476
-
477
- ```python
478
- from autorag.deploy import extract_best_config
479
-
480
- pipeline_dict = extract_best_config(trial_path='your/path/to/trial_folder', output_path='your/path/to/pipeline.yaml')
481
- ```
482
-
483
- ### 6. Deploy your optimal RAG pipeline (for testing)
569
+ ### 4. Deploy your optimal RAG pipeline (for testing)
484
570
 
485
- ### 6-1. Run as a CLI
571
+ ### 4-1. Run as a CLI
486
572
 
487
573
  You can use a found optimal RAG pipeline right away with extracted yaml file.
488
574
 
@@ -493,7 +579,7 @@ runner = Runner.from_yaml('your/path/to/pipeline.yaml')
493
579
  runner.run('your question')
494
580
  ```
495
581
 
496
- ### 6-2. Run as an API server
582
+ ### 4-2. Run as an API server
497
583
 
498
584
  You can run this pipeline as an API server.
499
585
 
@@ -510,7 +596,7 @@ runner.run_api_server()
510
596
  autorag run_api --config_path your/path/to/pipeline.yaml --host 0.0.0.0 --port 8000
511
597
  ```
512
598
 
513
- ### 6-3. Run as a Web Interface
599
+ ### 4-3. Run as a Web Interface
514
600
 
515
601
  you can run this pipeline as a web interface.
516
602
 
@@ -520,13 +606,51 @@ Check out web interface at [here](deploy/web.md).
520
606
  autorag run_web --trial_path your/path/to/trial_path
521
607
  ```
522
608
 
523
- - sample web interface:
609
+ #### sample web interface
524
610
 
525
611
  <img width="1491" alt="web_interface" src="https://github.com/Marker-Inc-Korea/AutoRAG/assets/96727832/f6b00353-f6bb-4d8f-8740-1c264c0acbb8">
526
612
 
527
- # ⭐ Star History ⭐
613
+ ## 📌 Supporting Data Creation Modules
614
+ ![Data Creation](https://github.com/user-attachments/assets/383876cc-0d02-4e5f-9528-87f36489640f)
615
+
616
+ - You can check our all Parsing Modules at [here](https://edai.notion.site/Supporting-Parse-Modules-e0b7579c7c0e4fb2963e408eeccddd75?pvs=4)
617
+ - You can check our all Chunk Modules at [here](https://edai.notion.site/Supporting-Chunk-Modules-8db803dba2ec4cd0a8789659106e86a3?pvs=4)
618
+
619
+ ## ❗Supporting RAG Optimization Nodes & modules
620
+
621
+ ![module_1](https://github.com/user-attachments/assets/c2e4c7d2-0f46-4b13-bb21-0ffc19cc9492)
622
+ ![module_2](https://github.com/user-attachments/assets/e013f04e-f69d-4dd7-96da-06e6b5921c3d)
623
+ ![module_3](https://github.com/user-attachments/assets/72490b97-81a1-4620-b9bd-5c5e0ead79a7)
624
+ ![module_4](https://github.com/user-attachments/assets/7a8ee260-9c60-4a27-b708-5286d1c37851)
625
+
626
+ You can check our all supporting Nodes & modules
627
+ at [here](https://edai.notion.site/Supporting-Nodes-modules-0ebc7810649f4e41aead472a92976be4?pvs=4)
628
+
629
+ ## ❗Supporting Evaluation Metrics
630
+
631
+ ![Metrics](https://github.com/user-attachments/assets/fab551cd-8892-4bda-acae-eff22ece94b3)
632
+
633
+ You can check our all supporting Evaluation Metrics
634
+ at [here](https://edai.notion.site/Supporting-metrics-867d71caefd7401c9264dd91ba406043?pvs=4)
635
+
636
+ - [Retrieval Metrics](https://edai.notion.site/Retrieval-Metrics-dde3d9fa1d9547cdb8b31b94060d21e7?pvs=4)
637
+ - [Retrieval Token Metrics](https://edai.notion.site/Retrieval-Token-Metrics-c3e2d83358e04510a34b80429ebb543f?pvs=4)
638
+ - [Generation Metrics](https://github.com/user-attachments/assets/7d4a3069-9186-4854-885d-ca0f7bcc17e8)
639
+
640
+
641
+ ## ☎️ FaQ
642
+
643
+ 🛣️ [Support plans & Roadmap](https://edai.notion.site/Support-plans-Roadmap-02ca7c97376340c393885855e2d99630?pvs=4)
644
+
645
+ 💻 [Hardware Specs](https://edai.notion.site/Hardware-specs-28cefcf2a26246ffadc91e2f3dc3d61c?pvs=4)
528
646
 
529
- [![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)
647
+ ⭐ [Running AutoRAG](https://edai.notion.site/About-running-AutoRAG-44a8058307af42068fc218a073ee480b?pvs=4)
648
+
649
+ 🍯 [Tips/Tricks](https://edai.notion.site/Tips-Tricks-10708a0e36ff461cb8a5d4fb3279ff15?pvs=4)
650
+
651
+ ☎️ [TroubleShooting](https://medium.com/@autorag/autorag-troubleshooting-5cf872b100e3)
652
+
653
+ ---
530
654
 
531
655
  # ✨ Contributors ✨
532
656