llamacpp


Namellamacpp JSON
Version 0.1.14 PyPI version JSON
download
home_pagehttps://github.com/thomasantony/llamacpp-python
SummaryPython bindings for @ggerganov's llama.cpp
upload_time2023-04-10 22:27:24
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## Python bindings for llama.cpp

## Install
### From PyPI

```
pip install llamacpp
```

### Build from Source

```
pip install .
```

## Get the model weights

You will need to obtain the weights for LLaMA yourself. There are a few torrents floating around as well as some huggingface repositories (e.g https://huggingface.co/nyanko7/LLaMA-7B/). Once you have them, copy them into the models folder.

```
ls ./models
65B 30B 13B 7B tokenizer_checklist.chk tokenizer.model
```

Convert the weights to GGML format using `llamacpp-convert`. Then use `llamacpp-quantize` to quantize them into INT4. For example, for the 7B parameter model, run

```
llamacpp-convert ./models/7B/ 1
llamacpp-quantize ./models/7B/
llamacpp-cli
```

**Note that running `llamacpp-convert` requires `torch`, `sentencepiece` and `numpy` to be installed. These packages are not installed by default when your install `llamacpp`.**

## Command line interface

The package installs the command line entry point `llamacpp-cli` that points to `llamacpp/cli.py` and should provide about the same functionality as the `main` program in the original C++ repository. There is also an experimental `llamacpp-chat` that is supposed to bring up a chat interface but this is not working correctly yet.

## API

Documentation is TBD. But the long and short of it is that there are two interfaces
* `LlamaInference` - this one is a high level interface that tries to take care of most things for you. The demo script below uses this.
* `LlamaContext` - this is a low level interface to the underlying llama.cpp API. You can use this similar to how the [main](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/main.cpp) example in `llama.cpp` does uses the C API. This is a rough implementation and currently untested except for compiling successfully.

## Demo script

See `llamacpp/cli.py` for a detailed example. The simplest demo would be something like the following:

```python
import sys
import llamacpp


def progress_callback(progress):
    print("Progress: {:.2f}%".format(progress * 100))
    sys.stdout.flush()


params = llamacpp.InferenceParams.default_with_callback(progress_callback)
params.path_model = './models/7B/ggml-model-q4_0.bin'
model = llamacpp.LlamaInference(params)

prompt = "A llama is a"
prompt_tokens = model.tokenize(prompt, True)
model.update_input(prompt_tokens)

model.ingest_all_pending_input()

model.print_system_info()
for i in range(20):
    model.eval()
    token = model.sample()
    text = model.token_to_str(token)
    print(text, end="")
    
# Flush stdout
sys.stdout.flush()

model.print_timings()
```

## ToDo

- [ ] Investigate using dynamic versions using setuptools-scm (Example: https://github.com/pypa/setuptools_scm/blob/main/scm_hack_build_backend.py)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/thomasantony/llamacpp-python",
    "name": "llamacpp",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Thomas Antony <mail@thomasantony.com>",
    "download_url": "https://files.pythonhosted.org/packages/54/0b/20b42971a0ec3110f7a57eb6d1f495bc833687aa39084c39100278536263/llamacpp-0.1.14.tar.gz",
    "platform": null,
    "description": "## Python bindings for llama.cpp\n\n## Install\n### From PyPI\n\n```\npip install llamacpp\n```\n\n### Build from Source\n\n```\npip install .\n```\n\n## Get the model weights\n\nYou will need to obtain the weights for LLaMA yourself. There are a few torrents floating around as well as some huggingface repositories (e.g https://huggingface.co/nyanko7/LLaMA-7B/). Once you have them, copy them into the models folder.\n\n```\nls ./models\n65B 30B 13B 7B tokenizer_checklist.chk tokenizer.model\n```\n\nConvert the weights to GGML format using `llamacpp-convert`. Then use `llamacpp-quantize` to quantize them into INT4. For example, for the 7B parameter model, run\n\n```\nllamacpp-convert ./models/7B/ 1\nllamacpp-quantize ./models/7B/\nllamacpp-cli\n```\n\n**Note that running `llamacpp-convert` requires `torch`, `sentencepiece` and `numpy` to be installed. These packages are not installed by default when your install `llamacpp`.**\n\n## Command line interface\n\nThe package installs the command line entry point `llamacpp-cli` that points to `llamacpp/cli.py` and should provide about the same functionality as the `main` program in the original C++ repository. There is also an experimental `llamacpp-chat` that is supposed to bring up a chat interface but this is not working correctly yet.\n\n## API\n\nDocumentation is TBD. But the long and short of it is that there are two interfaces\n* `LlamaInference` - this one is a high level interface that tries to take care of most things for you. The demo script below uses this.\n* `LlamaContext` - this is a low level interface to the underlying llama.cpp API. You can use this similar to how the [main](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/main.cpp) example in `llama.cpp` does uses the C API. This is a rough implementation and currently untested except for compiling successfully.\n\n## Demo script\n\nSee `llamacpp/cli.py` for a detailed example. The simplest demo would be something like the following:\n\n```python\nimport sys\nimport llamacpp\n\n\ndef progress_callback(progress):\n    print(\"Progress: {:.2f}%\".format(progress * 100))\n    sys.stdout.flush()\n\n\nparams = llamacpp.InferenceParams.default_with_callback(progress_callback)\nparams.path_model = './models/7B/ggml-model-q4_0.bin'\nmodel = llamacpp.LlamaInference(params)\n\nprompt = \"A llama is a\"\nprompt_tokens = model.tokenize(prompt, True)\nmodel.update_input(prompt_tokens)\n\nmodel.ingest_all_pending_input()\n\nmodel.print_system_info()\nfor i in range(20):\n    model.eval()\n    token = model.sample()\n    text = model.token_to_str(token)\n    print(text, end=\"\")\n    \n# Flush stdout\nsys.stdout.flush()\n\nmodel.print_timings()\n```\n\n## ToDo\n\n- [ ] Investigate using dynamic versions using setuptools-scm (Example: https://github.com/pypa/setuptools_scm/blob/main/scm_hack_build_backend.py)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python bindings for @ggerganov's llama.cpp",
    "version": "0.1.14",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "960299448e4cd35df3f9786d464113633f14711f56c470cbf9aeaf926145fe0f",
                "md5": "96b15b585968e9dabbfea1842af2e459",
                "sha256": "aacfef0774bf5a213ebbd29a151793f352d1ee31b8220b68582d53c19a82aaa4"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp310-cp310-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "96b15b585968e9dabbfea1842af2e459",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 401503,
            "upload_time": "2023-04-10T22:26:32",
            "upload_time_iso_8601": "2023-04-10T22:26:32.515286Z",
            "url": "https://files.pythonhosted.org/packages/96/02/99448e4cd35df3f9786d464113633f14711f56c470cbf9aeaf926145fe0f/llamacpp-0.1.14-cp310-cp310-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54f570dd563eb8d6b11ba275db4f453bf78c8f35c1505ff8f443001df678997e",
                "md5": "a6e228c8f2869f4ebc009d5914903a71",
                "sha256": "955d9cb5077d6df39781dfad5668ff3b1b427e7208d5cf482422ebb44e7cadf5"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6e228c8f2869f4ebc009d5914903a71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 217341,
            "upload_time": "2023-04-10T22:26:33",
            "upload_time_iso_8601": "2023-04-10T22:26:33.897885Z",
            "url": "https://files.pythonhosted.org/packages/54/f5/70dd563eb8d6b11ba275db4f453bf78c8f35c1505ff8f443001df678997e/llamacpp-0.1.14-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67cafb6bd6dae02783b1d796286f32706f86701750347a9b3e12e6d117d89c74",
                "md5": "c91147397a2d314185b541564e5766ca",
                "sha256": "c32965163468f7cc617fc7ce6a722bbbc937d5a6ba1ddde95aa9cf8e80151fe3"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c91147397a2d314185b541564e5766ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 194527,
            "upload_time": "2023-04-10T22:26:34",
            "upload_time_iso_8601": "2023-04-10T22:26:34.995753Z",
            "url": "https://files.pythonhosted.org/packages/67/ca/fb6bd6dae02783b1d796286f32706f86701750347a9b3e12e6d117d89c74/llamacpp-0.1.14-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "949c57259e5360609a1c77e3c622fa4ab45a55640fe068ade1a1054dbffb9177",
                "md5": "42d76805eb345dd8d703728b1f843b11",
                "sha256": "3109beac3f9693f9f7b96d8b8ba3692369db1d6972fc80dfe2e85010e5396c9f"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "42d76805eb345dd8d703728b1f843b11",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 221642,
            "upload_time": "2023-04-10T22:26:36",
            "upload_time_iso_8601": "2023-04-10T22:26:36.208182Z",
            "url": "https://files.pythonhosted.org/packages/94/9c/57259e5360609a1c77e3c622fa4ab45a55640fe068ade1a1054dbffb9177/llamacpp-0.1.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fbfb3b7e080b161c57a8c3b816efb9974112b54e09647e4a550d5393d93bb21",
                "md5": "767dccdbcfbe017ec2c7d777bd4870ec",
                "sha256": "b0d77d7754183faf8eeed644b51679e5ff0676e308c12251d98521fa6f085871"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "767dccdbcfbe017ec2c7d777bd4870ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 243401,
            "upload_time": "2023-04-10T22:26:37",
            "upload_time_iso_8601": "2023-04-10T22:26:37.999527Z",
            "url": "https://files.pythonhosted.org/packages/3f/bf/b3b7e080b161c57a8c3b816efb9974112b54e09647e4a550d5393d93bb21/llamacpp-0.1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f88d560d58bf8d814c360e12c18597a95f48d2dd7d24b1bd4b83afee84488d15",
                "md5": "18a6a71e93eb341c41e46a244342eb97",
                "sha256": "f21557b79f57970d0b243f5d84bbc608807ff7069855cc71bcd10611344f5d72"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "18a6a71e93eb341c41e46a244342eb97",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 735891,
            "upload_time": "2023-04-10T22:26:39",
            "upload_time_iso_8601": "2023-04-10T22:26:39.685381Z",
            "url": "https://files.pythonhosted.org/packages/f8/8d/560d58bf8d814c360e12c18597a95f48d2dd7d24b1bd4b83afee84488d15/llamacpp-0.1.14-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4c2d40709d939c35d1b91afc49ae165584e619983cd0f1dced3eee62e02da9f",
                "md5": "89f0dd21e0cdd21555000a034815328d",
                "sha256": "ae81ff6e293b7798f1990acc371e2f759f53da4225ceeaf81d760a20b596abbd"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89f0dd21e0cdd21555000a034815328d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 770316,
            "upload_time": "2023-04-10T22:26:40",
            "upload_time_iso_8601": "2023-04-10T22:26:40.882164Z",
            "url": "https://files.pythonhosted.org/packages/a4/c2/d40709d939c35d1b91afc49ae165584e619983cd0f1dced3eee62e02da9f/llamacpp-0.1.14-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "026a2576809146cfcf8e3b1b948d61938683a634222d83032a9e8fd17167f562",
                "md5": "a4b4a52d4a2881d0be8443f43f2fab6d",
                "sha256": "649f7d675d3b8237e13c02462b8225254c985eb3a5bcecc78c57f3ef0dc17067"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a4b4a52d4a2881d0be8443f43f2fab6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 179061,
            "upload_time": "2023-04-10T22:26:41",
            "upload_time_iso_8601": "2023-04-10T22:26:41.926982Z",
            "url": "https://files.pythonhosted.org/packages/02/6a/2576809146cfcf8e3b1b948d61938683a634222d83032a9e8fd17167f562/llamacpp-0.1.14-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "927426e11f7dee31a4ccb88947421fc18dc8b5450b1db61777a5c2432fc25b42",
                "md5": "d2841c5b299b22db4c1834b9ead3db3a",
                "sha256": "c76c6a79340c053310db0047a292412bc846468fbfa833681753c335baf91939"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp311-cp311-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "d2841c5b299b22db4c1834b9ead3db3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 401508,
            "upload_time": "2023-04-10T22:26:43",
            "upload_time_iso_8601": "2023-04-10T22:26:43.237425Z",
            "url": "https://files.pythonhosted.org/packages/92/74/26e11f7dee31a4ccb88947421fc18dc8b5450b1db61777a5c2432fc25b42/llamacpp-0.1.14-cp311-cp311-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "509973a563bcc82ef76ebb14984361491a8c8381ac6efcde223384e8f3092ba2",
                "md5": "3ac86a8cc72205e72049af6f923ff183",
                "sha256": "5eb34a3755fabab53a8e9925a2924aa378f3fa992e1c1ac5a6bbad04101f3069"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ac86a8cc72205e72049af6f923ff183",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 217370,
            "upload_time": "2023-04-10T22:26:44",
            "upload_time_iso_8601": "2023-04-10T22:26:44.814415Z",
            "url": "https://files.pythonhosted.org/packages/50/99/73a563bcc82ef76ebb14984361491a8c8381ac6efcde223384e8f3092ba2/llamacpp-0.1.14-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8d06edda7f6ac88cebdcad5ac5a2c35bfcc4fbd498f9075470154e07c2d428a",
                "md5": "7df62a5a02b21e3cc36b0631cbaca49f",
                "sha256": "68284591487c23c0f14d7a8408586fa6a2f52a227fbf99710bb61095caf8eef2"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7df62a5a02b21e3cc36b0631cbaca49f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 194512,
            "upload_time": "2023-04-10T22:26:45",
            "upload_time_iso_8601": "2023-04-10T22:26:45.997907Z",
            "url": "https://files.pythonhosted.org/packages/c8/d0/6edda7f6ac88cebdcad5ac5a2c35bfcc4fbd498f9075470154e07c2d428a/llamacpp-0.1.14-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8502895cecce9cd32f1a7d1cbaa43ee349e6844112b6dd8c2fae776364fc912",
                "md5": "b4431dc0fa041d935624aeb53f606e48",
                "sha256": "cb550c02b090a0f9fb33add8cd11eb7afc55126b035780873a37e6ffe3ba6217"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b4431dc0fa041d935624aeb53f606e48",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 221478,
            "upload_time": "2023-04-10T22:26:47",
            "upload_time_iso_8601": "2023-04-10T22:26:47.099721Z",
            "url": "https://files.pythonhosted.org/packages/e8/50/2895cecce9cd32f1a7d1cbaa43ee349e6844112b6dd8c2fae776364fc912/llamacpp-0.1.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56d4b51839d898960fa09527fcede8e2f0d8cf5b5842affb1f739c24ea9ad751",
                "md5": "9c9469c97684f87075715241e8c9f35c",
                "sha256": "ee41eb9510e8d6c6b944d85c35fbfc51424dfb6953e21f5ab68664bb1c69f24e"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c9469c97684f87075715241e8c9f35c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 243297,
            "upload_time": "2023-04-10T22:26:48",
            "upload_time_iso_8601": "2023-04-10T22:26:48.762152Z",
            "url": "https://files.pythonhosted.org/packages/56/d4/b51839d898960fa09527fcede8e2f0d8cf5b5842affb1f739c24ea9ad751/llamacpp-0.1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "029d04f7ec0cc283b37fd3664e9e46064db42b949256cadcb5d3c297e5c0bc01",
                "md5": "b8caef92efe0eb22a1fbcb363f6c658e",
                "sha256": "67db633a3d62a4a5cbd54994b1ff7f7e37d9e1b3bbcb46521e48a67e6e909ce7"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b8caef92efe0eb22a1fbcb363f6c658e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 735853,
            "upload_time": "2023-04-10T22:26:49",
            "upload_time_iso_8601": "2023-04-10T22:26:49.959281Z",
            "url": "https://files.pythonhosted.org/packages/02/9d/04f7ec0cc283b37fd3664e9e46064db42b949256cadcb5d3c297e5c0bc01/llamacpp-0.1.14-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10f7b9363cccc4409fe38482309e66cfce654c372cdd8a6b12ee4b2cab8a3d5f",
                "md5": "af8b34259dc433597456a40ed38ec3ee",
                "sha256": "e519e8f35ddc608db495230946da2df4376db5934873dc61ff34e77a842451a6"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af8b34259dc433597456a40ed38ec3ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 770211,
            "upload_time": "2023-04-10T22:26:51",
            "upload_time_iso_8601": "2023-04-10T22:26:51.125359Z",
            "url": "https://files.pythonhosted.org/packages/10/f7/b9363cccc4409fe38482309e66cfce654c372cdd8a6b12ee4b2cab8a3d5f/llamacpp-0.1.14-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "127d0bc3a741099e8af079d755772072daea682f4ef90de1d786c8db1bf0bcdf",
                "md5": "f5c74cfbd00cc67b0943a3aab6039f6d",
                "sha256": "06b72ff0b71bbd392253e117272de1adaf61d2888cfa105da8c69f349b1f98ae"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5c74cfbd00cc67b0943a3aab6039f6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 179033,
            "upload_time": "2023-04-10T22:26:52",
            "upload_time_iso_8601": "2023-04-10T22:26:52.772803Z",
            "url": "https://files.pythonhosted.org/packages/12/7d/0bc3a741099e8af079d755772072daea682f4ef90de1d786c8db1bf0bcdf/llamacpp-0.1.14-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "479ef3536ab627ed882fbad9dbe1e90d7478ee42606a638f0087baac1ec6ac2b",
                "md5": "090a199f84e2767512b29d8da92ef7de",
                "sha256": "ce4379cb8ae3355d630b3edd0f08138c3c4e8ce344ea39e5e7d9f72c0b4d1c57"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "090a199f84e2767512b29d8da92ef7de",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 216154,
            "upload_time": "2023-04-10T22:26:53",
            "upload_time_iso_8601": "2023-04-10T22:26:53.992954Z",
            "url": "https://files.pythonhosted.org/packages/47/9e/f3536ab627ed882fbad9dbe1e90d7478ee42606a638f0087baac1ec6ac2b/llamacpp-0.1.14-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2bb0cb21a7358f3c729205628b6987b79283ca6f86dbe346151cc0acaa96985",
                "md5": "41f663d8243fc63be415a6d74ae5bea9",
                "sha256": "8f52b43b2b67980a81aec61cc4368e5c28ee9895a487b5fcb82729e42cd49e79"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "41f663d8243fc63be415a6d74ae5bea9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 226759,
            "upload_time": "2023-04-10T22:26:55",
            "upload_time_iso_8601": "2023-04-10T22:26:55.273352Z",
            "url": "https://files.pythonhosted.org/packages/a2/bb/0cb21a7358f3c729205628b6987b79283ca6f86dbe346151cc0acaa96985/llamacpp-0.1.14-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e474995c6891ec7d3bdc0d83b952092138c3b5c63e114acf5f385a5bdccf16c2",
                "md5": "fac1883deb1cfc1b3d1f11b5c318a371",
                "sha256": "ffc02516886b8742d7bf17c753be74a907a600cc9edf5fc63ddaa1b7e22815c0"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fac1883deb1cfc1b3d1f11b5c318a371",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 246462,
            "upload_time": "2023-04-10T22:26:56",
            "upload_time_iso_8601": "2023-04-10T22:26:56.475708Z",
            "url": "https://files.pythonhosted.org/packages/e4/74/995c6891ec7d3bdc0d83b952092138c3b5c63e114acf5f385a5bdccf16c2/llamacpp-0.1.14-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3a270f756d1fb6405af515932637d726d8897cddca085a0c466fe99ba724f21",
                "md5": "93c877ab6d002ee43b3a0e8ccb321fe9",
                "sha256": "71b247979dc49cee7889983c5f4c4b1a295554100df3655024452a162c1ce985"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "93c877ab6d002ee43b3a0e8ccb321fe9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 740472,
            "upload_time": "2023-04-10T22:26:57",
            "upload_time_iso_8601": "2023-04-10T22:26:57.805639Z",
            "url": "https://files.pythonhosted.org/packages/c3/a2/70f756d1fb6405af515932637d726d8897cddca085a0c466fe99ba724f21/llamacpp-0.1.14-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b360343fb3834bf6b178b00264e8026e0c3e275e4b771fadd23585d3f5d0d0a",
                "md5": "81100a7694e8e708e700db51f624eb8a",
                "sha256": "8b1699b96f279278421c5e2df859df3d4d3785a28aa2ff984b0aacc14ee0f793"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "81100a7694e8e708e700db51f624eb8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 774088,
            "upload_time": "2023-04-10T22:27:00",
            "upload_time_iso_8601": "2023-04-10T22:27:00.247244Z",
            "url": "https://files.pythonhosted.org/packages/7b/36/0343fb3834bf6b178b00264e8026e0c3e275e4b771fadd23585d3f5d0d0a/llamacpp-0.1.14-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7117be971ec7415e6cfa01fe0ae11c48124c6b7f6745ef5c87520fb3e7629293",
                "md5": "46181f93a0584add9f639497205cb3ba",
                "sha256": "3f53bd0abe1ac3d0c30680f0537071229c5f7e9d2fb2b1cb1282f0096928908f"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "46181f93a0584add9f639497205cb3ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 178898,
            "upload_time": "2023-04-10T22:27:01",
            "upload_time_iso_8601": "2023-04-10T22:27:01.467611Z",
            "url": "https://files.pythonhosted.org/packages/71/17/be971ec7415e6cfa01fe0ae11c48124c6b7f6745ef5c87520fb3e7629293/llamacpp-0.1.14-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92a6d8f71be40917df058c7d2cd986ea9574782e739cbf5941845b09e8ef0c0a",
                "md5": "bd73201b4d7fa1a9905cf807ad74eb0b",
                "sha256": "3b4ac68cf55e7ffd1d898347ef48c3977d28345056e4b76fcd50e329bb6b0057"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp38-cp38-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "bd73201b4d7fa1a9905cf807ad74eb0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 401389,
            "upload_time": "2023-04-10T22:27:03",
            "upload_time_iso_8601": "2023-04-10T22:27:03.221159Z",
            "url": "https://files.pythonhosted.org/packages/92/a6/d8f71be40917df058c7d2cd986ea9574782e739cbf5941845b09e8ef0c0a/llamacpp-0.1.14-cp38-cp38-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8d6a4c404b447704209b80243da6f462745224fd4c01aa18e7d354d9281d300",
                "md5": "7421b3a0493d2b9239802aabc95a0ef7",
                "sha256": "9c5222ca3d94d43bb876965b1fa201aa6d8a9b9555fdce546095b2a3d1087d1f"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7421b3a0493d2b9239802aabc95a0ef7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 217375,
            "upload_time": "2023-04-10T22:27:04",
            "upload_time_iso_8601": "2023-04-10T22:27:04.228344Z",
            "url": "https://files.pythonhosted.org/packages/d8/d6/a4c404b447704209b80243da6f462745224fd4c01aa18e7d354d9281d300/llamacpp-0.1.14-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3c0c2156e6126b4b198bfa864199f6f5e3d800c8a2fc7fcf3f0a3c976f481a8",
                "md5": "d56fcc8bcff7e7775259910a0a96d0e4",
                "sha256": "abc7c5fdcca9e3b68add7fd174265d0ec25678d74100ac4640a875ed38effbd1"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d56fcc8bcff7e7775259910a0a96d0e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 194419,
            "upload_time": "2023-04-10T22:27:05",
            "upload_time_iso_8601": "2023-04-10T22:27:05.380350Z",
            "url": "https://files.pythonhosted.org/packages/a3/c0/c2156e6126b4b198bfa864199f6f5e3d800c8a2fc7fcf3f0a3c976f481a8/llamacpp-0.1.14-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77289f0fcea9a572bef4acb7865353d6882b1de5d9e88738545e43b7ecec0499",
                "md5": "87994f413d9ff7dacb4726fd2271b4ba",
                "sha256": "c69b07bc101c9ca418d76d7d4e8508a2b4bbd0ec7d91d359040afb590e2c49a3"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "87994f413d9ff7dacb4726fd2271b4ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 221765,
            "upload_time": "2023-04-10T22:27:06",
            "upload_time_iso_8601": "2023-04-10T22:27:06.523004Z",
            "url": "https://files.pythonhosted.org/packages/77/28/9f0fcea9a572bef4acb7865353d6882b1de5d9e88738545e43b7ecec0499/llamacpp-0.1.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "930e2d67a85d24640bc0e7d5ef5daa197f2d4fcea2bdb39e9b610434ff58e22d",
                "md5": "d1b84c06576982081dc119aeca280b30",
                "sha256": "1cffa2275f0f3f7d790f4fe601ffd16e74e1f03a089c907a280826caa23e9be6"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1b84c06576982081dc119aeca280b30",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 242655,
            "upload_time": "2023-04-10T22:27:07",
            "upload_time_iso_8601": "2023-04-10T22:27:07.808205Z",
            "url": "https://files.pythonhosted.org/packages/93/0e/2d67a85d24640bc0e7d5ef5daa197f2d4fcea2bdb39e9b610434ff58e22d/llamacpp-0.1.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "051ab39f6f8bd3acce96ef717620df59fa1c2f2c703b8865d960b791267a8cf4",
                "md5": "04a43e8f9e0254ac8fead6b3abf7ba25",
                "sha256": "ba4bf33f6cda5f4246e60d24758d7b43b704c59ac9cf11b9bd5f7c54cde2bb1f"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "04a43e8f9e0254ac8fead6b3abf7ba25",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 735664,
            "upload_time": "2023-04-10T22:27:09",
            "upload_time_iso_8601": "2023-04-10T22:27:09.483713Z",
            "url": "https://files.pythonhosted.org/packages/05/1a/b39f6f8bd3acce96ef717620df59fa1c2f2c703b8865d960b791267a8cf4/llamacpp-0.1.14-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8235566b00df380288a709e9c502131fa542ee984245b222b9a444556e6b4b0d",
                "md5": "3e6f2fe23870d15bec0d3d5df54a2ce4",
                "sha256": "4e8320464f654d4eb160a3fa9b529a2b1eaf724901587fd4a2c53dfec663376b"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e6f2fe23870d15bec0d3d5df54a2ce4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 770144,
            "upload_time": "2023-04-10T22:27:10",
            "upload_time_iso_8601": "2023-04-10T22:27:10.723981Z",
            "url": "https://files.pythonhosted.org/packages/82/35/566b00df380288a709e9c502131fa542ee984245b222b9a444556e6b4b0d/llamacpp-0.1.14-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ab3e4bd87d5d29dbc761e22fa592cab25b39f782e021a3c6d390ad7a3b06975",
                "md5": "84f131076ec2154383f0ac506b68becd",
                "sha256": "c892e8904831d3d0e9ed6307c2d18f6b8a750ba88f59d6af8647b3b4376da977"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "84f131076ec2154383f0ac506b68becd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 179059,
            "upload_time": "2023-04-10T22:27:11",
            "upload_time_iso_8601": "2023-04-10T22:27:11.888249Z",
            "url": "https://files.pythonhosted.org/packages/8a/b3/e4bd87d5d29dbc761e22fa592cab25b39f782e021a3c6d390ad7a3b06975/llamacpp-0.1.14-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa1809019f7a9dfc468433bb38d5b2900dc9ea8c1a90207c32495d9912adb683",
                "md5": "1044f8c7a8ce780748a481bc79fab0e3",
                "sha256": "c756d8a7df225ecc18ef869e344da17b9c3ce1d769f589f8e0933b2066f571e6"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp39-cp39-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "1044f8c7a8ce780748a481bc79fab0e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 401780,
            "upload_time": "2023-04-10T22:27:13",
            "upload_time_iso_8601": "2023-04-10T22:27:13.120800Z",
            "url": "https://files.pythonhosted.org/packages/aa/18/09019f7a9dfc468433bb38d5b2900dc9ea8c1a90207c32495d9912adb683/llamacpp-0.1.14-cp39-cp39-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f47fa689d4e4a91e6272bbdfffbedfaebe06d54dfffcad71bb6364d0585d4106",
                "md5": "6d663d40fee72c4a5b93311a71017a00",
                "sha256": "5949bc02c3e15b38142e2985892bc0271a5fa53794e9c2dc0db469433e5657b9"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d663d40fee72c4a5b93311a71017a00",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 217462,
            "upload_time": "2023-04-10T22:27:14",
            "upload_time_iso_8601": "2023-04-10T22:27:14.243075Z",
            "url": "https://files.pythonhosted.org/packages/f4/7f/a689d4e4a91e6272bbdfffbedfaebe06d54dfffcad71bb6364d0585d4106/llamacpp-0.1.14-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9cb2bedb6fb8482b61ad9b2eb42da1b432eee2c35f9c80b5fec7815f4f41045",
                "md5": "bae1d1e12928152f0d052fccee52083e",
                "sha256": "52fecc05bfb6a7673e375508f307f9fa953bcf224043b69f3669f5358fd3a533"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bae1d1e12928152f0d052fccee52083e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 194632,
            "upload_time": "2023-04-10T22:27:15",
            "upload_time_iso_8601": "2023-04-10T22:27:15.839022Z",
            "url": "https://files.pythonhosted.org/packages/a9/cb/2bedb6fb8482b61ad9b2eb42da1b432eee2c35f9c80b5fec7815f4f41045/llamacpp-0.1.14-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2d7e2294de6e28e4fc2a255391717a221f41748fdea84e0a50833311be346d2",
                "md5": "e070d5c8c2a8bc0462c53915ec118d7f",
                "sha256": "362d042cc07629ff74fcc3c8b98aa86566b4649a3c186fd80c027af91db25c2f"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e070d5c8c2a8bc0462c53915ec118d7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 222237,
            "upload_time": "2023-04-10T22:27:17",
            "upload_time_iso_8601": "2023-04-10T22:27:17.366146Z",
            "url": "https://files.pythonhosted.org/packages/c2/d7/e2294de6e28e4fc2a255391717a221f41748fdea84e0a50833311be346d2/llamacpp-0.1.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28bd905c5202932a1a91149e3d7d80858fee64b7f9f3103f980b7638e41d2e50",
                "md5": "6d0a72625526ce3e4e3627f018a1b54c",
                "sha256": "9e220e6efb34eb26e5061e8c147c91c45ff529c6445f3fe63caa12a8f56fde9c"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d0a72625526ce3e4e3627f018a1b54c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 243522,
            "upload_time": "2023-04-10T22:27:19",
            "upload_time_iso_8601": "2023-04-10T22:27:19.099835Z",
            "url": "https://files.pythonhosted.org/packages/28/bd/905c5202932a1a91149e3d7d80858fee64b7f9f3103f980b7638e41d2e50/llamacpp-0.1.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "762845ddb14bfd667df46a7bf576ab0761f3befc5ac17c5729ec1ea4d4526ae2",
                "md5": "1b394abf5b636f220cc86606035fe71c",
                "sha256": "8c386e384d311b895b3da0b335d439e1fce5ea1ebb484730330009d514fd8b50"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b394abf5b636f220cc86606035fe71c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 736734,
            "upload_time": "2023-04-10T22:27:20",
            "upload_time_iso_8601": "2023-04-10T22:27:20.742744Z",
            "url": "https://files.pythonhosted.org/packages/76/28/45ddb14bfd667df46a7bf576ab0761f3befc5ac17c5729ec1ea4d4526ae2/llamacpp-0.1.14-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb87bfc80c5ce29a2ffe2eaed70a222acd44b011c992fb1fa3c2a8312f92e3fb",
                "md5": "708a8e890256235261d8d4c9fede8426",
                "sha256": "36fff86f13431cae3b1406716a40337c075ecce55481d104f7be685d064be394"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "708a8e890256235261d8d4c9fede8426",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 770423,
            "upload_time": "2023-04-10T22:27:22",
            "upload_time_iso_8601": "2023-04-10T22:27:22.235857Z",
            "url": "https://files.pythonhosted.org/packages/bb/87/bfc80c5ce29a2ffe2eaed70a222acd44b011c992fb1fa3c2a8312f92e3fb/llamacpp-0.1.14-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cf61b45ab60a173f4b976b4fa12207b06c137076a72b9f10497bbc185f493d1",
                "md5": "ae9a6dcba367cc9fb3decdefb97eaf30",
                "sha256": "77663b939554b780e3208cea33c2938feb77d3594ddcbf42863c22cd9e87bdcb"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ae9a6dcba367cc9fb3decdefb97eaf30",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 179053,
            "upload_time": "2023-04-10T22:27:23",
            "upload_time_iso_8601": "2023-04-10T22:27:23.250027Z",
            "url": "https://files.pythonhosted.org/packages/8c/f6/1b45ab60a173f4b976b4fa12207b06c137076a72b9f10497bbc185f493d1/llamacpp-0.1.14-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "540b20b42971a0ec3110f7a57eb6d1f495bc833687aa39084c39100278536263",
                "md5": "7dbcf18269b00677fd33a68757a828e3",
                "sha256": "e558af0778bc9a8335379eacaaf368d9d43966f19b05c445e200397a36c02152"
            },
            "downloads": -1,
            "filename": "llamacpp-0.1.14.tar.gz",
            "has_sig": false,
            "md5_digest": "7dbcf18269b00677fd33a68757a828e3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1914420,
            "upload_time": "2023-04-10T22:27:24",
            "upload_time_iso_8601": "2023-04-10T22:27:24.586015Z",
            "url": "https://files.pythonhosted.org/packages/54/0b/20b42971a0ec3110f7a57eb6d1f495bc833687aa39084c39100278536263/llamacpp-0.1.14.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-10 22:27:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "thomasantony",
    "github_project": "llamacpp-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "llamacpp"
}
        
Elapsed time: 0.05429s