├── LICENSE ├── README.md ├── assets ├── method.pdf └── method.png ├── benchmarks ├── CheckmateInOne.jsonl ├── gameof24.jsonl └── word_sorting.jsonl ├── bot_pipeline.py ├── inference.py ├── lightrag ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── base.cpython-39.pyc │ ├── lightrag.cpython-39.pyc │ ├── llm.cpython-39.pyc │ ├── operate.cpython-39.pyc │ ├── prompt.cpython-39.pyc │ ├── storage.cpython-39.pyc │ └── utils.cpython-39.pyc ├── base.py ├── lightrag.py ├── llm.py ├── operate.py ├── prompt.py ├── storage.py └── utils.py ├── math.txt ├── meta_buffer.py ├── meta_buffer_utilis.py ├── requirements.txt ├── run_benchmarks.py ├── test_templates.py └── validate_results.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/README.md -------------------------------------------------------------------------------- /assets/method.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/assets/method.pdf -------------------------------------------------------------------------------- /assets/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/assets/method.png -------------------------------------------------------------------------------- /benchmarks/CheckmateInOne.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/benchmarks/CheckmateInOne.jsonl -------------------------------------------------------------------------------- /benchmarks/gameof24.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/benchmarks/gameof24.jsonl -------------------------------------------------------------------------------- /benchmarks/word_sorting.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/benchmarks/word_sorting.jsonl -------------------------------------------------------------------------------- /bot_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/bot_pipeline.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/inference.py -------------------------------------------------------------------------------- /lightrag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/__init__.py -------------------------------------------------------------------------------- /lightrag/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /lightrag/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /lightrag/__pycache__/lightrag.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/__pycache__/lightrag.cpython-39.pyc -------------------------------------------------------------------------------- /lightrag/__pycache__/llm.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/__pycache__/llm.cpython-39.pyc -------------------------------------------------------------------------------- /lightrag/__pycache__/operate.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/__pycache__/operate.cpython-39.pyc -------------------------------------------------------------------------------- /lightrag/__pycache__/prompt.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/__pycache__/prompt.cpython-39.pyc -------------------------------------------------------------------------------- /lightrag/__pycache__/storage.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/__pycache__/storage.cpython-39.pyc -------------------------------------------------------------------------------- /lightrag/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /lightrag/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/base.py -------------------------------------------------------------------------------- /lightrag/lightrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/lightrag.py -------------------------------------------------------------------------------- /lightrag/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/llm.py -------------------------------------------------------------------------------- /lightrag/operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/operate.py -------------------------------------------------------------------------------- /lightrag/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/prompt.py -------------------------------------------------------------------------------- /lightrag/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/storage.py -------------------------------------------------------------------------------- /lightrag/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/lightrag/utils.py -------------------------------------------------------------------------------- /math.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/math.txt -------------------------------------------------------------------------------- /meta_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/meta_buffer.py -------------------------------------------------------------------------------- /meta_buffer_utilis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/meta_buffer_utilis.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/run_benchmarks.py -------------------------------------------------------------------------------- /test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/test_templates.py -------------------------------------------------------------------------------- /validate_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/buffer-of-thought-llm/HEAD/validate_results.py --------------------------------------------------------------------------------