Address Documentation Feedback and Add Reusable Components (#820)

This commit is contained in:
Ebony Louis
2025-01-27 17:53:21 -05:00
committed by GitHub
parent 0488bd006d
commit 3dc4bbb569
5 changed files with 65 additions and 15 deletions
@@ -0,0 +1,29 @@
import React from "react";
import Admonition from "@theme/Admonition";
const RateLimits = () => {
return (
<Admonition type="info" title="Billing">
<a
href="https://aistudio.google.com/app/apikey"
target="_blank"
rel="noopener noreferrer"
>
Google Gemini
</a>{" "}
offers a free tier you can get started with. Otherwise, you'll need to
ensure that you have credits available in your LLM Provider account to
successfully make requests.
<br />
<br />
Some providers also have rate limits on API usage, which can affect your
experience. Check out our{" "}
<a href="/docs/guides/handling-llm-rate-limits" target="_blank">
Handling Rate Limits
</a>{" "}
guide to learn how to efficiently manage these limits while using Goose.
</Admonition>
);
};
export default RateLimits;