microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
docs/_data/navigation.js
60lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | module.exports = { |
| 5 | docs: [ |
| 6 | { |
| 7 | title: "Introduction", |
| 8 | url: "/" |
| 9 | }, |
| 10 | { |
| 11 | title: "Getting Started", |
| 12 | url: "/content/setup/setup-Windows/", |
| 13 | children: [ |
| 14 | { |
| 15 | title: "Linux", |
| 16 | url: "/content/setup/setup-Linux/" |
| 17 | } |
| 18 | , |
| 19 | { |
| 20 | title: "MacOS", |
| 21 | url: "/content/setup/setup-macOS/" |
| 22 | } |
| 23 | , |
| 24 | |
| 25 | { |
| 26 | title: "Windows", |
| 27 | url: "/content/setup/setup-Windows/" |
| 28 | }, |
| 29 | { |
| 30 | title: "WSL", |
| 31 | url: "/content/setup/setup-WSL2/" |
| 32 | } |
| 33 | ] |
| 34 | }, |
| 35 | { |
| 36 | title: "Architecture", |
| 37 | url: "/content/architecture/memory/", |
| 38 | children: [ |
| 39 | { |
| 40 | title: "Memory", |
| 41 | url: "/content/architecture/memory/" |
| 42 | }, |
| 43 | { |
| 44 | title: "Dispatcher", |
| 45 | url: "/content/architecture/dispatcher/" |
| 46 | } |
| 47 | ] |
| 48 | }, |
| 49 | { |
| 50 | title: "Tutorials", |
| 51 | url: "/content/tutorial/agent/", |
| 52 | children: [ |
| 53 | { |
| 54 | title: "Creating an Agent", |
| 55 | url: "/content/tutorial/agent/" |
| 56 | } |
| 57 | ] |
| 58 | } |
| 59 | ] |
| 60 | }; |
| 61 | |