pyllamacpp


Namepyllamacpp JSON
Version 2.4.3 PyPI version JSON
download
home_page
SummaryPython bindings for llama.cpp
upload_time2024-02-28 23:04:52
maintainer
docs_urlNone
authorAbdeladim Sadiki
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyLLaMACpp
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![PyPi version](https://badgen.net/pypi/v/pyllamacpp)](https://pypi.org/project/pyllamacpp/)
[![Downloads](https://static.pepy.tech/badge/pyllamacpp)](https://pepy.tech/project/pyllamacpp)
<a target="_blank" href="https://colab.research.google.com/github/abdeladim-s/pyllamacpp/blob/main/examples/PyLLaMACpp.ipynb">
  <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/>
</a>

* Python bindings for [llama.cpp](https://github.com/ggerganov/llama.cpp).
* If you are looking to run **Falcon** models, take a look at the [ggllm branch](https://github.com/abdeladim-s/pyllamacpp/tree/ggllm.cpp).

<p align="center">
  <img src="./docs/demo.gif">
</p>


For those who don't know, `llama.cpp` is a port of Facebook's LLaMA model in pure C/C++:

<blockquote>

- Without dependencies
- Apple silicon first-class citizen - optimized via ARM NEON
- AVX2 support for x86 architectures
- Mixed F16 / F32 precision
- 4-bit quantization support
- Runs on the CPU

</blockquote>

# Table of contents
<!-- TOC -->
* [Installation](#installation)
* [CLI](#cli-)
* [Tutorial](#tutorial)
    * [Quick start](#quick-start)
    * [Interactive Dialogue](#interactive-dialogue)
    * [Attribute a persona to the language model](#attribute-a-persona-to-the-language-model)
    * [Example usage with langchain](#example-usage-with-langchain)
* [Supported models](#supported-models)
* [Advanced usage](#advanced-usage)
* [API reference](#api-reference)
* [FAQs](#faqs)
* [Discussions and contributions](#discussions-and-contributions)
* [License](#license)
<!-- TOC -->

# Installation
1. The easy way is to install the prebuilt wheels
```bash
pip install pyllamacpp
```

However, the compilation process of `llama.cpp` is taking into account the architecture of the target `CPU`, 
so you might need to build it from source:

```shell
pip install git+https://github.com/abdeladim-s/pyllamacpp.git
```

:warning: **Note**

[This PR](https://github.com/ggerganov/llama.cpp/pull/1405) introduced some breaking changes.
If you want to use older models, use version `2.2.0`:
```bash
pip install pyllamacpp==2.2.0
```

# CLI 

You can run the following simple command line interface to test the package once it is installed:

```shell
pyllamacpp path/to/model.bin
```

```shell
pyllamacpp -h

usage: pyllamacpp [-h] [--n_ctx N_CTX] [--n_parts N_PARTS] [--seed SEED] [--f16_kv F16_KV] [--logits_all LOGITS_ALL]
                  [--vocab_only VOCAB_ONLY] [--use_mlock USE_MLOCK] [--embedding EMBEDDING] [--n_predict N_PREDICT] [--n_threads N_THREADS]
                  [--repeat_last_n REPEAT_LAST_N] [--top_k TOP_K] [--top_p TOP_P] [--temp TEMP] [--repeat_penalty REPEAT_PENALTY]
                  [--n_batch N_BATCH]
                  model

This is like a chatbot, You can start the conversation with `Hi, can you help me ?` Pay attention though that it may hallucinate!

positional arguments:
  model                 The path of the model file

options:
  -h, --help            show this help message and exit
  --n_ctx N_CTX         text context
  --n_parts N_PARTS
  --seed SEED           RNG seed
  --f16_kv F16_KV       use fp16 for KV cache
  --logits_all LOGITS_ALL
                        the llama_eval() call computes all logits, not just the last one
  --vocab_only VOCAB_ONLY
                        only load the vocabulary, no weights
  --use_mlock USE_MLOCK
                        force system to keep model in RAM
  --embedding EMBEDDING
                        embedding mode only
  --n_predict N_PREDICT
                        Number of tokens to predict
  --n_threads N_THREADS
                        Number of threads
  --repeat_last_n REPEAT_LAST_N
                        Last n tokens to penalize
  --top_k TOP_K         top_k
  --top_p TOP_P         top_p
  --temp TEMP           temp
  --repeat_penalty REPEAT_PENALTY
                        repeat_penalty
  --n_batch N_BATCH     batch size for prompt processing
```

# Tutorial

### Quick start

```python
from pyllamacpp.model import Model

model = Model(model_path='/path/to/model.bin')
for token in model.generate("Tell me a joke ?\n"):
    print(token, end='', flush=True)
```

### Interactive Dialogue
You can set up an interactive dialogue by simply keeping the `model` variable alive:

```python
from pyllamacpp.model import Model

model = Model(model_path='/path/to/model.bin')
while True:
    try:
        prompt = input("You: ", flush=True)
        if prompt == '':
            continue
        print(f"AI:", end='')
        for token in model.generate(prompt):
            print(f"{token}", end='', flush=True)
        print()
    except KeyboardInterrupt:
        break
```
### Attribute a persona to the language model

The following is an example showing how to _"attribute a persona to the language model"_ :

```python
from pyllamacpp.model import Model

prompt_context = """Act as Bob. Bob is helpful, kind, honest,
and never fails to answer the User's requests immediately and with precision. 

User: Nice to meet you Bob!
Bob: Welcome! I'm here to assist you with anything you need. What can I do for you today?
"""

prompt_prefix = "\nUser:"
prompt_suffix = "\nBob:"

model = Model(model_path='/path/to/model.bin',
              n_ctx=512,
              prompt_context=prompt_context,
              prompt_prefix=prompt_prefix,
              prompt_suffix=prompt_suffix)

while True:
  try:
    prompt = input("User: ")
    if prompt == '':
      continue
    print(f"Bob: ", end='')
    for token in model.generate(prompt,
                                antiprompt='User:',
                                n_threads=6,
                                n_batch=1024,
                                n_predict=256,
                                n_keep=48,
                                repeat_penalty=1.0, ):
      print(f"{token}", end='', flush=True)
    print()
  except KeyboardInterrupt:
    break
```

### Example usage with [langchain](https://github.com/langchain-ai/langchain)

```python
from pyllamacpp.langchain_llm import PyllamacppLLM

llm = PyllamacppLLM(
    model="path/to/ggml/model",
    temp=0.75,
    n_predict=50,
    top_p=1,
    top_k=40
)

template = "\n\n##Instruction:\n:{question}\n\n##Response:\n"

prompt = PromptTemplate(template=template, input_variables=["question"])

llm_chain = LLMChain(prompt=prompt, llm=llm)

question = "What are large language models?"
answer = llm_chain.run(question)
print(answer)
```

# Supported models
All models supported by `llama.cpp` should be supported basically:

<blockquote>

**Supported models:**

- [X] LLaMA 🦙
- [X] [Alpaca](https://github.com/ggerganov/llama.cpp#instruction-mode-with-alpaca)
- [X] [GPT4All](https://github.com/ggerganov/llama.cpp#using-gpt4all)
- [X] [Chinese LLaMA / Alpaca](https://github.com/ymcui/Chinese-LLaMA-Alpaca)
- [X] [Vigogne (French)](https://github.com/bofenghuang/vigogne)
- [X] [Vicuna](https://github.com/ggerganov/llama.cpp/discussions/643#discussioncomment-5533894)
- [X] [Koala](https://bair.berkeley.edu/blog/2023/04/03/koala/)
- [X] [OpenBuddy 🐶 (Multilingual)](https://github.com/OpenBuddy/OpenBuddy)
- [X] [Pygmalion 7B / Metharme 7B](#using-pygmalion-7b--metharme-7b)
- [X] [WizardLM](https://github.com/nlpxucan/WizardLM)

</blockquote>

# Advanced usage
For advanced users, you can access the [llama.cpp C-API](https://github.com/ggerganov/llama.cpp/blob/master/llama.h) functions directly to make your own logic.
All functions from `llama.h` are exposed with the binding module [`_pyllamacpp`](https://abdeladim-s.github.io/pyllamacpp/#_pyllamacpp).

# API reference
You can check the [API reference documentation](https://abdeladim-s.github.io/pyllamacpp/) for more details.

# FAQs
* [How to build pyllamacpp without AVX2 or FMA.](https://github.com/nomic-ai/pygpt4all/issues/71)
* [pyllamacpp does not support M1 chips MacBook](https://github.com/nomic-ai/pygpt4all/issues/57#issuecomment-1519197837)
* [ImportError: DLL failed while importing _pyllamacpp](https://github.com/nomic-ai/pygpt4all/issues/53#issuecomment-1529772010)

# Discussions and contributions
If you find any bug, please open an [issue](https://github.com/abdeladim-s/pyllamacpp/issues).

If you have any feedback, or you want to share how you are using this project, feel free to use the [Discussions](https://github.com/abdeladim-s/pyllamacpp/discussions) and open a new topic.

# License

This project is licensed under the same license as [llama.cpp](https://github.com/ggerganov/llama.cpp/blob/master/LICENSE) (MIT  [License](./LICENSE)).


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pyllamacpp",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Abdeladim Sadiki",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/76/a9/8866e5dec76fd96108f125533843927aa243ceb8acf1a280521f96e1f3f2/pyllamacpp-2.4.3.tar.gz",
    "platform": null,
    "description": "# PyLLaMACpp\n[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n[![PyPi version](https://badgen.net/pypi/v/pyllamacpp)](https://pypi.org/project/pyllamacpp/)\n[![Downloads](https://static.pepy.tech/badge/pyllamacpp)](https://pepy.tech/project/pyllamacpp)\n<a target=\"_blank\" href=\"https://colab.research.google.com/github/abdeladim-s/pyllamacpp/blob/main/examples/PyLLaMACpp.ipynb\">\n  <img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/>\n</a>\n\n* Python bindings for [llama.cpp](https://github.com/ggerganov/llama.cpp).\n* If you are looking to run **Falcon** models, take a look at the [ggllm branch](https://github.com/abdeladim-s/pyllamacpp/tree/ggllm.cpp).\n\n<p align=\"center\">\n  <img src=\"./docs/demo.gif\">\n</p>\n\n\nFor those who don't know, `llama.cpp` is a port of Facebook's LLaMA model in pure C/C++:\n\n<blockquote>\n\n- Without dependencies\n- Apple silicon first-class citizen - optimized via ARM NEON\n- AVX2 support for x86 architectures\n- Mixed F16 / F32 precision\n- 4-bit quantization support\n- Runs on the CPU\n\n</blockquote>\n\n# Table of contents\n<!-- TOC -->\n* [Installation](#installation)\n* [CLI](#cli-)\n* [Tutorial](#tutorial)\n    * [Quick start](#quick-start)\n    * [Interactive Dialogue](#interactive-dialogue)\n    * [Attribute a persona to the language model](#attribute-a-persona-to-the-language-model)\n    * [Example usage with langchain](#example-usage-with-langchain)\n* [Supported models](#supported-models)\n* [Advanced usage](#advanced-usage)\n* [API reference](#api-reference)\n* [FAQs](#faqs)\n* [Discussions and contributions](#discussions-and-contributions)\n* [License](#license)\n<!-- TOC -->\n\n# Installation\n1. The easy way is to install the prebuilt wheels\n```bash\npip install pyllamacpp\n```\n\nHowever, the compilation process of `llama.cpp` is taking into account the architecture of the target `CPU`, \nso you might need to build it from source:\n\n```shell\npip install git+https://github.com/abdeladim-s/pyllamacpp.git\n```\n\n:warning: **Note**\n\n[This PR](https://github.com/ggerganov/llama.cpp/pull/1405) introduced some breaking changes.\nIf you want to use older models, use version `2.2.0`:\n```bash\npip install pyllamacpp==2.2.0\n```\n\n# CLI \n\nYou can run the following simple command line interface to test the package once it is installed:\n\n```shell\npyllamacpp path/to/model.bin\n```\n\n```shell\npyllamacpp -h\n\nusage: pyllamacpp [-h] [--n_ctx N_CTX] [--n_parts N_PARTS] [--seed SEED] [--f16_kv F16_KV] [--logits_all LOGITS_ALL]\n                  [--vocab_only VOCAB_ONLY] [--use_mlock USE_MLOCK] [--embedding EMBEDDING] [--n_predict N_PREDICT] [--n_threads N_THREADS]\n                  [--repeat_last_n REPEAT_LAST_N] [--top_k TOP_K] [--top_p TOP_P] [--temp TEMP] [--repeat_penalty REPEAT_PENALTY]\n                  [--n_batch N_BATCH]\n                  model\n\nThis is like a chatbot, You can start the conversation with `Hi, can you help me ?` Pay attention though that it may hallucinate!\n\npositional arguments:\n  model                 The path of the model file\n\noptions:\n  -h, --help            show this help message and exit\n  --n_ctx N_CTX         text context\n  --n_parts N_PARTS\n  --seed SEED           RNG seed\n  --f16_kv F16_KV       use fp16 for KV cache\n  --logits_all LOGITS_ALL\n                        the llama_eval() call computes all logits, not just the last one\n  --vocab_only VOCAB_ONLY\n                        only load the vocabulary, no weights\n  --use_mlock USE_MLOCK\n                        force system to keep model in RAM\n  --embedding EMBEDDING\n                        embedding mode only\n  --n_predict N_PREDICT\n                        Number of tokens to predict\n  --n_threads N_THREADS\n                        Number of threads\n  --repeat_last_n REPEAT_LAST_N\n                        Last n tokens to penalize\n  --top_k TOP_K         top_k\n  --top_p TOP_P         top_p\n  --temp TEMP           temp\n  --repeat_penalty REPEAT_PENALTY\n                        repeat_penalty\n  --n_batch N_BATCH     batch size for prompt processing\n```\n\n# Tutorial\n\n### Quick start\n\n```python\nfrom pyllamacpp.model import Model\n\nmodel = Model(model_path='/path/to/model.bin')\nfor token in model.generate(\"Tell me a joke ?\\n\"):\n    print(token, end='', flush=True)\n```\n\n### Interactive Dialogue\nYou can set up an interactive dialogue by simply keeping the `model` variable alive:\n\n```python\nfrom pyllamacpp.model import Model\n\nmodel = Model(model_path='/path/to/model.bin')\nwhile True:\n    try:\n        prompt = input(\"You: \", flush=True)\n        if prompt == '':\n            continue\n        print(f\"AI:\", end='')\n        for token in model.generate(prompt):\n            print(f\"{token}\", end='', flush=True)\n        print()\n    except KeyboardInterrupt:\n        break\n```\n### Attribute a persona to the language model\n\nThe following is an example showing how to _\"attribute a persona to the language model\"_ :\n\n```python\nfrom pyllamacpp.model import Model\n\nprompt_context = \"\"\"Act as Bob. Bob is helpful, kind, honest,\nand never fails to answer the User's requests immediately and with precision. \n\nUser: Nice to meet you Bob!\nBob: Welcome! I'm here to assist you with anything you need. What can I do for you today?\n\"\"\"\n\nprompt_prefix = \"\\nUser:\"\nprompt_suffix = \"\\nBob:\"\n\nmodel = Model(model_path='/path/to/model.bin',\n              n_ctx=512,\n              prompt_context=prompt_context,\n              prompt_prefix=prompt_prefix,\n              prompt_suffix=prompt_suffix)\n\nwhile True:\n  try:\n    prompt = input(\"User: \")\n    if prompt == '':\n      continue\n    print(f\"Bob: \", end='')\n    for token in model.generate(prompt,\n                                antiprompt='User:',\n                                n_threads=6,\n                                n_batch=1024,\n                                n_predict=256,\n                                n_keep=48,\n                                repeat_penalty=1.0, ):\n      print(f\"{token}\", end='', flush=True)\n    print()\n  except KeyboardInterrupt:\n    break\n```\n\n### Example usage with [langchain](https://github.com/langchain-ai/langchain)\n\n```python\nfrom pyllamacpp.langchain_llm import PyllamacppLLM\n\nllm = PyllamacppLLM(\n    model=\"path/to/ggml/model\",\n    temp=0.75,\n    n_predict=50,\n    top_p=1,\n    top_k=40\n)\n\ntemplate = \"\\n\\n##Instruction:\\n:{question}\\n\\n##Response:\\n\"\n\nprompt = PromptTemplate(template=template, input_variables=[\"question\"])\n\nllm_chain = LLMChain(prompt=prompt, llm=llm)\n\nquestion = \"What are large language models?\"\nanswer = llm_chain.run(question)\nprint(answer)\n```\n\n# Supported models\nAll models supported by `llama.cpp` should be supported basically:\n\n<blockquote>\n\n**Supported models:**\n\n- [X] LLaMA \ud83e\udd99\n- [X] [Alpaca](https://github.com/ggerganov/llama.cpp#instruction-mode-with-alpaca)\n- [X] [GPT4All](https://github.com/ggerganov/llama.cpp#using-gpt4all)\n- [X] [Chinese LLaMA / Alpaca](https://github.com/ymcui/Chinese-LLaMA-Alpaca)\n- [X] [Vigogne (French)](https://github.com/bofenghuang/vigogne)\n- [X] [Vicuna](https://github.com/ggerganov/llama.cpp/discussions/643#discussioncomment-5533894)\n- [X] [Koala](https://bair.berkeley.edu/blog/2023/04/03/koala/)\n- [X] [OpenBuddy \ud83d\udc36 (Multilingual)](https://github.com/OpenBuddy/OpenBuddy)\n- [X] [Pygmalion 7B / Metharme 7B](#using-pygmalion-7b--metharme-7b)\n- [X] [WizardLM](https://github.com/nlpxucan/WizardLM)\n\n</blockquote>\n\n# Advanced usage\nFor advanced users, you can access the [llama.cpp C-API](https://github.com/ggerganov/llama.cpp/blob/master/llama.h) functions directly to make your own logic.\nAll functions from `llama.h` are exposed with the binding module [`_pyllamacpp`](https://abdeladim-s.github.io/pyllamacpp/#_pyllamacpp).\n\n# API reference\nYou can check the [API reference documentation](https://abdeladim-s.github.io/pyllamacpp/) for more details.\n\n# FAQs\n* [How to build pyllamacpp without AVX2 or FMA.](https://github.com/nomic-ai/pygpt4all/issues/71)\n* [pyllamacpp does not support M1 chips MacBook](https://github.com/nomic-ai/pygpt4all/issues/57#issuecomment-1519197837)\n* [ImportError: DLL failed while importing _pyllamacpp](https://github.com/nomic-ai/pygpt4all/issues/53#issuecomment-1529772010)\n\n# Discussions and contributions\nIf you find any bug, please open an [issue](https://github.com/abdeladim-s/pyllamacpp/issues).\n\nIf you have any feedback, or you want to share how you are using this project, feel free to use the [Discussions](https://github.com/abdeladim-s/pyllamacpp/discussions) and open a new topic.\n\n# License\n\nThis project is licensed under the same license as [llama.cpp](https://github.com/ggerganov/llama.cpp/blob/master/LICENSE) (MIT  [License](./LICENSE)).\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python bindings for llama.cpp",
    "version": "2.4.3",
    "project_urls": {
        "Documentation": "https://abdeladim-s.github.io/pyllamacpp",
        "Source": "https://github.com/abdeladim-s/pyllamacpp",
        "Tracker": "https://github.com/abdeladim-s/pyllamacpp/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36b784e9278ae37fef928e58cc3b165911224f53d6d9566dddfa2a6ee7bfe270",
                "md5": "c62800583bd73b6f76e1371187958bea",
                "sha256": "1f47efac33819a1cb0d20cf4dfe77102848de3776febf43b9d1f399ad6c6a0ee"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c62800583bd73b6f76e1371187958bea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 627340,
            "upload_time": "2024-02-28T23:04:02",
            "upload_time_iso_8601": "2024-02-28T23:04:02.291303Z",
            "url": "https://files.pythonhosted.org/packages/36/b7/84e9278ae37fef928e58cc3b165911224f53d6d9566dddfa2a6ee7bfe270/pyllamacpp-2.4.3-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a58c90d03ae80c7c895842298bf45caa9d30df2d64173c2aa1d633a9a252c93e",
                "md5": "b046368fda946ed62f3140b42ab8a755",
                "sha256": "f7026161b8166d8644164a40ff9ead15daf82151d7a3a3158b3f0f3af894b601"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b046368fda946ed62f3140b42ab8a755",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 340820,
            "upload_time": "2024-02-28T23:04:04",
            "upload_time_iso_8601": "2024-02-28T23:04:04.327372Z",
            "url": "https://files.pythonhosted.org/packages/a5/8c/90d03ae80c7c895842298bf45caa9d30df2d64173c2aa1d633a9a252c93e/pyllamacpp-2.4.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fe376738a25750a76542595c96e9d795eff51920de566053abb0648d7af2c28",
                "md5": "796165ef20587113e9fa246b38a8a6cd",
                "sha256": "828cdef8a3cda5e302da2822ebd308ec0566139cf498c6af9253c153386aefe7"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "796165ef20587113e9fa246b38a8a6cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 388202,
            "upload_time": "2024-02-28T23:03:53",
            "upload_time_iso_8601": "2024-02-28T23:03:53.919868Z",
            "url": "https://files.pythonhosted.org/packages/0f/e3/76738a25750a76542595c96e9d795eff51920de566053abb0648d7af2c28/pyllamacpp-2.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84a17542525026113416b95fcbe29225932b025488542301354fbb039d45a33d",
                "md5": "5001c4b458fcd7a4ff6cbfafd1838850",
                "sha256": "40f25bde38a221d7a43b4c37e0254c4ff78213b1e25160d3bab60c601213bb7c"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5001c4b458fcd7a4ff6cbfafd1838850",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 362028,
            "upload_time": "2024-02-28T23:03:55",
            "upload_time_iso_8601": "2024-02-28T23:03:55.486982Z",
            "url": "https://files.pythonhosted.org/packages/84/a1/7542525026113416b95fcbe29225932b025488542301354fbb039d45a33d/pyllamacpp-2.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25b078b8f2e262e8e8cbae2a10486de8288930a85a5539e50ed3cbdbaaf8440a",
                "md5": "9972649a36a54e8f8e8efccb8bc3fdaf",
                "sha256": "f4fbb9fc877669c5541979e56eeaea8ec25ae0ae67dd60fe739ec647d170d89d"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9972649a36a54e8f8e8efccb8bc3fdaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 956423,
            "upload_time": "2024-02-28T23:03:56",
            "upload_time_iso_8601": "2024-02-28T23:03:56.700961Z",
            "url": "https://files.pythonhosted.org/packages/25/b0/78b8f2e262e8e8cbae2a10486de8288930a85a5539e50ed3cbdbaaf8440a/pyllamacpp-2.4.3-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ec5374482540f073df91eb61f7f64a8343bf31f956fd3a160ccaa12d27d9574",
                "md5": "80a5493e55a89e8ae138c52f1b1b9326",
                "sha256": "59752fa7830d503c2463c5549f5740d0279f3cff41e6130c2830cc51a1de4b02"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80a5493e55a89e8ae138c52f1b1b9326",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 881263,
            "upload_time": "2024-02-28T23:03:57",
            "upload_time_iso_8601": "2024-02-28T23:03:57.912739Z",
            "url": "https://files.pythonhosted.org/packages/7e/c5/374482540f073df91eb61f7f64a8343bf31f956fd3a160ccaa12d27d9574/pyllamacpp-2.4.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adb8b6be337c2e1f571ffff9fd5e69105dc1eb4c50c33c1e0c22e9b7acb33bf3",
                "md5": "0a66d7c28dc3a1ddfd31787a542a99f3",
                "sha256": "1381a00535aaa9e03ca773ef44fa0ff4d53c07a383186ee65714c2c0c187beda"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "0a66d7c28dc3a1ddfd31787a542a99f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 248560,
            "upload_time": "2024-02-28T23:04:07",
            "upload_time_iso_8601": "2024-02-28T23:04:07.092167Z",
            "url": "https://files.pythonhosted.org/packages/ad/b8/b6be337c2e1f571ffff9fd5e69105dc1eb4c50c33c1e0c22e9b7acb33bf3/pyllamacpp-2.4.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a9f673174533113af4b0e431645585a11a7845ae2e83783ad68306a81c56f9f",
                "md5": "7e8874b1f693f0c04a69b978d7b81176",
                "sha256": "b0f76537a03abed4a5043c1fff721e7be46967649842fb4dde7ee1fd60144e0c"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7e8874b1f693f0c04a69b978d7b81176",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 293654,
            "upload_time": "2024-02-28T23:04:09",
            "upload_time_iso_8601": "2024-02-28T23:04:09.799114Z",
            "url": "https://files.pythonhosted.org/packages/1a/9f/673174533113af4b0e431645585a11a7845ae2e83783ad68306a81c56f9f/pyllamacpp-2.4.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f26cc2f7de0095dee75240ab00566c7d48d06a20f1f786461970cf5a19f7535",
                "md5": "640f23f344cc66c31d2e8a4dcc70962e",
                "sha256": "b23f26479d9c13d846f2f035b2162385ea9dbc6542e9dbe473d6a7360b0f2880"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "640f23f344cc66c31d2e8a4dcc70962e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 627316,
            "upload_time": "2024-02-28T23:04:11",
            "upload_time_iso_8601": "2024-02-28T23:04:11.743169Z",
            "url": "https://files.pythonhosted.org/packages/2f/26/cc2f7de0095dee75240ab00566c7d48d06a20f1f786461970cf5a19f7535/pyllamacpp-2.4.3-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ac78452a74a4acf393669b9409deff5919be66c4b8738133b469cc0521d188a",
                "md5": "baf84a0d5903c81272e81367540c112b",
                "sha256": "8da871ed6cbd8b136c3c8904d097cc58be9521291a947badbeb9f25b8db95a80"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "baf84a0d5903c81272e81367540c112b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 340815,
            "upload_time": "2024-02-28T23:04:14",
            "upload_time_iso_8601": "2024-02-28T23:04:14.123497Z",
            "url": "https://files.pythonhosted.org/packages/7a/c7/8452a74a4acf393669b9409deff5919be66c4b8738133b469cc0521d188a/pyllamacpp-2.4.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8bb678f6dce80dc2b3dd0c6f357c02f9950ee629d9995e7a52d5ac810e28f88",
                "md5": "ddf35a32513515a88cde68ed0549e7df",
                "sha256": "e46462d470c00b89ec6e05f49638e6702fef6e4df0b10ab2127ca28194d0ba92"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ddf35a32513515a88cde68ed0549e7df",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 388215,
            "upload_time": "2024-02-28T23:03:59",
            "upload_time_iso_8601": "2024-02-28T23:03:59.680892Z",
            "url": "https://files.pythonhosted.org/packages/d8/bb/678f6dce80dc2b3dd0c6f357c02f9950ee629d9995e7a52d5ac810e28f88/pyllamacpp-2.4.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35a87c14a63206078320adf74bb9486b8d39a5e38162f2efdf1ea0845037f4f7",
                "md5": "14e48f866c39a7ae829e1eb818a4f974",
                "sha256": "f066f44f0ee426a38e7d2a79a64d4633d9c3e9dc18dd637150f751b07e61a37a"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14e48f866c39a7ae829e1eb818a4f974",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 361981,
            "upload_time": "2024-02-28T23:04:01",
            "upload_time_iso_8601": "2024-02-28T23:04:01.356453Z",
            "url": "https://files.pythonhosted.org/packages/35/a8/7c14a63206078320adf74bb9486b8d39a5e38162f2efdf1ea0845037f4f7/pyllamacpp-2.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4cfb134645196e1aaccc1c5f66ab1a5aea199d8877a16496d562e83b1b70c07",
                "md5": "05d43b6681c5697ce33f7f010569d5a6",
                "sha256": "385a434e378dd9d5be66509d825b6ce38554072446c167de7fc619846cba7516"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "05d43b6681c5697ce33f7f010569d5a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 956370,
            "upload_time": "2024-02-28T23:04:02",
            "upload_time_iso_8601": "2024-02-28T23:04:02.783894Z",
            "url": "https://files.pythonhosted.org/packages/c4/cf/b134645196e1aaccc1c5f66ab1a5aea199d8877a16496d562e83b1b70c07/pyllamacpp-2.4.3-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ebfc93dc3109e80615af2a645613a491dc2195f6102950ebac0a6be6f8c1078",
                "md5": "9bab227b5abbd8f454df2c4dff33042d",
                "sha256": "24518ceb18fe9789fc5f1bb46b8e8b8e031f4a15ff4e8bef222a90c377598480"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9bab227b5abbd8f454df2c4dff33042d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 881271,
            "upload_time": "2024-02-28T23:04:05",
            "upload_time_iso_8601": "2024-02-28T23:04:05.594468Z",
            "url": "https://files.pythonhosted.org/packages/9e/bf/c93dc3109e80615af2a645613a491dc2195f6102950ebac0a6be6f8c1078/pyllamacpp-2.4.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc87ec212c8d5257a0c7de1a2ad690029104d5ca7d8119702248567271a2233d",
                "md5": "252b6bea65da98dd93e77ea5ba08cbed",
                "sha256": "1ea08a83b35e9d68cc71d12402fbec37446d077ef6bea0912785685b48978c46"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "252b6bea65da98dd93e77ea5ba08cbed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 248485,
            "upload_time": "2024-02-28T23:04:16",
            "upload_time_iso_8601": "2024-02-28T23:04:16.639688Z",
            "url": "https://files.pythonhosted.org/packages/cc/87/ec212c8d5257a0c7de1a2ad690029104d5ca7d8119702248567271a2233d/pyllamacpp-2.4.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77ea6e6b5e1a95a4c2015cf92d2f560e19e414e1a8a51509335de295c6e7d2fd",
                "md5": "4c94181686cfa9b0c5b1acc922a1be75",
                "sha256": "9f6f397db537d433b19288f54492013568232818b0d5ea9b8c754c3cdc3c1aa8"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4c94181686cfa9b0c5b1acc922a1be75",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 293567,
            "upload_time": "2024-02-28T23:04:18",
            "upload_time_iso_8601": "2024-02-28T23:04:18.779009Z",
            "url": "https://files.pythonhosted.org/packages/77/ea/6e6b5e1a95a4c2015cf92d2f560e19e414e1a8a51509335de295c6e7d2fd/pyllamacpp-2.4.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e3f6e00c1f5d1faa2d6250cc559af6d02442b559b6b7d0b33be82cd3778d642",
                "md5": "8e991c8c63a11f555a0cbb9c838d1eeb",
                "sha256": "460ef4e41748caa087bbe7391a8406a3f8a7be2bddb4ae69aa943c234c58c6b9"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8e991c8c63a11f555a0cbb9c838d1eeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 634940,
            "upload_time": "2024-02-28T23:04:20",
            "upload_time_iso_8601": "2024-02-28T23:04:20.779142Z",
            "url": "https://files.pythonhosted.org/packages/0e/3f/6e00c1f5d1faa2d6250cc559af6d02442b559b6b7d0b33be82cd3778d642/pyllamacpp-2.4.3-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03000cc57d39284c49ada0e6719564e7571afa116e669dc7859b8175f0ffc9e4",
                "md5": "710c109c7d7feefc1f9141e557531480",
                "sha256": "0d4032cbf59d36366ab9b32cb884d31cf52d16bcdbec5c883c842a0ac725e2ac"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "710c109c7d7feefc1f9141e557531480",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 345897,
            "upload_time": "2024-02-28T23:04:22",
            "upload_time_iso_8601": "2024-02-28T23:04:22.928766Z",
            "url": "https://files.pythonhosted.org/packages/03/00/0cc57d39284c49ada0e6719564e7571afa116e669dc7859b8175f0ffc9e4/pyllamacpp-2.4.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7730706494fcae8a62d5cc4a06519f5a023f9db20df272fe8f6cff1382dbf7f",
                "md5": "dc64e8164b99eb3685d51a0f10816b22",
                "sha256": "91572ea63a94c9dd3e228556c3e8f097e922027486229f9cdc26a88c7718a706"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dc64e8164b99eb3685d51a0f10816b22",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 388607,
            "upload_time": "2024-02-28T23:04:08",
            "upload_time_iso_8601": "2024-02-28T23:04:08.131380Z",
            "url": "https://files.pythonhosted.org/packages/b7/73/0706494fcae8a62d5cc4a06519f5a023f9db20df272fe8f6cff1382dbf7f/pyllamacpp-2.4.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6a4233f6a1831898ac8b25f2068902b74643bd639eb6f05ed903688083505ff",
                "md5": "9e88879998f55ee96ff593bf27497b2d",
                "sha256": "0472f3c3530a837338d83d5d27f38da616a9facd481a8e25d1370ffef8ec0add"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e88879998f55ee96ff593bf27497b2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 361311,
            "upload_time": "2024-02-28T23:04:10",
            "upload_time_iso_8601": "2024-02-28T23:04:10.393269Z",
            "url": "https://files.pythonhosted.org/packages/e6/a4/233f6a1831898ac8b25f2068902b74643bd639eb6f05ed903688083505ff/pyllamacpp-2.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb709f1aaf641c145d02b734b4e8a2809c7d3383af3773bec740c27f1fcd1fe6",
                "md5": "bd69d05390d6b2646e5eaf781c142dc7",
                "sha256": "3c321f14d6f7cb973e0caf27afeb9ac13dab608687886bb16f9f6b31fd2aeb1a"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bd69d05390d6b2646e5eaf781c142dc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 954918,
            "upload_time": "2024-02-28T23:04:12",
            "upload_time_iso_8601": "2024-02-28T23:04:12.454362Z",
            "url": "https://files.pythonhosted.org/packages/fb/70/9f1aaf641c145d02b734b4e8a2809c7d3383af3773bec740c27f1fcd1fe6/pyllamacpp-2.4.3-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7ae5c205b5fc04a254b30bdbc9ad61e54b6ae9161a852e3b240480faf904538",
                "md5": "895e6fbc7f15b47bdea38ac9f471561b",
                "sha256": "46ef99c10a3fa32044fd29cac8ff38a8e6ba39d02805e90c52f899fee557d6dd"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "895e6fbc7f15b47bdea38ac9f471561b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 880282,
            "upload_time": "2024-02-28T23:04:15",
            "upload_time_iso_8601": "2024-02-28T23:04:15.237257Z",
            "url": "https://files.pythonhosted.org/packages/b7/ae/5c205b5fc04a254b30bdbc9ad61e54b6ae9161a852e3b240480faf904538/pyllamacpp-2.4.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33907efa69fd16fa6a61fbd82c4611836a10a2814449fc0056cde7441e6b212b",
                "md5": "2409abb42f6fbb2de919e9e3ac6ed1ab",
                "sha256": "e9df4171f1ccef676432c681927be904425f0d764aadc15753e78e77e04a5ecf"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "2409abb42f6fbb2de919e9e3ac6ed1ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 249647,
            "upload_time": "2024-02-28T23:04:25",
            "upload_time_iso_8601": "2024-02-28T23:04:25.055883Z",
            "url": "https://files.pythonhosted.org/packages/33/90/7efa69fd16fa6a61fbd82c4611836a10a2814449fc0056cde7441e6b212b/pyllamacpp-2.4.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c4a3e75dcd86aaf895d9d26741ede1cc912ee9779b9eda421cc2acf30b0547e",
                "md5": "9d767b67682ca985e19dbcd032fc6c1d",
                "sha256": "8dbc9ab54b78b2bc11642c8bf472a1e1298d8f839fa9b3ed2d714786e12eeed4"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9d767b67682ca985e19dbcd032fc6c1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 294330,
            "upload_time": "2024-02-28T23:04:27",
            "upload_time_iso_8601": "2024-02-28T23:04:27.313194Z",
            "url": "https://files.pythonhosted.org/packages/3c/4a/3e75dcd86aaf895d9d26741ede1cc912ee9779b9eda421cc2acf30b0547e/pyllamacpp-2.4.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "810b70dc5aec3eb1afdc75e629de54199dbd31ecf7b8385b43ee058c049b3996",
                "md5": "4c729dcfa425fcc83231473dcc6d9cbb",
                "sha256": "56d80971290ab66bb3ec63add6ea2eeecfc11df334c714290756932865743768"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4c729dcfa425fcc83231473dcc6d9cbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 627421,
            "upload_time": "2024-02-28T23:04:29",
            "upload_time_iso_8601": "2024-02-28T23:04:29.531921Z",
            "url": "https://files.pythonhosted.org/packages/81/0b/70dc5aec3eb1afdc75e629de54199dbd31ecf7b8385b43ee058c049b3996/pyllamacpp-2.4.3-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dd4c57e5a1a7a138422735eab42e34600b2b007386715ae56bca07f19c79697",
                "md5": "1ddb4ab176a4a2ec12862469d7e812b8",
                "sha256": "0a4ded37e37b29d22e75157469d5b537cb43c19eaabf8da8191bf431f585eab6"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ddb4ab176a4a2ec12862469d7e812b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 340801,
            "upload_time": "2024-02-28T23:04:32",
            "upload_time_iso_8601": "2024-02-28T23:04:32.463736Z",
            "url": "https://files.pythonhosted.org/packages/9d/d4/c57e5a1a7a138422735eab42e34600b2b007386715ae56bca07f19c79697/pyllamacpp-2.4.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f3fd6ff1fd4a08a829508cb0cf49dac1398a9d1b3b81fa8cbd1276151717985",
                "md5": "4c8570a7e6be5b7884bf26ff3ee7715d",
                "sha256": "381845ed6fd5e0203b77c02645f43c3a5972e05584e80fb2c3a7efa5b2ec503d"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4c8570a7e6be5b7884bf26ff3ee7715d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 388115,
            "upload_time": "2024-02-28T23:04:17",
            "upload_time_iso_8601": "2024-02-28T23:04:17.200569Z",
            "url": "https://files.pythonhosted.org/packages/8f/3f/d6ff1fd4a08a829508cb0cf49dac1398a9d1b3b81fa8cbd1276151717985/pyllamacpp-2.4.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61294146eaceecc0c059d67bab1c8009feb1f3bda552f87cc01be8a59f167c3f",
                "md5": "4028f116e160dd0988265902d2f6c439",
                "sha256": "7d3b9d1e6f7cd8345ffb6236290e297cabcd7b9d80367a299425a51d25097413"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4028f116e160dd0988265902d2f6c439",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 362029,
            "upload_time": "2024-02-28T23:04:19",
            "upload_time_iso_8601": "2024-02-28T23:04:19.439277Z",
            "url": "https://files.pythonhosted.org/packages/61/29/4146eaceecc0c059d67bab1c8009feb1f3bda552f87cc01be8a59f167c3f/pyllamacpp-2.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "614c9664e2e686d6d8c1445b89e6902d7da1c6ed8f33958140cb6e2df31453b8",
                "md5": "02ab9e679c1e7745e8860627d988f1a4",
                "sha256": "da42a54512d987bfbd5a8b4a90789264b4c0eea8c987e729ebc9f9a3f9ae0b91"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "02ab9e679c1e7745e8860627d988f1a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 955630,
            "upload_time": "2024-02-28T23:04:21",
            "upload_time_iso_8601": "2024-02-28T23:04:21.546557Z",
            "url": "https://files.pythonhosted.org/packages/61/4c/9664e2e686d6d8c1445b89e6902d7da1c6ed8f33958140cb6e2df31453b8/pyllamacpp-2.4.3-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "905d7ddd1aab8711baf066bd7b7dff811ba86ca5862bd051aec0260fc82f0284",
                "md5": "02bf632eeb1360826f123599354353ba",
                "sha256": "012554d261a24a8614c88cb506d1922566247223b0e885854bf6dd3051d048cd"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02bf632eeb1360826f123599354353ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 881083,
            "upload_time": "2024-02-28T23:04:23",
            "upload_time_iso_8601": "2024-02-28T23:04:23.746761Z",
            "url": "https://files.pythonhosted.org/packages/90/5d/7ddd1aab8711baf066bd7b7dff811ba86ca5862bd051aec0260fc82f0284/pyllamacpp-2.4.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "579f51b611269d0b21859ddabab97fc1f66c3e342d9418ef335f55d87cd86dee",
                "md5": "a23c0e34b57f5a5d2c7128fba92b42d4",
                "sha256": "a822c50b7516fc24e944501818ae1f527faf700d3906828811f07b5ee2cf3739"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "a23c0e34b57f5a5d2c7128fba92b42d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 248666,
            "upload_time": "2024-02-28T23:04:34",
            "upload_time_iso_8601": "2024-02-28T23:04:34.555744Z",
            "url": "https://files.pythonhosted.org/packages/57/9f/51b611269d0b21859ddabab97fc1f66c3e342d9418ef335f55d87cd86dee/pyllamacpp-2.4.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ced6758716589b62dfb5949d067a4803116b781f45cd6a35d325042bf3f139b",
                "md5": "34179840d68c320773920d67e2e7b4ff",
                "sha256": "fb0a6b38761ef928ba79c29ce4a7cbcb024bfa7c34a468867ec93e543e27a18a"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "34179840d68c320773920d67e2e7b4ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 293481,
            "upload_time": "2024-02-28T23:04:38",
            "upload_time_iso_8601": "2024-02-28T23:04:38.152960Z",
            "url": "https://files.pythonhosted.org/packages/3c/ed/6758716589b62dfb5949d067a4803116b781f45cd6a35d325042bf3f139b/pyllamacpp-2.4.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55269ad69bc312da81e4125d919a0a1951564b78914a0486624151c19373a3a5",
                "md5": "736333f36848fe244ed4a3875b3df2b7",
                "sha256": "e1ec6ddf601f6927baeab566d68efd495e6ffe3de55fe895210bcc60eed14626"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "736333f36848fe244ed4a3875b3df2b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 627556,
            "upload_time": "2024-02-28T23:04:41",
            "upload_time_iso_8601": "2024-02-28T23:04:41.156812Z",
            "url": "https://files.pythonhosted.org/packages/55/26/9ad69bc312da81e4125d919a0a1951564b78914a0486624151c19373a3a5/pyllamacpp-2.4.3-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2696f8f76c5982221e7b2c548d197ab1d728dacd371a0448db3cdfe7d5aceff6",
                "md5": "fc93f04888b5609cd657b0f2a5ef7cce",
                "sha256": "8d73b70d1d9b5fdd04eb720a522a98d837cf185d0c422f95288fec6df5615f97"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc93f04888b5609cd657b0f2a5ef7cce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 340878,
            "upload_time": "2024-02-28T23:04:43",
            "upload_time_iso_8601": "2024-02-28T23:04:43.304582Z",
            "url": "https://files.pythonhosted.org/packages/26/96/f8f76c5982221e7b2c548d197ab1d728dacd371a0448db3cdfe7d5aceff6/pyllamacpp-2.4.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e24f15a0ffcc2ad191b3345b19e4be54710aa058762a68af428ad95542ad8070",
                "md5": "2b824ef6d4d7f7ead0cdb4c26a660530",
                "sha256": "d67d93cf685d30846b769f50ed53228469f00958798b9ea454d4a34436d38ce4"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2b824ef6d4d7f7ead0cdb4c26a660530",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 388422,
            "upload_time": "2024-02-28T23:04:26",
            "upload_time_iso_8601": "2024-02-28T23:04:26.141645Z",
            "url": "https://files.pythonhosted.org/packages/e2/4f/15a0ffcc2ad191b3345b19e4be54710aa058762a68af428ad95542ad8070/pyllamacpp-2.4.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80f490c4c60776e8e32decb28e4c3f3ec4a92cbdccbe2c992792ab83c75a6074",
                "md5": "548e39b2743044a25e36d8512658778a",
                "sha256": "bb3ffac1819fbb39a485f73142f0c15411eb98e04a2bbd3db1ed4604e3a477ba"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "548e39b2743044a25e36d8512658778a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 362197,
            "upload_time": "2024-02-28T23:04:28",
            "upload_time_iso_8601": "2024-02-28T23:04:28.484541Z",
            "url": "https://files.pythonhosted.org/packages/80/f4/90c4c60776e8e32decb28e4c3f3ec4a92cbdccbe2c992792ab83c75a6074/pyllamacpp-2.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "060d6b4e4bb1245f1abd3ef76eb0c0e17aefd794184297c41ce4db84b9ae04db",
                "md5": "c9d64d2ce820898945305edfbe52b2ed",
                "sha256": "d5b8d857775c5d839431f1157da867a0fd59707608bbab860a2717aaed196336"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c9d64d2ce820898945305edfbe52b2ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 956156,
            "upload_time": "2024-02-28T23:04:30",
            "upload_time_iso_8601": "2024-02-28T23:04:30.151531Z",
            "url": "https://files.pythonhosted.org/packages/06/0d/6b4e4bb1245f1abd3ef76eb0c0e17aefd794184297c41ce4db84b9ae04db/pyllamacpp-2.4.3-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "910cc8ad32b474f0fd41cd311f6ac149198c08314b41658708440b37f10568d3",
                "md5": "38569c4118e7d0e8812d545937fe062a",
                "sha256": "7f96619d68ebd9f903e6281a6df76be03db3333483c5003c239f36a151613200"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38569c4118e7d0e8812d545937fe062a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 881633,
            "upload_time": "2024-02-28T23:04:33",
            "upload_time_iso_8601": "2024-02-28T23:04:33.162586Z",
            "url": "https://files.pythonhosted.org/packages/91/0c/c8ad32b474f0fd41cd311f6ac149198c08314b41658708440b37f10568d3/pyllamacpp-2.4.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f746cf5bf16ceeb02883153b56ecf2062d027712d3d291ee05cdfbf72abd1be9",
                "md5": "3762bdb030447f06aa20965b7974880f",
                "sha256": "ed168d5c9be77f6188f02d4102078eda89320384a7c967dabe4ef7a8419457a2"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "3762bdb030447f06aa20965b7974880f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 248684,
            "upload_time": "2024-02-28T23:04:45",
            "upload_time_iso_8601": "2024-02-28T23:04:45.132273Z",
            "url": "https://files.pythonhosted.org/packages/f7/46/cf5bf16ceeb02883153b56ecf2062d027712d3d291ee05cdfbf72abd1be9/pyllamacpp-2.4.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af70a4f36275a3f26e1fb7b1310108a79c4480346029bf0f66fcf5f8fd76bd90",
                "md5": "498f7e9cd1a8fcc7af632e5fcf25662c",
                "sha256": "bb91d425cc4292a662fd5745f0a184350e0dfd6fafb51a5500c6b007a9c63687"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "498f7e9cd1a8fcc7af632e5fcf25662c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 293528,
            "upload_time": "2024-02-28T23:04:47",
            "upload_time_iso_8601": "2024-02-28T23:04:47.509964Z",
            "url": "https://files.pythonhosted.org/packages/af/70/a4f36275a3f26e1fb7b1310108a79c4480346029bf0f66fcf5f8fd76bd90/pyllamacpp-2.4.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9482ee6f461ec79dd1ed3efb6c360a7e8abaf6e9bb9ecbd415e8c0511a5af384",
                "md5": "ee9597d84220336d2d0667f92fd74c81",
                "sha256": "e171e67ad50be379def15d735e4b9d79a28c2abdc3409b2de40d29ad108d6c09"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee9597d84220336d2d0667f92fd74c81",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 340429,
            "upload_time": "2024-02-28T23:04:50",
            "upload_time_iso_8601": "2024-02-28T23:04:50.467001Z",
            "url": "https://files.pythonhosted.org/packages/94/82/ee6f461ec79dd1ed3efb6c360a7e8abaf6e9bb9ecbd415e8c0511a5af384/pyllamacpp-2.4.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7656caf322e8513def8ff119c82711d9499af257acb9a2e5df0ba4ae0cb0cbf",
                "md5": "ffe656527bf94e12a68669f5b08364df",
                "sha256": "7988314fea2c5482ec2e5274ca1a9348a0a3ad951588c711fd66a158d4170fcf"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ffe656527bf94e12a68669f5b08364df",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 386173,
            "upload_time": "2024-02-28T23:04:36",
            "upload_time_iso_8601": "2024-02-28T23:04:36.918482Z",
            "url": "https://files.pythonhosted.org/packages/e7/65/6caf322e8513def8ff119c82711d9499af257acb9a2e5df0ba4ae0cb0cbf/pyllamacpp-2.4.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbb6b951f2d3ec17a8aff9b008d50a884745c0929cb8f46e4936cf7a31c7c7ae",
                "md5": "0d66d4437758e5d112eb76d5484bc883",
                "sha256": "960083392f94ecdba1e9ad8922b85dcf7d1f3b7ee5eafe1a82b62765115459b7"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d66d4437758e5d112eb76d5484bc883",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 360885,
            "upload_time": "2024-02-28T23:04:39",
            "upload_time_iso_8601": "2024-02-28T23:04:39.752738Z",
            "url": "https://files.pythonhosted.org/packages/fb/b6/b951f2d3ec17a8aff9b008d50a884745c0929cb8f46e4936cf7a31c7c7ae/pyllamacpp-2.4.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6440a43af935a828821d515372e3dd657ae6f2ef4da1b3df81732f795b43af2",
                "md5": "93d09b4be7c327c8e1e02a5e28b45fa0",
                "sha256": "079b8e7d91b38a553fd96a07fa8e82d3531a94a9f51adc48e7e216165c6b1631"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "93d09b4be7c327c8e1e02a5e28b45fa0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 292659,
            "upload_time": "2024-02-28T23:04:54",
            "upload_time_iso_8601": "2024-02-28T23:04:54.475461Z",
            "url": "https://files.pythonhosted.org/packages/d6/44/0a43af935a828821d515372e3dd657ae6f2ef4da1b3df81732f795b43af2/pyllamacpp-2.4.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04ba4e2c6a4fad477fd5b9238d778ee54b12b237152d9a6755b53eab7abd76ff",
                "md5": "03ca20c57c1b5a7316a9cdcc6535e23c",
                "sha256": "37f5a5ddad1e859371d4f2c8d5f1c2c076db3d656323eac55c44060e98cb6424"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03ca20c57c1b5a7316a9cdcc6535e23c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 340572,
            "upload_time": "2024-02-28T23:04:57",
            "upload_time_iso_8601": "2024-02-28T23:04:57.566162Z",
            "url": "https://files.pythonhosted.org/packages/04/ba/4e2c6a4fad477fd5b9238d778ee54b12b237152d9a6755b53eab7abd76ff/pyllamacpp-2.4.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20cf61dfc0428dac3a1780a10ffbc5ae947ba2c582a99d05d6951ca1dd07e5c6",
                "md5": "a55b3da41d3ce67a06f83c51f82e1d8f",
                "sha256": "51345172fd972b6785ff78a3f57667ce2452c9fcb20ab038633b101bd8ce64df"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a55b3da41d3ce67a06f83c51f82e1d8f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 386177,
            "upload_time": "2024-02-28T23:04:41",
            "upload_time_iso_8601": "2024-02-28T23:04:41.497645Z",
            "url": "https://files.pythonhosted.org/packages/20/cf/61dfc0428dac3a1780a10ffbc5ae947ba2c582a99d05d6951ca1dd07e5c6/pyllamacpp-2.4.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6b242830608ebc312ca6e0bcd061bff888057b8f9e001056d45fa4cec9173c2",
                "md5": "906ad7140a76d5fff18c6ac14300d5f6",
                "sha256": "5d83806c344ce56c78abed399f7595de24030e80144db48b9bea050e9d24fc98"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "906ad7140a76d5fff18c6ac14300d5f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 361154,
            "upload_time": "2024-02-28T23:04:43",
            "upload_time_iso_8601": "2024-02-28T23:04:43.896453Z",
            "url": "https://files.pythonhosted.org/packages/c6/b2/42830608ebc312ca6e0bcd061bff888057b8f9e001056d45fa4cec9173c2/pyllamacpp-2.4.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf5ce9ecaf2a661f5f60af5fff40e9e4b397dd1e9c896c613f36ac4d93e5dafb",
                "md5": "3a9255da71b36b812c58db999403a62c",
                "sha256": "744bdaa22832e037c04410451e7ad7855e82725307d2727d78e5c5d286c39c74"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3a9255da71b36b812c58db999403a62c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 292681,
            "upload_time": "2024-02-28T23:04:59",
            "upload_time_iso_8601": "2024-02-28T23:04:59.981017Z",
            "url": "https://files.pythonhosted.org/packages/cf/5c/e9ecaf2a661f5f60af5fff40e9e4b397dd1e9c896c613f36ac4d93e5dafb/pyllamacpp-2.4.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d031dd70a68b9cd60854f34bf3bcab0159c229b945f4b20155a054f07c109dc8",
                "md5": "6e85b1922dd5d3aae1258b5c13b38fa9",
                "sha256": "47da15a464bb5923dc37eb39cc8e00c9e11597d24847364d144d7f3384f61a59"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e85b1922dd5d3aae1258b5c13b38fa9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 340469,
            "upload_time": "2024-02-28T23:05:01",
            "upload_time_iso_8601": "2024-02-28T23:05:01.682313Z",
            "url": "https://files.pythonhosted.org/packages/d0/31/dd70a68b9cd60854f34bf3bcab0159c229b945f4b20155a054f07c109dc8/pyllamacpp-2.4.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ae711e5c465f01456ecb305489024855a263f1c705f02029d3d8504c6ec2eb9",
                "md5": "793a1c86002f43c247d6a2066b967b47",
                "sha256": "ce7e508f07920f062f0b2f3a116bc2acc628388b635f863c4f327a511fe83402"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "793a1c86002f43c247d6a2066b967b47",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 386057,
            "upload_time": "2024-02-28T23:04:46",
            "upload_time_iso_8601": "2024-02-28T23:04:46.451491Z",
            "url": "https://files.pythonhosted.org/packages/8a/e7/11e5c465f01456ecb305489024855a263f1c705f02029d3d8504c6ec2eb9/pyllamacpp-2.4.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c50886d47b874bb02d18e285f59c970d1facbadbb404946a1ba3d41d19413aea",
                "md5": "c5ce110488ef2cda37c25bed7cf278a8",
                "sha256": "7b6cfea464d4d5224f5c2860b57595975a3e51f5a05b7635c43422deae4c7a75"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5ce110488ef2cda37c25bed7cf278a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 360891,
            "upload_time": "2024-02-28T23:04:49",
            "upload_time_iso_8601": "2024-02-28T23:04:49.256665Z",
            "url": "https://files.pythonhosted.org/packages/c5/08/86d47b874bb02d18e285f59c970d1facbadbb404946a1ba3d41d19413aea/pyllamacpp-2.4.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a62df87b2b44a58e7cc5538cfdf31ebb9bc98c2dad1fbe34d14b4c4f40325ca3",
                "md5": "fdbd1add3c6cade06a2805e81d76748b",
                "sha256": "6b129cff89c0e254f0328997e0aff295c8441ac75c98d3316e24238f71223be3"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fdbd1add3c6cade06a2805e81d76748b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 292521,
            "upload_time": "2024-02-28T23:05:03",
            "upload_time_iso_8601": "2024-02-28T23:05:03.696934Z",
            "url": "https://files.pythonhosted.org/packages/a6/2d/f87b2b44a58e7cc5538cfdf31ebb9bc98c2dad1fbe34d14b4c4f40325ca3/pyllamacpp-2.4.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76a98866e5dec76fd96108f125533843927aa243ceb8acf1a280521f96e1f3f2",
                "md5": "f80c192d26cf7f6e8b7cf320541386c2",
                "sha256": "d802e1cffe12a98c1192982265ee10bbfcb4ae4290e28f01b5537011cdd07527"
            },
            "downloads": -1,
            "filename": "pyllamacpp-2.4.3.tar.gz",
            "has_sig": false,
            "md5_digest": "f80c192d26cf7f6e8b7cf320541386c2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 237445,
            "upload_time": "2024-02-28T23:04:52",
            "upload_time_iso_8601": "2024-02-28T23:04:52.447918Z",
            "url": "https://files.pythonhosted.org/packages/76/a9/8866e5dec76fd96108f125533843927aa243ceb8acf1a280521f96e1f3f2/pyllamacpp-2.4.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-28 23:04:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "abdeladim-s",
    "github_project": "pyllamacpp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "requirements": [],
    "lcname": "pyllamacpp"
}
        
Elapsed time: 0.57023s