├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MODEL_CARD.md ├── README.md ├── Responsible-Use-Guide.pdf ├── UPDATES.md ├── USE_POLICY.md ├── download.sh ├── example_chat_completion.py ├── example_text_completion.py ├── llama ├── __init__.py ├── generation.py ├── model.py └── tokenizer.py ├── requirements.txt └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/LICENSE -------------------------------------------------------------------------------- /MODEL_CARD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/MODEL_CARD.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/README.md -------------------------------------------------------------------------------- /Responsible-Use-Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/Responsible-Use-Guide.pdf -------------------------------------------------------------------------------- /UPDATES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/UPDATES.md -------------------------------------------------------------------------------- /USE_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/USE_POLICY.md -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/download.sh -------------------------------------------------------------------------------- /example_chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/example_chat_completion.py -------------------------------------------------------------------------------- /example_text_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/example_text_completion.py -------------------------------------------------------------------------------- /llama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/llama/__init__.py -------------------------------------------------------------------------------- /llama/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/llama/generation.py -------------------------------------------------------------------------------- /llama/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/llama/model.py -------------------------------------------------------------------------------- /llama/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/llama/tokenizer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch 2 | fairscale 3 | fire 4 | sentencepiece 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-llama/llama/HEAD/setup.py --------------------------------------------------------------------------------