docs: openrouter and ollama easy desktop setup (#4195)
This commit is contained in:
@@ -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,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;
|
||||
|
||||
Reference in New Issue
Block a user