From 56e6b02c24fc03e558e0945c412baf60a6c14843 Mon Sep 17 00:00:00 2001 From: "Jakub A. W" Date: Mon, 20 Jul 2026 15:52:18 +0200 Subject: [PATCH 1/4] docs(navigation): add live demo link --- docs/docs.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/docs.json b/docs/docs.json index 308b2495..291fabe1 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -34,6 +34,11 @@ ], "navbar": { "links": [ + { + "label": "Live Demo", + "href": "https://demo.enterpilot.io/admin/dashboard", + "icon": "monitor-play" + }, { "type": "github", "href": "https://github.com/ENTERPILOT/GoModel" From b97d44a9e16d0af176b7336d8f0d811031af4174 Mon Sep 17 00:00:00 2001 From: "Jakub A. W" Date: Mon, 20 Jul 2026 16:04:58 +0200 Subject: [PATCH 2/4] docs(quickstart): move live demo link into tabs --- docs/docs.json | 5 ----- docs/getting-started/quickstart.mdx | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/docs/docs.json b/docs/docs.json index 291fabe1..308b2495 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -34,11 +34,6 @@ ], "navbar": { "links": [ - { - "label": "Live Demo", - "href": "https://demo.enterpilot.io/admin/dashboard", - "icon": "monitor-play" - }, { "type": "github", "href": "https://github.com/ENTERPILOT/GoModel" diff --git a/docs/getting-started/quickstart.mdx b/docs/getting-started/quickstart.mdx index 39dfcae0..0233c0c4 100644 --- a/docs/getting-started/quickstart.mdx +++ b/docs/getting-started/quickstart.mdx @@ -35,6 +35,21 @@ admin visibility in one place. enterpilot/gomodel ``` + + Explore the dashboard without installing GoModel. + + + Preview models, usage analytics, and audit logs in a shared demo environment. + + + + Do not enter sensitive data. Demo data is reset regularly. + + From 1e21dd5368cb3f44071a9b82a6262765f62b668b Mon Sep 17 00:00:00 2001 From: "Jakub A. W" Date: Mon, 20 Jul 2026 16:31:58 +0200 Subject: [PATCH 3/4] docs(quickstart): simplify live demo link --- docs/getting-started/quickstart.mdx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/docs/getting-started/quickstart.mdx b/docs/getting-started/quickstart.mdx index 0233c0c4..937a8d89 100644 --- a/docs/getting-started/quickstart.mdx +++ b/docs/getting-started/quickstart.mdx @@ -36,15 +36,7 @@ admin visibility in one place. ``` - Explore the dashboard without installing GoModel. - - - Preview models, usage analytics, and audit logs in a shared demo environment. - + [https://demo.enterpilot.io/admin/dashboard](https://demo.enterpilot.io/admin/dashboard) Do not enter sensitive data. Demo data is reset regularly. From 4436988a932170819b8eb5137acf8007ebd5dc5c Mon Sep 17 00:00:00 2001 From: "Jakub A. W" Date: Mon, 20 Jul 2026 16:39:31 +0200 Subject: [PATCH 4/4] docs(quickstart): scope credential note to install tabs --- docs/getting-started/quickstart.mdx | 22 ++++++++------------- docs/snippets/provider-credentials-note.mdx | 9 +++++++++ 2 files changed, 17 insertions(+), 14 deletions(-) create mode 100644 docs/snippets/provider-credentials-note.mdx diff --git a/docs/getting-started/quickstart.mdx b/docs/getting-started/quickstart.mdx index 937a8d89..2d7a40a7 100644 --- a/docs/getting-started/quickstart.mdx +++ b/docs/getting-started/quickstart.mdx @@ -4,6 +4,8 @@ description: "GoModel AI gateway quick start: run an OpenAI-compatible LLM gatew icon: "rocket" --- +import ProviderCredentialsNote from "/snippets/provider-credentials-note.mdx"; + ## Run GoModel in 30 Seconds GoModel is an OpenAI-compatible AI gateway. You can connect one endpoint and @@ -19,12 +21,16 @@ admin visibility in one place. curl -fsSL https://gomodel.enterpilot.io/install.sh | sh GOMODEL_MASTER_KEY="change-me" OPENAI_API_KEY="sk-..." gomodel ``` + + ```powershell irm https://gomodel.enterpilot.io/install.ps1 | iex $env:GOMODEL_MASTER_KEY = "change-me"; $env:OPENAI_API_KEY = "sk-..."; gomodel ``` + + ```bash @@ -34,26 +40,14 @@ admin visibility in one place. -e OPENAI_API_KEY="sk-..." \ enterpilot/gomodel ``` + + [https://demo.enterpilot.io/admin/dashboard](https://demo.enterpilot.io/admin/dashboard) - - - Do not enter sensitive data. Demo data is reset regularly. - - - Set at least one provider credential or base URL - (`OPENAI_API_KEY`, `ANTHROPIC_API_KEY`, `GEMINI_API_KEY`, - `DEEPSEEK_API_KEY`, `XAI_API_KEY`, `GROQ_API_KEY`, `OPENROUTER_API_KEY`, `KILO_API_KEY`, - `ZAI_API_KEY`, `AZURE_API_KEY` + `AZURE_BASE_URL`, - `ORACLE_API_KEY` + `ORACLE_BASE_URL`, - `OLLAMA_BASE_URL`) or GoModel will have no models to route. GoModel also - works well with additional OpenAI-compatible providers out of the box. - - ### 2. Send your first request Use `curl` or the OpenAI SDKs for Python and JavaScript against the same diff --git a/docs/snippets/provider-credentials-note.mdx b/docs/snippets/provider-credentials-note.mdx new file mode 100644 index 00000000..f8c249c0 --- /dev/null +++ b/docs/snippets/provider-credentials-note.mdx @@ -0,0 +1,9 @@ + + Set at least one provider credential or base URL + (`OPENAI_API_KEY`, `ANTHROPIC_API_KEY`, `GEMINI_API_KEY`, + `DEEPSEEK_API_KEY`, `XAI_API_KEY`, `GROQ_API_KEY`, `OPENROUTER_API_KEY`, `KILO_API_KEY`, + `ZAI_API_KEY`, `AZURE_API_KEY` + `AZURE_BASE_URL`, + `ORACLE_API_KEY` + `ORACLE_BASE_URL`, + `OLLAMA_BASE_URL`) or GoModel will have no models to route. GoModel also + works well with additional OpenAI-compatible providers out of the box. +