CoolFace
Apppublic

imperialwool/llama-cpp-api

sourceHugging Faceupdated 2y agoView on Hugging Face
2likes
.gitignore167 linesDownload Raw Back to root
1# BASIC PYTHON .GITIGNORE + some for testing2 3# ignoring test files for testing repo4flagged/5translator/6model.bin7 8# Byte-compiled / optimized / DLL files9__pycache__/10*.py[cod]11*$py.class12 13# C extensions14*.so15 16# Distribution / packaging17.Python18build/19develop-eggs/20dist/21downloads/22eggs/23.eggs/24lib/25lib64/26parts/27sdist/28var/29wheels/30share/python-wheels/31*.egg-info/32.installed.cfg33*.egg34MANIFEST35 36# PyInstaller37#  Usually these files are written by a python script from a template38#  before PyInstaller builds the exe, so as to inject date/other infos into it.39*.manifest40*.spec41 42# Installer logs43pip-log.txt44pip-delete-this-directory.txt45 46# Unit test / coverage reports47htmlcov/48.tox/49.nox/50.coverage51.coverage.*52.cache53nosetests.xml54coverage.xml55*.cover56*.py,cover57.hypothesis/58.pytest_cache/59cover/60 61# Translations62*.mo63*.pot64 65# Django stuff:66*.log67local_settings.py68db.sqlite369db.sqlite3-journal70 71# Flask stuff:72instance/73.webassets-cache74 75# Scrapy stuff:76.scrapy77 78# Sphinx documentation79docs/_build/80 81# PyBuilder82.pybuilder/83target/84 85# Jupyter Notebook86.ipynb_checkpoints87 88# IPython89profile_default/90ipython_config.py91 92# pyenv93#   For a library or package, you might want to ignore these files since the code is94#   intended to run in multiple environments; otherwise, check them in:95# .python-version96 97# pipenv98#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.99#   However, in case of collaboration, if having platform-specific dependencies or dependencies100#   having no cross-platform support, pipenv may install dependencies that don't work, or not101#   install all needed dependencies.102#Pipfile.lock103 104# poetry105#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.106#   This is especially recommended for binary packages to ensure reproducibility, and is more107#   commonly ignored for libraries.108#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control109#poetry.lock110 111# pdm112#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.113#pdm.lock114#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it115#   in version control.116#   https://pdm.fming.dev/#use-with-ide117.pdm.toml118 119# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm120__pypackages__/121 122# Celery stuff123celerybeat-schedule124celerybeat.pid125 126# SageMath parsed files127*.sage.py128 129# Environments130.env131.venv132env/133venv/134ENV/135env.bak/136venv.bak/137 138# Spyder project settings139.spyderproject140.spyproject141 142# Rope project settings143.ropeproject144 145# mkdocs documentation146/site147 148# mypy149.mypy_cache/150.dmypy.json151dmypy.json152 153# Pyre type checker154.pyre/155 156# pytype static type analyzer157.pytype/158 159# Cython debug symbols160cython_debug/161 162# PyCharm163#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can164#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore165#  and can be added to the global gitignore or merged into this file.  For a more nuclear166#  option (not recommended) you can uncomment the following to ignore the entire idea folder.167#.idea/