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

Commit 6cbcb49

Browse files
louis-janirfanpena
authored andcommitted
chore: rename npm package cortexso (#772)
1 parent 0be10c5 commit 6cbcb49

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

cortex-js/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Ensure that your system meets the following requirements to run Cortex:
4747
- **OS**:
4848
- MacOSX 13.6 or higher.
4949
- Windows 10 or higher.
50-
- Ubuntu 12.04 and later.
50+
- Ubuntu 22.04 and later.
5151
- **RAM (CPU Mode):**
5252
- 8GB for running up to 3B models.
5353
- 16GB for running up to 7B models.
@@ -64,7 +64,7 @@ Ensure that your system meets the following requirements to run Cortex:
6464
To install Cortex CLI, follow the steps below:
6565
1. Install the Cortex NPM package globally:
6666
``` bash
67-
npm i -g @janhq/cortex
67+
npm i -g cortexso
6868
```
6969
> Cortex automatically detects your CPU and GPU, downloading the appropriate CPU instruction sets and required dependencies to optimize GPU performance.
7070
@@ -150,7 +150,7 @@ Run the following command to uninstall Cortex globally on your machine:
150150
151151
```
152152
# Uninstall globally using NPM
153-
npm uninstall -g @janhq/cortex
153+
npm uninstall -g cortexso
154154
```
155155
## Contact Support
156156
- For support, please file a GitHub ticket.

cortex-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@janhq/cortex",
2+
"name": "cortexso",
33
"version": "0.0.1",
44
"description": "Cortex is an openAI-compatible local AI server that developers can use to build LLM apps. It is packaged with a Docker-inspired command-line interface and a Typescript client library. It can be used as a standalone server, or imported as a library.",
55
"author": "Jan <service@jan.ai>",

cortex-js/src/infrastructure/commanders/usecases/init.cli.usecases.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,11 @@ export class InitCliUsecases {
122122
);
123123

124124
if (!toDownloadAsset) {
125-
console.log(`Could not find engine file ${engineFileName}`);
125+
console.log(`Could not find engine ${engineFileName}`);
126126
exit(1);
127127
}
128128

129-
console.log(`Downloading Llama.cpp engine file ${engineFileName}`);
129+
console.log(`Downloading default engine ${engineFileName}`);
130130
const dataFolderPath = await this.fileManagerService.getDataFolderPath();
131131
const engineDir = join(dataFolderPath, 'cortex-cpp');
132132
if (existsSync(engineDir)) rmSync(engineDir, { recursive: true });

cortex-js/src/usecases/cortex/cortex.usecases.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
CORTEX_CPP_HEALTH_Z_URL,
1212
CORTEX_CPP_PROCESS_DESTROY_URL,
1313
} from '@/infrastructure/constants/cortex';
14-
import { Engines } from '@/infrastructure/commanders/types/engine.interface';
1514

1615
@Injectable()
1716
export class CortexUsecases {

0 commit comments

Comments
 (0)