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>
</>
);
};
@@ -57,7 +57,7 @@ const LinuxDesktopInstallButtons = () => {
return (
<div>
<p>To download Goose Desktop for Linux, choose the buttons below:</p>
<p>To download Goose Desktop for Linux, click one of the buttons below:</p>
<div className="pill-button" style={{ display: 'flex', gap: '0.5rem', flexWrap: 'wrap' }}>
<Link
className="button button--primary button--lg"
@@ -0,0 +1,7 @@
import React from "react";
export const ModelSelectionTip = () => {
return (
<p>Goose relies heavily on tool calling capabilities and currently works best with Claude 4 models.</p>
);
};
+1 -3
View File
@@ -1,7 +1,7 @@
import React from "react";
import Admonition from "@theme/Admonition";
const RateLimits = () => {
export const RateLimits = () => {
return (
<Admonition type="info" title="Billing">
<a
@@ -25,5 +25,3 @@ const RateLimits = () => {
</Admonition>
);
};
export default RateLimits;