You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 4, 2025. It is now read-only.
🚧 Cortex.cpp is currently under development. Our documentation outlines the intended behavior of Cortex, which may not yet be fully implemented in the codebase.
11
+
:::info
12
+
Cortex.cpp is in active development. If you have any questions, please reach out to us:
This command starts the Cortex.cpp API server at `localhost:39281`.
24
25
<Tabs>
25
26
<TabItemvalue="MacOs/Linux"label="MacOs/Linux">
26
27
```sh
27
-
# Stable
28
28
cortex start
29
-
30
-
# Beta
31
-
cortex-beta start
32
-
33
-
# Nightly
34
-
cortex-nightly start
35
29
```
36
30
</TabItem>
37
31
<TabItemvalue="Windows"label="Windows">
38
32
```sh
39
-
# Stable
40
33
cortex.exe start
41
-
42
-
# Beta
43
-
cortex-beta.exe start
44
-
45
-
# Nightly
46
-
cortex-nightly.exe start
47
34
```
48
35
</TabItem>
49
36
</Tabs>
37
+
50
38
## Run a Model
51
39
This command downloads the default `gguf` model format from the [Cortex Hub](https://huggingface.co/cortexso), starts the model, and chat with the model.
52
40
<Tabs>
53
41
<TabItemvalue="MacOs/Linux"label="MacOs/Linux">
54
42
```sh
55
-
# Stable
56
43
cortex run mistral
57
-
58
-
# Beta
59
-
cortex-beta run mistral
60
-
61
-
# Nightly
62
-
cortex-nightly run mistral
63
44
```
64
45
</TabItem>
65
46
<TabItemvalue="Windows"label="Windows">
66
47
```sh
67
-
# Stable
68
48
cortex.exe run mistral
69
-
70
-
# Beta
71
-
cortex-beta.exe run mistral
72
-
73
-
# Nightly
74
-
cortex-nightly.exe run mistral
75
49
```
76
50
</TabItem>
77
51
</Tabs>
78
52
:::info
79
-
All model files are stored in the `~users/cortex/models` folder.
53
+
All model files are stored in the `~/cortex/models` folder.
0 commit comments