ramalama


Nameramalama JSON
Version 0.5.5 PyPI version JSON
download
home_pageNone
SummaryRamaLama is a command line tool for working with AI LLM models.
upload_time2025-02-01 12:41:04
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) 2024 Eric Curtin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords ramalama llama ai
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![RAMALAMA logo](logos/PNG/ramalama-logo-full-vertical-added-bg.png)

# RamaLama

The RamaLama project's goal is to make working with AI boring
through the use of OCI containers.

RamaLama tool facilitates local management and serving of AI Models.

On first run RamaLama inspects your system for GPU support, falling back to CPU support if no GPUs are present.

RamaLama uses container engines like Podman or Docker to pull the appropriate OCI image with all of the software necessary to run an AI Model for your systems setup.

Running in containers eliminates the need for users to configure the host system for AI. After the initialization, RamaLama runs the AI Models within a container based on the OCI image.

RamaLama then pulls AI Models from model registries. Starting a chatbot or a rest API service from a simple single command. Models are treated similarly to how Podman and Docker treat container images.

When both Podman and Docker are installed, RamaLama defaults to Podman, The `RAMALAMA_CONTAINER_ENGINE=docker` environment variable can override this behaviour. When neither are installed RamaLama will attempt to run the model with software on the local system.

RamaLama supports multiple AI model registries types called transports.
Supported transports:


## TRANSPORTS

| Transports    | Web Site                                            |
| ------------- | --------------------------------------------------- |
| HuggingFace   | [`huggingface.co`](https://www.huggingface.co)      |
| Ollama        | [`ollama.com`](https://www.ollama.com)              |
| OCI Container Registries | [`opencontainers.org`](https://opencontainers.org)|
||Examples: [`quay.io`](https://quay.io),  [`Docker Hub`](https://docker.io), and [`Artifactory`](https://artifactory.com)|

RamaLama uses the Ollama registry transport by default. Use the RAMALAMA_TRANSPORTS environment variable to modify the default. `export RAMALAMA_TRANSPORT=huggingface` Changes RamaLama to use huggingface transport.

Individual model transports can be modifies when specifying a model via the `huggingface://`, `oci://`, or `ollama://` prefix.

`ramalama pull huggingface://afrideva/Tiny-Vicuna-1B-GGUF/tiny-vicuna-1b.q2_k.gguf`

To make it easier for users, RamaLama uses shortname files, which container
alias names for fully specified AI Models allowing users to specify the shorter
names when referring to models. RamaLama reads shortnames.conf files if they
exist . These files contain a list of name value pairs for specification of
the model. The following table specifies the order which RamaLama reads the files
. Any duplicate names that exist override previously defined shortnames.

| Shortnames type | Path                                            |
| --------------- | ---------------------------------------- |
| Distribution    | /usr/share/ramalama/shortnames.conf      |
| Administrators  | /etc/ramamala/shortnames.conf            |
| Users           | $HOME/.config/ramalama/shortnames.conf   |

```code
$ cat /usr/share/ramalama/shortnames.conf
[shortnames]
  "tiny" = "ollama://tinyllama"
  "granite" = "huggingface://instructlab/granite-7b-lab-GGUF/granite-7b-lab-Q4_K_M.gguf"
  "granite:7b" = "huggingface://instructlab/granite-7b-lab-GGUF/granite-7b-lab-Q4_K_M.gguf"
  "ibm/granite" = "huggingface://instructlab/granite-7b-lab-GGUF/granite-7b-lab-Q4_K_M.gguf"
  "merlinite" = "huggingface://instructlab/merlinite-7b-lab-GGUF/merlinite-7b-lab-Q4_K_M.gguf"
  "merlinite:7b" = "huggingface://instructlab/merlinite-7b-lab-GGUF/merlinite-7b-lab-Q4_K_M.gguf"
...
```

## Install

## Install via PyPi

RamaLama is available via PyPi [https://pypi.org/project/ramalama](https://pypi.org/project/ramalama)

```
pip install ramalama
```

## Install by script
> [!TIP]
> If you are a macOS user, this is the preferred method.


Install RamaLama by running this one-liner:

```
curl -fsSL https://raw.githubusercontent.com/containers/ramalama/s/install.sh | bash
```

## Hardware Support

| Hardware                           | Enabled |
| ---------------------------------- | ------- |
| CPU                                | :white_check_mark: |
| Apple Silicon GPU (Linux / Asahi)  | :white_check_mark: |
| Apple Silicon GPU (macOS)          | :white_check_mark: |
| Apple Silicon GPU (podman-machine) | :white_check_mark: |
| Nvidia GPU (cuda)                  | :white_check_mark: |
| AMD GPU (rocm)                     | :white_check_mark: |

## COMMANDS

| Command                                                | Description                                                |
| ------------------------------------------------------ | ---------------------------------------------------------- |
| [ramalama(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama.1.md)                      | primary RamaLama man page                                  |
| [ramalama-containers(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-containers.1.md)| list all RamaLama containers                               |
| [ramalama-info(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-info.1.md)                 | display RamaLama configuration information                 |
| [ramalama-list(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-list.1.md)            | list all downloaded AI Models                              |
| [ramalama-login(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-login.1.md)          | login to remote registry                                   |
| [ramalama-logout(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-logout.1.md)        | logout from remote registry                                |
| [ramalama-pull(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-pull.1.md)            | pull AI Model from Model registry to local storage         |
| [ramalama-push(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-push.1.md)            | push AI Model from local storage to remote registry        |
| [ramalama-rm(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-rm.1.md)                | remove AI Model from local storage                         |
| [ramalama-run(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-run.1.md)              | run specified AI Model as a chatbot                        |
| [ramalama-serve(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-serve.1.md)          | serve REST API on specified AI Model                       |
| [ramalama-stop(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-stop.1.md)            | stop named container that is running AI Model              |
| [ramalama-version(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-version.1.md)      | display version of AI Model                                |

## Usage

### Running Models

You can `run` a chatbot on a model using the `run` command. By default, it pulls from the Ollama registry.

Note: RamaLama will inspect your machine for native GPU support and then will
use a container engine like Podman to pull an OCI container image with the
appropriate code and libraries to run the AI Model. This can take a long time to setup, but only on the first run.
```
$ ramalama run instructlab/merlinite-7b-lab
Copying blob 5448ec8c0696 [--------------------------------------] 0.0b / 63.6MiB (skipped: 0.0b = 0.00%)
Copying blob cbd7e392a514 [--------------------------------------] 0.0b / 65.3MiB (skipped: 0.0b = 0.00%)
Copying blob 5d6c72bcd967 done  208.5MiB / 208.5MiB (skipped: 0.0b = 0.00%)
Copying blob 9ccfa45da380 [--------------------------------------] 0.0b / 7.6MiB (skipped: 0.0b = 0.00%)
Copying blob 4472627772b1 [--------------------------------------] 0.0b / 120.0b (skipped: 0.0b = 0.00%)
>
```

After the initial container image has been downloaded, you can interact with
different models, using the container image.
```
$ ramalama run granite3-moe
> Write a hello world application in python

print("Hello World")
```

In a different terminal window see the running podman container.
```
$ podman ps
CONTAINER ID  IMAGE                             COMMAND               CREATED        STATUS        PORTS       NAMES
91df4a39a360  quay.io/ramalama/ramalama:latest  /home/dwalsh/rama...  4 minutes ago  Up 4 minutes              gifted_volhard
```

### Listing Models

You can `list` all models pulled into local storage.

```
$ ramalama list
NAME                                                                MODIFIED     SIZE
ollama://smollm:135m                                                16 hours ago 5.5M
huggingface://afrideva/Tiny-Vicuna-1B-GGUF/tiny-vicuna-1b.q2_k.gguf 14 hours ago 460M
ollama://moondream:latest                                           6 days ago   791M
ollama://phi4:latest                                                6 days ago   8.43 GB
ollama://tinyllama:latest                                           1 week ago   608.16 MB
ollama://granite3-moe:3b                                            1 week ago   1.92 GB
ollama://granite3-moe:latest                                        3 months ago 1.92 GB
ollama://llama3.1:8b                                                2 months ago 4.34 GB
ollama://llama3.1:latest                                            2 months ago 4.34 GB
```
### Pulling Models

You can `pull` a model using the `pull` command. By default, it pulls from the Ollama registry.

```
$ ramalama pull granite3-moe
 31% |████████                    |  250.11 MB/ 783.77 MB  36.95 MB/s       14s
```

### Serving Models

You can `serve` multiple models using the `serve` command. By default, it pulls from the Ollama registry.

```
$ ramalama serve --name mylama llama3
```

### Stopping servers

You can stop a running model if it is running in a container.

```
$ ramalama stop mylama
```

### UI support

To use a UI, run a `ramalama serve` command, then connect via your browser at:

127.0.0.1:8080

## Diagram

```
+---------------------------+
|                           |
| ramalama run granite3-moe |
|                           |
+-------+-------------------+
	|
	|
        |           +------------------+           +------------------+
        |           | Pull inferencing |           | Pull model layer |
        +-----------| runtime (cuda)   |---------->| granite3-moe     |
                    +------------------+           +------------------+
						   | Repo options:    |
						   +-+-------+------+-+
						     |       |      |
						     v       v      v
					     +---------+ +------+ +----------+
					     | Hugging | | OCI  | | Ollama   |
					     | Face    | |      | | Registry |
					     +-------+-+ +---+--+ +-+--------+
						     |       |      |
						     v       v      v
						   +------------------+
						   | Start with       |
						   | cuda runtime     |
						   | and              |
						   | granite3-moe     |
						   +------------------+
```

## In development

Regard this alpha, everything is under development, so expect breaking changes, luckily it's easy to reset everything and re-install:

```
rm -rf /var/lib/ramalama # only required if running as root user
rm -rf $HOME/.local/share/ramalama
```

and install again.

## Credit where credit is due

This project wouldn't be possible without the help of other projects like:

llama.cpp  
whisper.cpp  
vllm  
podman   
huggingface  

so if you like this tool, give some of these repos a :star:, and hey, give us a :star: too while you are at it.

## Community

[`Matrix`](https://matrix.to/#/#ramalama:fedoraproject.org)

## Contributors

Open to contributors

<a href="https://github.com/containers/ramalama/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=containers/ramalama" />
</a>

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "ramalama",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Dan Walsh <dwalsh@redhat.com>, Eric Curtin <ecurtin@redhat.com>",
    "keywords": "ramalama, llama, AI",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/8a/fd/3fbda8474eec5f2d245dc986508910bd1b908a5c177f7e70e5bed82e6f2c/ramalama-0.5.5.tar.gz",
    "platform": null,
    "description": "![RAMALAMA logo](logos/PNG/ramalama-logo-full-vertical-added-bg.png)\n\n# RamaLama\n\nThe RamaLama project's goal is to make working with AI boring\nthrough the use of OCI containers.\n\nRamaLama tool facilitates local management and serving of AI Models.\n\nOn first run RamaLama inspects your system for GPU support, falling back to CPU support if no GPUs are present.\n\nRamaLama uses container engines like Podman or Docker to pull the appropriate OCI image with all of the software necessary to run an AI Model for your systems setup.\n\nRunning in containers eliminates the need for users to configure the host system for AI. After the initialization, RamaLama runs the AI Models within a container based on the OCI image.\n\nRamaLama then pulls AI Models from model registries. Starting a chatbot or a rest API service from a simple single command. Models are treated similarly to how Podman and Docker treat container images.\n\nWhen both Podman and Docker are installed, RamaLama defaults to Podman, The `RAMALAMA_CONTAINER_ENGINE=docker` environment variable can override this behaviour. When neither are installed RamaLama will attempt to run the model with software on the local system.\n\nRamaLama supports multiple AI model registries types called transports.\nSupported transports:\n\n\n## TRANSPORTS\n\n| Transports    | Web Site                                            |\n| ------------- | --------------------------------------------------- |\n| HuggingFace   | [`huggingface.co`](https://www.huggingface.co)      |\n| Ollama        | [`ollama.com`](https://www.ollama.com)              |\n| OCI Container Registries | [`opencontainers.org`](https://opencontainers.org)|\n||Examples: [`quay.io`](https://quay.io),  [`Docker Hub`](https://docker.io), and [`Artifactory`](https://artifactory.com)|\n\nRamaLama uses the Ollama registry transport by default. Use the RAMALAMA_TRANSPORTS environment variable to modify the default. `export RAMALAMA_TRANSPORT=huggingface` Changes RamaLama to use huggingface transport.\n\nIndividual model transports can be modifies when specifying a model via the `huggingface://`, `oci://`, or `ollama://` prefix.\n\n`ramalama pull huggingface://afrideva/Tiny-Vicuna-1B-GGUF/tiny-vicuna-1b.q2_k.gguf`\n\nTo make it easier for users, RamaLama uses shortname files, which container\nalias names for fully specified AI Models allowing users to specify the shorter\nnames when referring to models. RamaLama reads shortnames.conf files if they\nexist . These files contain a list of name value pairs for specification of\nthe model. The following table specifies the order which RamaLama reads the files\n. Any duplicate names that exist override previously defined shortnames.\n\n| Shortnames type | Path                                            |\n| --------------- | ---------------------------------------- |\n| Distribution    | /usr/share/ramalama/shortnames.conf      |\n| Administrators  | /etc/ramamala/shortnames.conf            |\n| Users           | $HOME/.config/ramalama/shortnames.conf   |\n\n```code\n$ cat /usr/share/ramalama/shortnames.conf\n[shortnames]\n  \"tiny\" = \"ollama://tinyllama\"\n  \"granite\" = \"huggingface://instructlab/granite-7b-lab-GGUF/granite-7b-lab-Q4_K_M.gguf\"\n  \"granite:7b\" = \"huggingface://instructlab/granite-7b-lab-GGUF/granite-7b-lab-Q4_K_M.gguf\"\n  \"ibm/granite\" = \"huggingface://instructlab/granite-7b-lab-GGUF/granite-7b-lab-Q4_K_M.gguf\"\n  \"merlinite\" = \"huggingface://instructlab/merlinite-7b-lab-GGUF/merlinite-7b-lab-Q4_K_M.gguf\"\n  \"merlinite:7b\" = \"huggingface://instructlab/merlinite-7b-lab-GGUF/merlinite-7b-lab-Q4_K_M.gguf\"\n...\n```\n\n## Install\n\n## Install via PyPi\n\nRamaLama is available via PyPi [https://pypi.org/project/ramalama](https://pypi.org/project/ramalama)\n\n```\npip install ramalama\n```\n\n## Install by script\n> [!TIP]\n> If you are a macOS user, this is the preferred method.\n\n\nInstall RamaLama by running this one-liner:\n\n```\ncurl -fsSL https://raw.githubusercontent.com/containers/ramalama/s/install.sh | bash\n```\n\n## Hardware Support\n\n| Hardware                           | Enabled |\n| ---------------------------------- | ------- |\n| CPU                                | :white_check_mark: |\n| Apple Silicon GPU (Linux / Asahi)  | :white_check_mark: |\n| Apple Silicon GPU (macOS)          | :white_check_mark: |\n| Apple Silicon GPU (podman-machine) | :white_check_mark: |\n| Nvidia GPU (cuda)                  | :white_check_mark: |\n| AMD GPU (rocm)                     | :white_check_mark: |\n\n## COMMANDS\n\n| Command                                                | Description                                                |\n| ------------------------------------------------------ | ---------------------------------------------------------- |\n| [ramalama(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama.1.md)                      | primary RamaLama man page                                  |\n| [ramalama-containers(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-containers.1.md)| list all RamaLama containers                               |\n| [ramalama-info(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-info.1.md)                 | display RamaLama configuration information                 |\n| [ramalama-list(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-list.1.md)            | list all downloaded AI Models                              |\n| [ramalama-login(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-login.1.md)          | login to remote registry                                   |\n| [ramalama-logout(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-logout.1.md)        | logout from remote registry                                |\n| [ramalama-pull(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-pull.1.md)            | pull AI Model from Model registry to local storage         |\n| [ramalama-push(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-push.1.md)            | push AI Model from local storage to remote registry        |\n| [ramalama-rm(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-rm.1.md)                | remove AI Model from local storage                         |\n| [ramalama-run(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-run.1.md)              | run specified AI Model as a chatbot                        |\n| [ramalama-serve(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-serve.1.md)          | serve REST API on specified AI Model                       |\n| [ramalama-stop(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-stop.1.md)            | stop named container that is running AI Model              |\n| [ramalama-version(1)](https://github.com/containers/ramalama/blob/main/docs/ramalama-version.1.md)      | display version of AI Model                                |\n\n## Usage\n\n### Running Models\n\nYou can `run` a chatbot on a model using the `run` command. By default, it pulls from the Ollama registry.\n\nNote: RamaLama will inspect your machine for native GPU support and then will\nuse a container engine like Podman to pull an OCI container image with the\nappropriate code and libraries to run the AI Model. This can take a long time to setup, but only on the first run.\n```\n$ ramalama run instructlab/merlinite-7b-lab\nCopying blob 5448ec8c0696 [--------------------------------------] 0.0b / 63.6MiB (skipped: 0.0b = 0.00%)\nCopying blob cbd7e392a514 [--------------------------------------] 0.0b / 65.3MiB (skipped: 0.0b = 0.00%)\nCopying blob 5d6c72bcd967 done  208.5MiB / 208.5MiB (skipped: 0.0b = 0.00%)\nCopying blob 9ccfa45da380 [--------------------------------------] 0.0b / 7.6MiB (skipped: 0.0b = 0.00%)\nCopying blob 4472627772b1 [--------------------------------------] 0.0b / 120.0b (skipped: 0.0b = 0.00%)\n>\n```\n\nAfter the initial container image has been downloaded, you can interact with\ndifferent models, using the container image.\n```\n$ ramalama run granite3-moe\n> Write a hello world application in python\n\nprint(\"Hello World\")\n```\n\nIn a different terminal window see the running podman container.\n```\n$ podman ps\nCONTAINER ID  IMAGE                             COMMAND               CREATED        STATUS        PORTS       NAMES\n91df4a39a360  quay.io/ramalama/ramalama:latest  /home/dwalsh/rama...  4 minutes ago  Up 4 minutes              gifted_volhard\n```\n\n### Listing Models\n\nYou can `list` all models pulled into local storage.\n\n```\n$ ramalama list\nNAME                                                                MODIFIED     SIZE\nollama://smollm:135m                                                16 hours ago 5.5M\nhuggingface://afrideva/Tiny-Vicuna-1B-GGUF/tiny-vicuna-1b.q2_k.gguf 14 hours ago 460M\nollama://moondream:latest                                           6 days ago   791M\nollama://phi4:latest                                                6 days ago   8.43 GB\nollama://tinyllama:latest                                           1 week ago   608.16 MB\nollama://granite3-moe:3b                                            1 week ago   1.92 GB\nollama://granite3-moe:latest                                        3 months ago 1.92 GB\nollama://llama3.1:8b                                                2 months ago 4.34 GB\nollama://llama3.1:latest                                            2 months ago 4.34 GB\n```\n### Pulling Models\n\nYou can `pull` a model using the `pull` command. By default, it pulls from the Ollama registry.\n\n```\n$ ramalama pull granite3-moe\n 31% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588                    |  250.11 MB/ 783.77 MB  36.95 MB/s       14s\n```\n\n### Serving Models\n\nYou can `serve` multiple models using the `serve` command. By default, it pulls from the Ollama registry.\n\n```\n$ ramalama serve --name mylama llama3\n```\n\n### Stopping servers\n\nYou can stop a running model if it is running in a container.\n\n```\n$ ramalama stop mylama\n```\n\n### UI support\n\nTo use a UI, run a `ramalama serve` command, then connect via your browser at:\n\n127.0.0.1:8080\n\n## Diagram\n\n```\n+---------------------------+\n|                           |\n| ramalama run granite3-moe |\n|                           |\n+-------+-------------------+\n\t|\n\t|\n        |           +------------------+           +------------------+\n        |           | Pull inferencing |           | Pull model layer |\n        +-----------| runtime (cuda)   |---------->| granite3-moe     |\n                    +------------------+           +------------------+\n\t\t\t\t\t\t   | Repo options:    |\n\t\t\t\t\t\t   +-+-------+------+-+\n\t\t\t\t\t\t     |       |      |\n\t\t\t\t\t\t     v       v      v\n\t\t\t\t\t     +---------+ +------+ +----------+\n\t\t\t\t\t     | Hugging | | OCI  | | Ollama   |\n\t\t\t\t\t     | Face    | |      | | Registry |\n\t\t\t\t\t     +-------+-+ +---+--+ +-+--------+\n\t\t\t\t\t\t     |       |      |\n\t\t\t\t\t\t     v       v      v\n\t\t\t\t\t\t   +------------------+\n\t\t\t\t\t\t   | Start with       |\n\t\t\t\t\t\t   | cuda runtime     |\n\t\t\t\t\t\t   | and              |\n\t\t\t\t\t\t   | granite3-moe     |\n\t\t\t\t\t\t   +------------------+\n```\n\n## In development\n\nRegard this alpha, everything is under development, so expect breaking changes, luckily it's easy to reset everything and re-install:\n\n```\nrm -rf /var/lib/ramalama # only required if running as root user\nrm -rf $HOME/.local/share/ramalama\n```\n\nand install again.\n\n## Credit where credit is due\n\nThis project wouldn't be possible without the help of other projects like:\n\nllama.cpp  \nwhisper.cpp  \nvllm  \npodman   \nhuggingface  \n\nso if you like this tool, give some of these repos a :star:, and hey, give us a :star: too while you are at it.\n\n## Community\n\n[`Matrix`](https://matrix.to/#/#ramalama:fedoraproject.org)\n\n## Contributors\n\nOpen to contributors\n\n<a href=\"https://github.com/containers/ramalama/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=containers/ramalama\" />\n</a>\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Eric Curtin  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "RamaLama is a command line tool for working with AI LLM models.",
    "version": "0.5.5",
    "project_urls": {
        "Documentation": "https://github.com/containers/ramalama/tree/main/docs",
        "Homepage": "https://github.com/containers/ramalama",
        "Issues": "https://github.com/containers/ramalama/issues",
        "Repository": "https://github.com/containers/ramalama"
    },
    "split_keywords": [
        "ramalama",
        " llama",
        " ai"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2da74edce9311b0fbfa569604f563dfa5371c062b57b4349a0c41e68deced57c",
                "md5": "b4d755b7730ac1b3a3e5d719b5587721",
                "sha256": "0a864fc4bfb6a32b0a3330b333d4087a37cd18ca5e6694ded94119d6aa01215c"
            },
            "downloads": -1,
            "filename": "ramalama-0.5.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b4d755b7730ac1b3a3e5d719b5587721",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 68387,
            "upload_time": "2025-02-01T12:41:02",
            "upload_time_iso_8601": "2025-02-01T12:41:02.326753Z",
            "url": "https://files.pythonhosted.org/packages/2d/a7/4edce9311b0fbfa569604f563dfa5371c062b57b4349a0c41e68deced57c/ramalama-0.5.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8afd3fbda8474eec5f2d245dc986508910bd1b908a5c177f7e70e5bed82e6f2c",
                "md5": "50a64cac407d834883901f27b76a3829",
                "sha256": "70906cd4ccf52262a7aa0c2fffac13b1cc21d8636a3dd933f7938e5b397760a5"
            },
            "downloads": -1,
            "filename": "ramalama-0.5.5.tar.gz",
            "has_sig": false,
            "md5_digest": "50a64cac407d834883901f27b76a3829",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 53305,
            "upload_time": "2025-02-01T12:41:04",
            "upload_time_iso_8601": "2025-02-01T12:41:04.889679Z",
            "url": "https://files.pythonhosted.org/packages/8a/fd/3fbda8474eec5f2d245dc986508910bd1b908a5c177f7e70e5bed82e6f2c/ramalama-0.5.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-01 12:41:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "containers",
    "github_project": "ramalama",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ramalama"
}
        
Elapsed time: 6.36135s