Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions docs/getting-started/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```

<ProviderCredentialsNote />
</Tab>
<Tab title="Windows">
```powershell
irm https://gomodel.enterpilot.io/install.ps1 | iex
$env:GOMODEL_MASTER_KEY = "change-me"; $env:OPENAI_API_KEY = "sk-..."; gomodel
```

<ProviderCredentialsNote />
</Tab>
<Tab title="Docker">
```bash
Expand All @@ -34,19 +40,14 @@ admin visibility in one place.
-e OPENAI_API_KEY="sk-..." \
enterpilot/gomodel
```

<ProviderCredentialsNote />
</Tab>
<Tab title="Live Demo" icon="monitor-play">
[https://demo.enterpilot.io/admin/dashboard](https://demo.enterpilot.io/admin/dashboard)
</Tab>
Comment on lines +46 to 48

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔒 Security & Privacy | 🟠 Major | ⚡ Quick win

Add a warning against entering sensitive or personal data.

Because this Live Demo links directly to a public dashboard, please explicitly warn users against entering sensitive or personal data to prevent the accidental exposure of PII or actual API keys.

🔒 Proposed fix
   <Tab title="Live Demo" icon="monitor-play">
     [https://demo.enterpilot.io/admin/dashboard](https://demo.enterpilot.io/admin/dashboard)
+
+    <Warning>Do not enter sensitive or personal data.</Warning>
   </Tab>
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@docs/getting-started/quickstart.mdx` around lines 46 - 48, Update the “Live
Demo” tab in the quickstart documentation to add a clear warning not to enter
sensitive, personal, or real API-key data, because the linked dashboard is
public.

</Tabs>

<Note>
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.
</Note>

### 2. Send your first request

Use `curl` or the OpenAI SDKs for Python and JavaScript against the same
Expand Down
9 changes: 9 additions & 0 deletions docs/snippets/provider-credentials-note.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Note>
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.
</Note>