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
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ The current functionality and availability of the two types of review is summari

{% rowheaders %}

| | Review selection | Review changes |
|------------------|------------------|----------------|
| Available in | {% data variables.product.prodname_vscode %} | {% data variables.product.prodname_vscode %} and the {% data variables.product.github %} website |
| | Review selection | Review changes |
|------------------|------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Available in | {% data variables.product.prodname_vscode %} | {% data variables.product.prodname_vscode %} and the {% data variables.product.github %} website |
| Premium/standard feature | Standard feature available to all {% data variables.product.prodname_copilot_short %} subscribers | Premium feature. Available with the {% data variables.product.prodname_copilot_pro_short %}, {% data variables.product.prodname_copilot_pro_plus_short %}, {% data variables.product.prodname_copilot_business_short %}, and {% data variables.product.prodname_copilot_enterprise_short %} plans. Per-person monthly quota applies. |
| Description | Initial review of a highlighted section of code with feedback and suggestions | Deeper review of all changes |
| Language support | All | C#, Go, Java, JavaScript, Markdown, Python, Ruby, TypeScript <br><br> {% data variables.release-phases.public_preview_caps %} support for C, C++, Kotlin, and Swift. |
| Custom coding guidelines support | No | Yes, see [Customizing {% data variables.product.prodname_copilot_short %}'s reviews with coding guidelines](#customizing-copilots-reviews-with-coding-guidelines) |
| Description | Initial review of a highlighted section of code with feedback and suggestions | Deeper review of all changes |
| Language support | All | C, C#, C++, Go, Java, JavaScript, Kotlin, Markdown, Python, Ruby, Swift, TypeScript <br><br> {% data variables.release-phases.public_preview_caps %} support for HTML and Text. |
| Custom coding guidelines support | No | Yes, see [Customizing {% data variables.product.prodname_copilot_short %}'s reviews with coding guidelines](#customizing-copilots-reviews-with-coding-guidelines) |

{% endrowheaders %}

Expand Down Expand Up @@ -76,16 +76,20 @@ When you reach your monthly quota you will not be able to get a code review from

{% data variables.copilot.copilot_code-review_short %} on the {% data variables.product.github %} website supports the following languages:

* C
* C#
* C++
* Go
* Java
* JavaScript
* Kotlin
* Markdown
* Python
* Ruby
* Swift
* TypeScript

Plus {% data variables.release-phases.public_preview %} support for C, C++, Kotlin, and Swift.
Plus {% data variables.release-phases.public_preview %} support for HTML & Text.

{% endwebui %}

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