mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-28 11:34:26 +01:00
Co-authored-by: angiejones <jones.angie@gmail.com> Co-authored-by: Adewale Abati <acekyd01@gmail.com>
30 lines
918 B
JavaScript
30 lines
918 B
JavaScript
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="/goose/docs/guides/handling-llm-rate-limits-with-goose" target="_blank">
|
|
Handling Rate Limits
|
|
</a>{" "}
|
|
guide to learn how to efficiently manage these limits while using Goose.
|
|
</Admonition>
|
|
);
|
|
};
|
|
|
|
export default RateLimits;
|