├── LICENSE ├── README.md ├── Toolset ├── README.md ├── __init__.py ├── calendar.py ├── database.py ├── ecommerce.py ├── gsm8k.py ├── map.py ├── math.py ├── medical.py ├── meta.py ├── persona.py ├── search.py ├── string.py └── weather.py ├── assets ├── comparison.png ├── image-20230817114433957.png ├── image-20230817114437243.png ├── image-20230817114440564.png ├── image-20230817165314476.png ├── image-20230818085121242.png └── method.png ├── data.py ├── data └── api.train.v2.json ├── llama_flash_attn_monkey_patch.py ├── main.py ├── model.py ├── pool.py ├── requirement.txt ├── train.py ├── utils.py └── zero_to_fp.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/README.md -------------------------------------------------------------------------------- /Toolset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/README.md -------------------------------------------------------------------------------- /Toolset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Toolset/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/calendar.py -------------------------------------------------------------------------------- /Toolset/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/database.py -------------------------------------------------------------------------------- /Toolset/ecommerce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/ecommerce.py -------------------------------------------------------------------------------- /Toolset/gsm8k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/gsm8k.py -------------------------------------------------------------------------------- /Toolset/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/map.py -------------------------------------------------------------------------------- /Toolset/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/math.py -------------------------------------------------------------------------------- /Toolset/medical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/medical.py -------------------------------------------------------------------------------- /Toolset/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/meta.py -------------------------------------------------------------------------------- /Toolset/persona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/persona.py -------------------------------------------------------------------------------- /Toolset/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/search.py -------------------------------------------------------------------------------- /Toolset/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/string.py -------------------------------------------------------------------------------- /Toolset/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/Toolset/weather.py -------------------------------------------------------------------------------- /assets/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/assets/comparison.png -------------------------------------------------------------------------------- /assets/image-20230817114433957.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/assets/image-20230817114433957.png -------------------------------------------------------------------------------- /assets/image-20230817114437243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/assets/image-20230817114437243.png -------------------------------------------------------------------------------- /assets/image-20230817114440564.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/assets/image-20230817114440564.png -------------------------------------------------------------------------------- /assets/image-20230817165314476.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/assets/image-20230817165314476.png -------------------------------------------------------------------------------- /assets/image-20230818085121242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/assets/image-20230818085121242.png -------------------------------------------------------------------------------- /assets/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/assets/method.png -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/data.py -------------------------------------------------------------------------------- /data/api.train.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/data/api.train.v2.json -------------------------------------------------------------------------------- /llama_flash_attn_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/llama_flash_attn_monkey_patch.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/model.py -------------------------------------------------------------------------------- /pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/pool.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/requirement.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/utils.py -------------------------------------------------------------------------------- /zero_to_fp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangopy/Confucius-tool-learning/HEAD/zero_to_fp.py --------------------------------------------------------------------------------