docs: openrouter and ollama easy desktop setup (#4195)

This commit is contained in:
dianed-square
2025-08-19 15:27:22 -07:00
committed by GitHub
parent 942ef5b0a3
commit c736a95984
8 changed files with 61 additions and 34 deletions
@@ -0,0 +1,14 @@
import React from "react";
export const DesktopProviderSetup = () => {
return (
<>
<p>On the welcome screen, choose how to configure a provider:</p>
<ul>
<li><strong>OpenRouter</strong> (recommended) - One-click OAuth authentication provides instant access to multiple AI models with built-in rate limiting.</li>
<li><strong>Ollama</strong> - Free local AI that runs privately on your computer. If needed, the setup flow will guide you through installing Ollama and downloading the recommended model.</li>
<li><strong>Other Providers</strong> - Choose from <a href="/goose/docs/getting-started/providers">~20 supported providers</a> including OpenAI, Anthropic, Google Gemini, and others through manual configuration. Be ready to provide your API key.</li>
</ul>
</>
);
};