Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ A request is any interaction where you ask {% data variables.product.prodname_co

If you have {% data variables.product.prodname_copilot_free_short %} enabled, your {% data variables.product.github %} account comes with up to 2,000 code completions and up to 50 chats or premium requests per month.

If you're on a paid plan, you get unlimited code completions, unlimited agent requests, and unlimited chat interactions using the base model. You also receive a monthly allowance of premium requests, which can be used for advanced chat interactions, code completions using premium models, and other premium features. For an overview of the amount of premium requests included in each plan, see [AUTOTITLE](/copilot/about-github-copilot/subscription-plans-for-github-copilot#comparing-copilot-plans).
If you're on a paid plan, you get unlimited code completions, unlimited agent requests, and unlimited chat interactions using the base model. Rate limiting is in place to accommodate for high demand. Learn more about [current models and usage](/copilot/about-github-copilot/plans-for-github-copilot).

Paid plans also receive a monthly allowance of premium requests, which can be used for advanced chat interactions, code completions using premium models, and other premium features. For an overview of the amount of premium requests included in each plan, see [AUTOTITLE](/copilot/about-github-copilot/subscription-plans-for-github-copilot#comparing-copilot-plans).

## Premium requests

Expand Down
6 changes: 5 additions & 1 deletion data/reusables/copilot/unlimited-premium-requests.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
> [!IMPORTANT]
> Billing for premium requests will be enforced starting on the following dates:
> Certain requests may experience rate limits.
> * Rate limits restrict the number of requests that can be made within a specific time period.
> * High demand may result in rate limiting.
>
> Billing for premium requests will start on the following dates:
>
> * **May 5, 2025**: {% data variables.product.prodname_copilot_free_short %}, {% data variables.product.prodname_copilot_pro_short %}, and {% data variables.product.prodname_copilot_pro_plus_short %}
> * **May 12, 2025**: Self-service (credit card) {% data variables.product.prodname_copilot_business_short %} and {% data variables.product.prodname_copilot_enterprise_short %}
Expand Down
2 changes: 1 addition & 1 deletion src/events/lib/hydro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async function _publish(
) {
const error = new Error(`Failed to send event to Hydro (${statusCode})`)
if (inProd) {
report(error, { statusCode, body })
report(error, { statusCode, body, requestBody })
} else {
throw error
}
Expand Down
Loading