docs(chutes): fix broken API keys URL in Chutes provider guide (#113545)

- Problem: the Chutes provider guide links to https://chutes.ai/settings/api-keys
  to create an API key, but that URL returns HTTP 404.
- Fix: point both references (onboarding prose + Related Card href) to the live
  https://chutes.ai/app/settings/api-keys, which is the real app settings area
  (confirmed by chutes.ai/robots.txt: Disallow: /app/settings).
- Verification: curl https://chutes.ai/settings/api-keys -> 404;
  curl https://chutes.ai/app/settings/api-keys -> 200.
This commit is contained in:
Santhi Prakash
2026-07-25 18:50:09 +05:30
committed by GitHub
parent 504e5bbf89
commit 3b9e67decc
+2 -2
View File
@@ -51,7 +51,7 @@ the Chutes catalog.
<Steps>
<Step title="Get an API key">
Create a key at
[chutes.ai/settings/api-keys](https://chutes.ai/settings/api-keys).
[chutes.ai/app/settings/api-keys](https://chutes.ai/app/settings/api-keys).
</Step>
<Step title="Run the API key onboarding flow">
```bash
@@ -146,7 +146,7 @@ Run `openclaw models list --all --provider chutes` for the full list.
<Card title="Chutes" href="https://chutes.ai" icon="arrow-up-right-from-square">
Chutes dashboard and API docs.
</Card>
<Card title="Chutes API keys" href="https://chutes.ai/settings/api-keys" icon="key">
<Card title="Chutes API keys" href="https://chutes.ai/app/settings/api-keys" icon="key">
Create and manage Chutes API keys.
</Card>
</CardGroup>