Skip to content

Commit 4e72ed2

Browse files
Fix UTM link (#61536)
Co-authored-by: Jenni C <97056108+dihydroJenoxide@users.noreply.github.com>
1 parent e0679b2 commit 4e72ed2

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

content/copilot/how-tos/github-copilot-app/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For a conceptual overview of the {% data variables.copilot.github_copilot_app %}
2727
* **{% data variables.copilot.copilot_business_short %} or {% data variables.copilot.copilot_enterprise_short %} users**: You have access, as long as your organization or enterprise has enabled preview features and enabled {% data variables.copilot.copilot_cli_short %}. You can download the app directly from the [{% data variables.copilot.github_copilot_app %} repository](https://gh.io/github-copilot-app-repo?utm_source=docs-github-copilot-app-get-started&utm_medium=docs&utm_campaign=msbuild-2026).
2828
* **{% data variables.copilot.copilot_pro_short %} or {% data variables.copilot.copilot_pro_plus_short %} users**: You have access and can download the app directly from the [{% data variables.copilot.github_copilot_app %} repository](https://gh.io/github-copilot-app-repo?utm_source=docs-github-copilot-app-get-started&utm_medium=docs&utm_campaign=msbuild-2026).
2929
* **{% data variables.copilot.copilot_free_short %} users and users without a {% data variables.product.prodname_copilot_short %} plan**: Join the [waitlist](https://gh.io/github-copilot-app?utm_source=docs-github-copilot-app-get-started&utm_medium=docs&utm_campaign=msbuild-2026) to request access.
30-
* The {% data variables.copilot.github_copilot_app %} installed on macOS, Windows, or Linux. Once you have access, you can download and install the application from the [{% data variables.copilot.github_copilot_app %} repository](https://github.com/github/app#install?utm_source=docs-github-copilot-app-get-started-install&utm_medium=docs&utm_campaign=msbuild-2026).
30+
* The {% data variables.copilot.github_copilot_app %} installed on macOS, Windows, or Linux. Once you have access, you can download and install the application from the [{% data variables.copilot.github_copilot_app %} repository](https://github.com/github/app?utm_source=docs-github-copilot-app-get-started-install&utm_medium=docs&utm_campaign=msbuild-2026#install).
3131

3232
## Opening the {% data variables.copilot.github_copilot_app %} for the first time
3333

content/copilot/reference/copilot-billing/models-and-pricing.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ Anthropic models include a cache write cost in addition to cached input.
7171

7272
[^7]: {% data variables.copilot.copilot_raptor_mini %} uses {% data variables.copilot.copilot_gpt_5_mini %} pricing.
7373

74+
### Microsoft
75+
76+
| Model | Release status | Category | Input | Cached input | Output |
77+
| --- | --- | --- | ---: | ---: | ---: |
78+
| {% for entry in tables.copilot.models-and-pricing %}{% if entry.provider == "microsoft" %} |
79+
| {{ entry.model }} | {{ entry.release_status }} | {{ entry.category }} | {{ entry.input }} | {{ entry.cached_input }} | {{ entry.output }} |
80+
| {% endif %}{% endfor %} |
81+
7482
## Code completions
7583

7684
{% data reusables.copilot.tbb-completions %}

src/data-directory/lib/data-schemas/tables/copilot/models-and-pricing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const modelsAndPricingSchema = {
2626
},
2727
provider: {
2828
type: 'string',
29-
enum: ['openai', 'anthropic', 'google', 'xai', 'github'],
29+
enum: ['openai', 'anthropic', 'google', 'microsoft', 'xai', 'github'],
3030
},
3131
release_status: {
3232
type: 'string',

0 commit comments

Comments
 (0)