Skip to content

Commit

Permalink
Remove logo
Browse files Browse the repository at this point in the history
Change some urls

Signed-off-by: Eric Curtin <ecurtin@redhat.com>
  • Loading branch information
ericcurtin committed Jul 24, 2024
1 parent b038432 commit 98af522
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
![image](https://github.com/user-attachments/assets/5db944d7-806f-48b7-bca9-4689255b3b0f)
# Project undergoing rewrite

The project is undergoing a complete rewrite in python3, the dependancy on containers will be removed. It will run on macOS and Linux native at a minimum and will support running and serving from the following types of repos: huggingface, oci, ollama.

You can still play away with the POC though :)

# ramalama

Expand All @@ -10,7 +13,7 @@ The goal of ramalama is to make AI even more boring.
Install ramalama by running this one-liner:

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

## Usage
Expand Down
2 changes: 1 addition & 1 deletion ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ main() {
set -ex -o pipefail

./podman-build.sh
curl -fsSL https://raw.githubusercontent.com/ericcurtin/ramalama/main/install.sh | sudo bash
curl -fsSL https://raw.githubusercontent.com/containers/ramalama/main/install.sh | sudo bash

set +o pipefail
ramalama -h | grep Usage:
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ main() {
TMP="$(mktemp -d)"
trap cleanup EXIT
local from="ramalama"
local url="raw.githubusercontent.com/ericcurtin/ramalama/s/$from"
local url="raw.githubusercontent.com/containers/ramalama/s/$from"
local from="$TMP/$from"
download
install -D -m755 "$from" "$bindir/"
Expand Down
2 changes: 1 addition & 1 deletion ramalama
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ hf_download_with_trim() {

check_if_in_hf_db() {
local host="raw.githubusercontent.com"
local url="https://$host/ericcurtin/ramalama/main/hf-db/$model_name"
local url="https://$host/containers/ramalama/main/hf-db/$model_name"
local image_data
if ! image_available && image_data="$(wcurl 2>&1)"; then
local hf_repo
Expand Down

0 comments on commit 98af522

Please sign in to comment.