├── LICENSE ├── README.md ├── apply_delta.py ├── assets ├── YuLan-logo.jpg ├── example1.png ├── example2.png ├── example_zh1.png ├── example_zh2.png ├── logo.jpg └── logo.png ├── inference.py ├── requirements.txt └── yulan_test ├── config ├── benchmark │ └── bbh10k.yaml └── model │ ├── chatgpt.yaml │ ├── dummy.yaml │ ├── local.yaml │ └── openai.yaml ├── data └── bbh3k.json ├── scripts ├── testChatGPTModel.sh ├── testDummyModel.sh ├── testLocalModel.sh └── testOpenAIModel.sh └── src ├── BBH10KBenchmark.py ├── __pycache__ └── BBH10KBenchmark.cpython-38.pyc ├── main.py └── model ├── ChatGPTModel.py ├── DummyModel.py ├── LocalModel.py ├── Model.py ├── OpenAIModel.py ├── __init__.py └── __pycache__ ├── ChatGPTModel.cpython-38.pyc ├── DummyModel.cpython-38.pyc ├── LocalModel.cpython-38.pyc ├── Model.cpython-38.pyc ├── OpenAIModel.cpython-38.pyc └── __init__.cpython-38.pyc /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/README.md -------------------------------------------------------------------------------- /apply_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/apply_delta.py -------------------------------------------------------------------------------- /assets/YuLan-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/assets/YuLan-logo.jpg -------------------------------------------------------------------------------- /assets/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/assets/example1.png -------------------------------------------------------------------------------- /assets/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/assets/example2.png -------------------------------------------------------------------------------- /assets/example_zh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/assets/example_zh1.png -------------------------------------------------------------------------------- /assets/example_zh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/assets/example_zh2.png -------------------------------------------------------------------------------- /assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/assets/logo.jpg -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/assets/logo.png -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/inference.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/requirements.txt -------------------------------------------------------------------------------- /yulan_test/config/benchmark/bbh10k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/config/benchmark/bbh10k.yaml -------------------------------------------------------------------------------- /yulan_test/config/model/chatgpt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/config/model/chatgpt.yaml -------------------------------------------------------------------------------- /yulan_test/config/model/dummy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/config/model/dummy.yaml -------------------------------------------------------------------------------- /yulan_test/config/model/local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/config/model/local.yaml -------------------------------------------------------------------------------- /yulan_test/config/model/openai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/config/model/openai.yaml -------------------------------------------------------------------------------- /yulan_test/data/bbh3k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/data/bbh3k.json -------------------------------------------------------------------------------- /yulan_test/scripts/testChatGPTModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/scripts/testChatGPTModel.sh -------------------------------------------------------------------------------- /yulan_test/scripts/testDummyModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/scripts/testDummyModel.sh -------------------------------------------------------------------------------- /yulan_test/scripts/testLocalModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/scripts/testLocalModel.sh -------------------------------------------------------------------------------- /yulan_test/scripts/testOpenAIModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/scripts/testOpenAIModel.sh -------------------------------------------------------------------------------- /yulan_test/src/BBH10KBenchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/BBH10KBenchmark.py -------------------------------------------------------------------------------- /yulan_test/src/__pycache__/BBH10KBenchmark.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/__pycache__/BBH10KBenchmark.cpython-38.pyc -------------------------------------------------------------------------------- /yulan_test/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/main.py -------------------------------------------------------------------------------- /yulan_test/src/model/ChatGPTModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/ChatGPTModel.py -------------------------------------------------------------------------------- /yulan_test/src/model/DummyModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/DummyModel.py -------------------------------------------------------------------------------- /yulan_test/src/model/LocalModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/LocalModel.py -------------------------------------------------------------------------------- /yulan_test/src/model/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/Model.py -------------------------------------------------------------------------------- /yulan_test/src/model/OpenAIModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/OpenAIModel.py -------------------------------------------------------------------------------- /yulan_test/src/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/__init__.py -------------------------------------------------------------------------------- /yulan_test/src/model/__pycache__/ChatGPTModel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/__pycache__/ChatGPTModel.cpython-38.pyc -------------------------------------------------------------------------------- /yulan_test/src/model/__pycache__/DummyModel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/__pycache__/DummyModel.cpython-38.pyc -------------------------------------------------------------------------------- /yulan_test/src/model/__pycache__/LocalModel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/__pycache__/LocalModel.cpython-38.pyc -------------------------------------------------------------------------------- /yulan_test/src/model/__pycache__/Model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/__pycache__/Model.cpython-38.pyc -------------------------------------------------------------------------------- /yulan_test/src/model/__pycache__/OpenAIModel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/__pycache__/OpenAIModel.cpython-38.pyc -------------------------------------------------------------------------------- /yulan_test/src/model/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUC-GSAI/YuLan-Chat/HEAD/yulan_test/src/model/__pycache__/__init__.cpython-38.pyc --------------------------------------------------------------------------------