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

Commit dfcf355

Browse files
committed
replace /hub/ to /capabilities/models/sources broken links
1 parent a322bac commit dfcf355

File tree

9 files changed

+27
-28
lines changed

9 files changed

+27
-28
lines changed

docs/docs/capabilities/models/index.mdx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ For details on each format, see the [Model Formats](/docs/capabilities/models/mo
3030
:::
3131

3232
## Built-in Models
33-
Cortex.cpp offers a range of built-in models that include popular open-source options. These models, hosted on HuggingFace as [Cortex Model Repositories](/docs/hub/cortex-hub), are pre-compiled for different engines, enabling each model to have multiple branches in various formats.
33+
Cortex offers a range of [Built-in models](/models) that include popular open-source options.
34+
35+
These models are hosted on [Cortex's HuggingFace](https://huggingface.co/cortexso) and are pre-compiled for different engines, enabling each model to have multiple branches in various formats.
3436

3537
### Built-in Model Variants
3638
Built-in models are made available across the following variants:
@@ -39,10 +41,7 @@ Built-in models are made available across the following variants:
3941
- **By Size**: `7b`, `13b`, and more.
4042
- **By quantizations**: `q4`, `q8`, and more.
4143

42-
:::info
43-
You can see our full list of Built-in Models [here](/models).
44-
:::
45-
4644
## Next steps
47-
- Cortex requires a `model.yaml` file to run a model. Find out more [here](/docs/capabilities/models/model-yaml).
48-
- Cortex supports multiple model hubs hosting built-in models. See details [here](/docs/model-sources).
45+
- See Cortex's list of [Built-in Models](/models).
46+
- Cortex supports multiple model hubs hosting built-in models. See details [here](/docs/capabilities/models/sources).
47+
- Cortex requires a `model.yaml` file to run a model. Find out more [here](/docs/capabilities/models/model-yaml).

docs/docs/capabilities/models/model-yaml.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ The API is accessible at the `/v1/chat/completions` URL and accepts all paramete
217217
218218
With the `llama-cpp` engine, cortex.cpp accept all parameters from [`model.yml` inference section](#Inference Parameters) and accept all parameters from the chat completion API.
219219
220-
:::info
220+
<!-- :::info
221221
You can download all the supported model formats from the following:
222222
- [Cortex Model Repos](/docs/hub/cortex-hub)
223223
- [HuggingFace Model Repos](/docs/hub/hugging-face)
224-
:::
224+
::: -->

docs/docs/capabilities/models/sources/hugging-face.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ To view all available `ONNX` models on HuggingFace, select the `ONNX` tag in the
6363
</Tabs>
6464

6565
## TensorRT-LLM
66-
We are still working to support all available `TensorRT-LLM` models on HuggingFace. For now, Cortex.cpp only supports built-in `TensorRT-LLM` models, which can be downloaded from the [Cortex Model Repos](/docs/hub/cortex-hub). -->
66+
We are still working to support all available `TensorRT-LLM` models on HuggingFace. For now, Cortex.cpp only supports built-in `TensorRT-LLM` models, which can be downloaded from the [Cortex Model Repos](/docs/capabilities/models/sources/cortex-hub). -->

docs/docs/cli/pull.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ import TabItem from "@theme/TabItem";
1010
# `cortex pull`
1111
:::info
1212
This CLI command calls the following API endpoint:
13-
- [Download Model](/api-reference#tag/models/post/v1/models/{modelId}/pull)
13+
- [Download Model](/api-reference#tag/pulling-models/post/v1/models/pull)
1414
:::
1515
This command displays downloaded models, or displays models available for downloading.
1616

1717
There are 3 ways to download models:
18-
- From Cortex's [Built-in models](/docs/hub/cortex-hub): `cortex pull <model_name>`
18+
- From Cortex's [Built-in models](/models): `cortex pull <model_name>`
1919
- HuggingFace repository handle: `cortex pull <author/RepoID>`
2020
- HuggingFace direct URL: `cortex pull <huggingface URL ending with .gguf>`
2121

2222
Each of these will display the model quantizations available, to be selected for download.
2323

24-
For more information, please refer to [Pulling Models](docs/hub/index).
24+
For more information, please refer to [Pulling Models](/docs/capabilities/models/sources).
2525

2626
The downloaded model file will be stored in the [Cortex Data Folder](/docs/architecture/data-folder).
2727

@@ -67,5 +67,5 @@ Select a model (1-9):
6767

6868
| Option | Description | Required | Default value | Example |
6969
| -------------- | ------------------------------------------------- | -------- | ------------- | ----------- |
70-
| `model_id` | The identifier of the model you want to download. You can use the [Built-in models](/docs/hub/cortex-hub) or Supported [HuggingFace models](/docs/hub/hugging-face). | Yes | - | `mistral` |
70+
| `model_id` | The identifier of the model you want to download. | Yes | - | `mistral` |
7171
| `-h`, `--help` | Display help information for the command. | No | - | `-h` |

docs/docs/cli/run.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ You can use the `--verbose` flag to display more detailed output of the internal
3636

3737
| Option | Description | Required | Default value | Example |
3838
|-----------------------------|-----------------------------------------------------------------------------|----------|----------------------------------------------|------------------------|
39-
| `model_id` | The identifier of the model you want to chat with. You can use the [Built-in models](/docs/hub/cortex-hub) or Supported [HuggingFace models](/docs/hub/hugging-face). | Yes | - | `mistral` |
39+
| `model_id` | The identifier of the model you want to chat with. | Yes | - | `mistral` |
4040
| `-h`, `--help` | Display help information for the command. | No | - | `-h` |
4141
<!-- | `-t`, `--thread <thread_id>` | Specify the Thread ID. Defaults to creating a new thread if none specified. | No | - | `-t jan_1717650808` | | `-c` | -->

docs/docs/engines/llamacpp.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ ngl: 41 # Undefined = loaded from model
9999
| `n_probs` | Number of top token probabilities to return in the output. | No |
100100
| `min_keep` | Minimum number of tokens to keep during top-k sampling. | No |
101101

102-
:::info
102+
<!-- :::info
103103
You can download a `GGUF` model from the following:
104-
- [Cortex Model Repos](/docs/hub/cortex-hub)
105-
- [HuggingFace Model Repos](/docs/hub/hugging-face)
106-
:::
104+
- [Cortex Model Repos](/docs/capabilities/models/sources/cortex-hub)
105+
- [HuggingFace Model Repos](/docs/capabilities/models/sources/hugging-face)
106+
::: -->

docs/docs/engines/onnx.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ stream: true # true | false
5454
| `prompt_template` | Template for formatting the prompt, including system messages and instructions. | Yes |
5555

5656

57-
:::info
57+
<!-- :::info
5858
You can download a `ONNX` model from the following:
59-
- [Cortex Model Repos](/docs/hub/cortex-hub)
60-
- [HuggingFace Model Repos](/docs/hub/hugging-face)
61-
:::
59+
- [Cortex Model Repos](/docs/capabilities/models/sources/cortex-hub)
60+
- [HuggingFace Model Repos](/docs/capabilities/models/sources/hugging-face)
61+
::: -->

docs/docs/engines/tensorrt-llm.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ stream: true # true | false
6464
| `text_model` | Indicates if the text model is being used (true or false). | Yes |
6565
| `prompt_template` | Template for formatting the prompt, including system messages and instructions. | Yes |
6666

67-
:::info
67+
<!-- :::info
6868
You can download a `TensorRT-LLM` model from the following:
69-
- [Cortex Model Repos](/docs/hub/cortex-hub)
70-
- [HuggingFace Model Repos](/docs/hub/hugging-face)
69+
- [Cortex Model Repos](/docs/capabilities/models/sources/cortex-hub)
70+
- [HuggingFace Model Repos](/docs/capabilities/models/sources/hugging-face)
7171
- Nvidia Catalog (Coming Soon!)
72-
:::
72+
::: -->

docs/yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2123,7 +2123,7 @@
21232123

21242124
"@huggingface/hub@^0.15.1":
21252125
version "0.15.1"
2126-
resolved "https://registry.yarnpkg.com/@huggingface/hub/-/hub-0.15.1.tgz#1fceb272c7123f152aadc370281c366f97079091"
2126+
resolved "https://registry.yarnpkg.com/@huggingface/capabilities/models/sources/-/hub-0.15.1.tgz#1fceb272c7123f152aadc370281c366f97079091"
21272127
integrity sha512-uHb4aFkJDoGfLeRHfFTjkI36Z8IV6Z1c+KzhMDqUSC56opyr7Mn1Nsx7Rri/C7KDwROhQfBp/fOOqqjTzn6Cgg==
21282128
dependencies:
21292129
"@huggingface/tasks" "^0.10.6"

0 commit comments

Comments
 (0)