├── README.md ├── apiMemoryTest.py ├── apiTest.py ├── input ├── llama2.pdf ├── 健康档案(含表格01).pdf ├── 健康档案(含表格02).pdf └── 健康档案.pdf ├── main.py ├── mainMemory.py ├── mainReranker.py ├── other └── punkt_tab │ ├── README │ ├── czech │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── danish │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── dutch │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── english │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── estonian │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── finnish │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── french │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── german │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── greek │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── italian │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── norwegian │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── polish │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── portuguese │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── russian │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── slovene │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── spanish │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ ├── swedish │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt │ └── turkish │ ├── abbrev_types.txt │ ├── collocations.tab │ ├── ortho_context.tab │ └── sent_starters.txt ├── prompt_template.txt ├── prompt_template_memory.txt ├── requirements.txt ├── test ├── memoryTest.py └── prompt_template.txt ├── tools ├── __pycache__ │ ├── pdfSplitTest.cpython-311.pyc │ ├── pdfSplitTest_Ch.cpython-311.pyc │ └── pdfSplitTest_En.cpython-311.pyc ├── pdfSplitTest_Ch.py ├── pdfSplitTest_En.py ├── pdfTableSplitTest01.py └── pdfTableSplitTest02.py └── vectorSaveTest.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/README.md -------------------------------------------------------------------------------- /apiMemoryTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/apiMemoryTest.py -------------------------------------------------------------------------------- /apiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/apiTest.py -------------------------------------------------------------------------------- /input/llama2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/input/llama2.pdf -------------------------------------------------------------------------------- /input/健康档案(含表格01).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/input/健康档案(含表格01).pdf -------------------------------------------------------------------------------- /input/健康档案(含表格02).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/input/健康档案(含表格02).pdf -------------------------------------------------------------------------------- /input/健康档案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/input/健康档案.pdf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/main.py -------------------------------------------------------------------------------- /mainMemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/mainMemory.py -------------------------------------------------------------------------------- /mainReranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/mainReranker.py -------------------------------------------------------------------------------- /other/punkt_tab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/README -------------------------------------------------------------------------------- /other/punkt_tab/czech/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/czech/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/czech/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/czech/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/czech/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/czech/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/czech/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/czech/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/danish/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/danish/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/danish/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/danish/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/danish/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/danish/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/danish/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/danish/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/dutch/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/dutch/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/dutch/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/dutch/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/dutch/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/dutch/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/dutch/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/dutch/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/english/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/english/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/english/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/english/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/english/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/english/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/english/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/english/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/estonian/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/estonian/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/estonian/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/estonian/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/estonian/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/estonian/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/estonian/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/estonian/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/finnish/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/finnish/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/finnish/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/finnish/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/finnish/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/finnish/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/finnish/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/finnish/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/french/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/french/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/french/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/french/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/french/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/french/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/french/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/french/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/german/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/german/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/german/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/german/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/german/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/german/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/german/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/german/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/greek/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/greek/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/greek/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/greek/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/greek/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/greek/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/greek/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/greek/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/italian/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/italian/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/italian/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/italian/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/italian/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/italian/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/italian/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/italian/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/norwegian/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/norwegian/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/norwegian/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/norwegian/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/norwegian/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/norwegian/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/norwegian/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/norwegian/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/polish/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/polish/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/polish/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/polish/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/polish/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/polish/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/polish/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/polish/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/portuguese/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/portuguese/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/portuguese/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/portuguese/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/portuguese/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/portuguese/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/portuguese/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/portuguese/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/russian/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/russian/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/russian/collocations.tab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/punkt_tab/russian/ortho_context.tab: -------------------------------------------------------------------------------- 1 | download 0 -------------------------------------------------------------------------------- /other/punkt_tab/russian/sent_starters.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /other/punkt_tab/slovene/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/slovene/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/slovene/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/slovene/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/slovene/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/slovene/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/slovene/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/slovene/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/spanish/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/spanish/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/spanish/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/spanish/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/spanish/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/spanish/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/spanish/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/spanish/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/swedish/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/swedish/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/swedish/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/swedish/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/swedish/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/swedish/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/swedish/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/swedish/sent_starters.txt -------------------------------------------------------------------------------- /other/punkt_tab/turkish/abbrev_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/turkish/abbrev_types.txt -------------------------------------------------------------------------------- /other/punkt_tab/turkish/collocations.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/turkish/collocations.tab -------------------------------------------------------------------------------- /other/punkt_tab/turkish/ortho_context.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/turkish/ortho_context.tab -------------------------------------------------------------------------------- /other/punkt_tab/turkish/sent_starters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/other/punkt_tab/turkish/sent_starters.txt -------------------------------------------------------------------------------- /prompt_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/prompt_template.txt -------------------------------------------------------------------------------- /prompt_template_memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/prompt_template_memory.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/memoryTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/test/memoryTest.py -------------------------------------------------------------------------------- /test/prompt_template.txt: -------------------------------------------------------------------------------- 1 | 你是一名会说 {language} 的助理。用20个或更少的文字回答。 2 | 3 | 用户问: 4 | {query} -------------------------------------------------------------------------------- /tools/__pycache__/pdfSplitTest.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/tools/__pycache__/pdfSplitTest.cpython-311.pyc -------------------------------------------------------------------------------- /tools/__pycache__/pdfSplitTest_Ch.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/tools/__pycache__/pdfSplitTest_Ch.cpython-311.pyc -------------------------------------------------------------------------------- /tools/__pycache__/pdfSplitTest_En.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/tools/__pycache__/pdfSplitTest_En.cpython-311.pyc -------------------------------------------------------------------------------- /tools/pdfSplitTest_Ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/tools/pdfSplitTest_Ch.py -------------------------------------------------------------------------------- /tools/pdfSplitTest_En.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/tools/pdfSplitTest_En.py -------------------------------------------------------------------------------- /tools/pdfTableSplitTest01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/tools/pdfTableSplitTest01.py -------------------------------------------------------------------------------- /tools/pdfTableSplitTest02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/tools/pdfTableSplitTest02.py -------------------------------------------------------------------------------- /vectorSaveTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/RagLangChainTest/HEAD/vectorSaveTest.py --------------------------------------------------------------------------------