diff --git a/docs/docs/features/ai-models.md b/docs/docs/features/ai-models.md new file mode 100644 index 000000000..08e5bfc3d --- /dev/null +++ b/docs/docs/features/ai-models.md @@ -0,0 +1,11 @@ +--- +title: Powerful AI Models +--- + +- Run AI on your own hardware + - Llama2, StableDiffusion + - Rapidly growing ecosystem of open source, locally run AI +- Connect to cloud-based AI + - ChatGPT + - Claude + - Bard \ No newline at end of file diff --git a/docs/docs/features/control.md b/docs/docs/features/control.md new file mode 100644 index 000000000..e3494b108 --- /dev/null +++ b/docs/docs/features/control.md @@ -0,0 +1,12 @@ +--- +title: Privacy and Data Security +--- + +- Privacy + - Data Security + - Optional Policy Engine for 3rd-party AIs +- Offline-ready + - Airgapped locations +- Prevent a data leak + - Shadow IT + - Personal Information being sent to ChatGPT, corporate IP \ No newline at end of file diff --git a/docs/docs/features/self-hosted.md b/docs/docs/features/self-hosted.md deleted file mode 100644 index c7905bce7..000000000 --- a/docs/docs/features/self-hosted.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Self-Hosted AI ---- - -- Privacy -- Offline-ready -- Fixed cost \ No newline at end of file diff --git a/docs/docs/features/unlimited.md b/docs/docs/features/unlimited.md new file mode 100644 index 000000000..8d1a0c843 --- /dev/null +++ b/docs/docs/features/unlimited.md @@ -0,0 +1,13 @@ +--- +title: Unlimited Use +--- + +- Cost doesn't scale with usage + - Difficult to estimate cost of a project +- ChatGPT costs $2 per GPT-4 call with 32k context (what document would this be equivalent to?) + - Reading in documents is expensive + - Getting ChatGPT to ingest a codebase +- On the other hand + - No surprises at the end of the month + - Use as much as you want + - Predictable costs \ No newline at end of file diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 716edfe04..7a1bfa487 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -150,19 +150,27 @@ const config = { style: "dark", links: [ { - title: "Documentation", + title: "Site", items: [ { - label: "Getting Started", + label: "Home", to: "/", }, { - label: "Guides", - to: "/guides", + label: "Platform", + to: "/platform", }, { - label: "Developer", - to: "/developer", + label: "Use Cases", + to: "/solutions", + }, + { + label: "Docs", + to: "/docs", + }, + { + label: "Hardware", + to: "/hardware", }, { label: "API", diff --git a/docs/sidebars.js b/docs/sidebars.js index c02314e59..5b3363fe1 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -33,7 +33,8 @@ const sidebars = { collapsed: false, link: { type: "doc", id: "features/features" }, items: [ - "features/self-hosted", + "features/ai-models", + "features/control", "features/acceleration", "features/extensions", ],