Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
feat: Update new guide section
Browse files Browse the repository at this point in the history
  • Loading branch information
hiro-v committed May 16, 2024
1 parent f97ebb0 commit b7d81aa
Show file tree
Hide file tree
Showing 16 changed files with 49 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
"title": "Integrations",
"display": "hidden"
},
"guides": {
"type": "page",
"title": "Guides",
"display": "hidden"
},
"api-reference": {
"type": "page",
"title": "API Reference",
Expand Down
10 changes: 10 additions & 0 deletions src/pages/guides/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"-- Switcher": {
"type": "separator",
"title": "Switcher"
},
"index": "Overview",
"llm": "LLM Guide",
"hardware": "Hardware Guide",
"glossaries": "Glossaries"
}
8 changes: 8 additions & 0 deletions src/pages/guides/glossaries/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"gguf": {
"title": "GGUF and quantization"
},
"data_format": {
"title": "Data format"
}
}
Empty file.
Empty file.
3 changes: 3 additions & 0 deletions src/pages/guides/hardware/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"inference": "Inference"
}
5 changes: 5 additions & 0 deletions src/pages/guides/hardware/inference/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"index": {
"title": "Inferece lifecycle"
}
}
Empty file.
Empty file added src/pages/guides/index.md
Empty file.
3 changes: 3 additions & 0 deletions src/pages/guides/llm/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"architecture": "Architecture"
}
14 changes: 14 additions & 0 deletions src/pages/guides/llm/architecture/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"gpt2": {
"title": "OpenAI GPT2"
},
"llama3": {
"title": "Meta Llama3"
},
"mistral": {
"title": "Mistral"
},
"mixtral": {
"title": "Mixtral"
}
}
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const config: DocsThemeConfig = {
{ title: 'Jan', path: '/docs', Icon: LibraryBig },
{ title: 'Cortex', path: '/cortex', Icon: BrainCircuit },
{ title: 'Integrations', path: '/integrations', Icon: Blocks },
{ title: "Guides", path: "/guides", Icon: Computer }
].map((item) =>
asPath.startsWith(item.path) ? (
<div
Expand Down

0 comments on commit b7d81aa

Please sign in to comment.