diff --git a/README.md b/README.md index 5cd51ece1..03ff1fd70 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Cortex is the open-source brain for robots: vision, speech, language, tabular, a All other Linux distributions: ```bash -curl -s https://raw.githubusercontent.com/menloresearch/cortex/main/engine/templates/linux/install.sh | sudo bash +curl -s https://raw.githubusercontent.com/menloresearch/cortex.cpp/main/engine/templates/linux/install.sh | sudo bash ``` ### Start the Server diff --git a/docs/docs/installation/linux.mdx b/docs/docs/installation/linux.mdx index debcbce1b..52238014e 100644 --- a/docs/docs/installation/linux.mdx +++ b/docs/docs/installation/linux.mdx @@ -27,12 +27,12 @@ This instruction is for stable releases. For beta and nightly releases, please r - Network installer for all linux distros ```bash - curl -s https://raw.githubusercontent.com/menloresearch/cortex/main/engine/templates/linux/install.sh | sudo bash -s + curl -s https://raw.githubusercontent.com/menloresearch/cortex.cpp/main/engine/templates/linux/install.sh | sudo bash -s ``` - Local installer for Debian-based distros ```bash - curl -s https://raw.githubusercontent.com/menloresearch/cortex/main/engine/templates/linux/install.sh | sudo bash -s -- --deb_local + curl -s https://raw.githubusercontent.com/menloresearch/cortex.cpp/main/engine/templates/linux/install.sh | sudo bash -s -- --deb_local ``` - Parameters diff --git a/engine/README.md b/engine/README.md index dec30887a..00ffe2a59 100644 --- a/engine/README.md +++ b/engine/README.md @@ -1,11 +1,11 @@ # cortex-cpp - Embeddable AI

- cortex-cpplogo + cortex-cpplogo

Documentation - API Reference - - Changelog - Bug reports - Discord + - Changelog - Bug reports - Discord

> ⚠️ **cortex-cpp is currently in Development**: Expect breaking changes and bugs! @@ -41,7 +41,7 @@ Ensure that your system meets the following requirements to run Cortex: ## Quickstart To install Cortex CLI, follow the steps below: -1. Download cortex-cpp here: https://github.com/menloresearch/cortex/releases +1. Download cortex-cpp here: https://github.com/menloresearch/cortex.cpp/releases 2. Install cortex-cpp by running the downloaded file. 3. Download a Model: @@ -121,37 +121,37 @@ Below is the available list of the model parameters you can set when loading a m Stable (Recommended) - + CPU - + CUDA - + Intel - + M1/M2 - + CPU - + CUDA @@ -159,7 +159,7 @@ Below is the available list of the model parameters you can set when loading a m -> Download the latest or older versions of Cortex-cpp at the **[GitHub Releases](https://github.com/menloresearch/cortex/releases)**. +> Download the latest or older versions of Cortex-cpp at the **[GitHub Releases](https://github.com/menloresearch/cortex.cpp/releases)**. ## Manual Build diff --git a/engine/install.bat b/engine/install.bat index f61f05633..cfa2dc238 100644 --- a/engine/install.bat +++ b/engine/install.bat @@ -45,7 +45,7 @@ if "%VERSION%"=="latest" ( ) :: Construct the download URL -set "URL=https://github.com/menloresearch/cortex/releases/download/v%VERSION%/cortex-cpp-%VERSION%-win-amd64%AVX%" +set "URL=https://github.com/menloresearch/cortex.cpp/releases/download/v%VERSION%/cortex-cpp-%VERSION%-win-amd64%AVX%" if "%GPU%"=="true" ( :: If --gpu option is provided, append -cuda to the URL set "URL=%URL%-cuda" diff --git a/engine/install.sh b/engine/install.sh index f0356c774..344da10e0 100644 --- a/engine/install.sh +++ b/engine/install.sh @@ -139,7 +139,7 @@ fi # Construct GitHub API URL and get latest version if not specified if [ "$VERSION" == "latest" ]; then - API_URL="https://api.github.com/repos/menloresearch/cortex/releases/latest" + API_URL="https://api.github.com/repos/menloresearch/cortex.cpp/releases/latest" VERSION=$(curl -s $API_URL | jq -r ".tag_name" | sed 's/^v//') fi