CoolFace
Datasetpublic

echodict/llama.cpp

version https://git-lfs.github.com/spec/v1 oid sha256:cfc44b7ba25614df70e6b65e3341cae0310163bd32fd31a6b928a542df433faf size 30786

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes773downloads
pyproject.toml45 linesDownload Raw Back to gguf-py
1[tool.poetry]2name = "gguf"3version = "0.18.0"4description = "Read and write ML models in GGUF for GGML"5authors = ["GGML <ggml@ggml.ai>"]6packages = [7    {include = "gguf"},8    {include = "gguf/py.typed"},9]10readme = "README.md"11homepage = "https://ggml.ai"12repository = "https://github.com/ggml-org/llama.cpp"13keywords = ["ggml", "gguf", "llama.cpp"]14classifiers = [15    "Programming Language :: Python :: 3",16    "License :: OSI Approved :: MIT License",17    "Operating System :: OS Independent",18]19 20[tool.poetry.dependencies]21python = ">=3.8"22numpy = ">=1.17"23tqdm = ">=4.27"24pyyaml = ">=5.1"25requests = ">=2.25"26sentencepiece = { version = ">=0.1.98,<0.3.0", optional = true }27PySide6 = { version = "^6.9", python = ">=3.9,<3.14", optional = true }28 29[tool.poetry.dev-dependencies]30pytest = "^5.2"31 32[tool.poetry.extras]33gui = ["PySide6"]34 35[build-system]36requires = ["poetry-core>=1.0.0"]37build-backend = "poetry.core.masonry.api"38 39[tool.poetry.scripts]40gguf-convert-endian = "gguf.scripts.gguf_convert_endian:main"41gguf-dump = "gguf.scripts.gguf_dump:main"42gguf-set-metadata = "gguf.scripts.gguf_set_metadata:main"43gguf-new-metadata = "gguf.scripts.gguf_new_metadata:main"44gguf-editor-gui = "gguf.scripts.gguf_editor_gui:main"45