Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

chore: rename org #432

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/e2e-test-server-linux-and-mac.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

## Example run command
# ./linux-and-mac.sh './jan/plugins/@janhq/inference-plugin/dist/server/nitro_mac_arm64' https://huggingface.co/TheBloke/TinyLlama-1.1B-Chat-v0.3-GGUF/resolve/main/tinyllama-1.1b-chat-v0.3.Q2_K.gguf
# ./linux-and-mac.sh './jan/plugins/@menloresearch/inference-plugin/dist/server/nitro_mac_arm64' https://huggingface.co/TheBloke/TinyLlama-1.1B-Chat-v0.3-GGUF/resolve/main/tinyllama-1.1b-chat-v0.3.Q2_K.gguf

# Check for required arguments
if [[ $# -ne 3 ]]; then
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -149,7 +149,7 @@ jobs:
local max_retries=3
local tag
while [ $retries -lt $max_retries ]; do
tag=$(curl -L https://api.github.com/repos/janhq/cortex.llamacpp/releases/latest | jq -r .tag_name)
tag=$(curl -L https://api.github.com/repos/menloresearch/cortex.llamacpp/releases/latest | jq -r .tag_name)
if [ -n "$tag" ] && [ "$tag" != "null" ]; then
echo $tag
return
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -22,10 +22,10 @@ This guide provides step-by-step instructions for building cortex.llamacpp from
First, you need to clone the cortex.llamacpp repository:

```bash
git clone --recurse https://github.com/janhq/cortex.llamacpp.git
git clone --recurse https://github.com/menloresearch/cortex.llamacpp.git
```

If you don't have git, you can download the source code as a file archive from [cortex.llamacpp GitHub](https://github.com/janhq/cortex.llamacpp).
If you don't have git, you can download the source code as a file archive from [cortex.llamacpp GitHub](https://github.com/menloresearch/cortex.llamacpp).

## Build library with server example
- **On Windows**