Skip to content

Commit 6835268

Browse files
authored
Merge pull request #45333 from github/repo-sync
Repo sync
2 parents 7c606a5 + 4eaabd4 commit 6835268

19 files changed

Lines changed: 748 additions & 24 deletions

.github/workflows/link-check-on-pr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ jobs:
5555
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
5656
SHOULD_COMMENT: ${{ secrets.DOCS_BOT_PAT_BASE != '' }}
5757
FAIL_ON_FLAW: true
58+
# Cross-page anchor checking is on, but non-blocking during rollout: broken
59+
# anchors are reported in the PR comment without failing the build. Flip
60+
# FAIL_ON_ANCHOR_FLAW to true once false-positive/perf rates look clean.
61+
CHECK_ANCHORS: true
62+
FAIL_ON_ANCHOR_FLAW: false
5863
ENABLED_LANGUAGES: en
5964
run: npm run check-links-pr
6065

content/copilot/get-started/features.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ These features can work autonomously without direct human supervision. However,
4545

4646
A command line interface that lets you use {% data variables.product.prodname_copilot_short %} in your terminal. Use the CLI to add features or fix bugs, then create a pull request. Start {% data variables.product.prodname_copilot_short %} working on a task in your terminal, then continue working in the same session on {% data variables.product.prodname_dotcom_the_website %}, or on your mobile. See [AUTOTITLE](/copilot/concepts/agents/copilot-cli/about-copilot-cli).
4747

48+
### {% data variables.copilot.github_copilot_app %}
49+
50+
A desktop application for agent-driven development. From the app, you can run multiple agent sessions in parallel across your repositories, manage issues and pull requests, and set up automations to run tasks on a schedule. See [AUTOTITLE](/copilot/concepts/agents/github-copilot-app).
51+
4852
### {% data variables.copilot.copilot_cloud_agent %}
4953

5054
An autonomous AI agent that can research a repository, create an implementation plan, and make code changes on a branch. You can review the diff, iterate, and create a pull request when you're ready. You can also assign a {% data variables.product.github %} issue to {% data variables.product.prodname_copilot_short %} or ask it to open a pull request directly to complete a task. See [AUTOTITLE](/copilot/how-tos/use-copilot-agents/cloud-agent).

content/copilot/reference/ai-models/model-hosting.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,28 @@ To provide better service quality and reduce latency, {% data variables.product.
8383

8484
When using {% data variables.copilot.copilot_gemini %} models, input prompts and output completions continue to run through {% data variables.product.prodname_copilot %}'s content filters for public code matching, when applied, along with those for harmful or offensive content.
8585

86+
## xAI models
87+
88+
Used for:
89+
90+
* {% data variables.copilot.copilot_grok_45 %}
91+
92+
These models are hosted on xAI. xAI operates {% data variables.copilot.copilot_grok_45 %} in {% data variables.product.prodname_copilot %} under a zero data retention API policy. This means xAI commits that user content (both inputs sent to the model and outputs generated by the model):
93+
94+
Will **not** be:
95+
* Logged for any purpose, including human review
96+
* Saved to disk or retained in any form, including as metadata
97+
* Accessible by xAI personnel
98+
* Used for model training
99+
100+
Will **only**:
101+
* Exist temporarily in RAM for the minimum time required to process and respond to each request
102+
* Be immediately deleted from memory once the response is delivered
103+
104+
When using xAI, input prompts and output completions continue to run through {% data variables.product.prodname_copilot %}'s content filters for public code matching, when applied, along with those for harmful or offensive content.
105+
106+
For more information, see [xAI's enterprise terms of service](https://x.ai/legal/terms-of-service-enterprise) on the xAI website.
107+
86108
## Microsoft models
87109

88110
Used for:

content/copilot/reference/ai-models/supported-models.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ Some {% data variables.product.prodname_copilot_short %} models require minimum
151151
| {% data variables.copilot.copilot_claude_fable_5 %} | `v1.124` | `17.14.6` | TBD | TBD | TBD |
152152
| {% data variables.copilot.copilot_kimi_k27_code %} | `v1.127` | `17.14.6` | `1.9.1-251` | TBD | TBD |
153153
| {% data variables.copilot.copilot_mai_code_1_flash %} | `v1.121` | TBD | TBD | TBD | TBD |
154+
| {% data variables.copilot.copilot_grok_45 %} | TBD | `17.14.19` | TBD | TBD | TBD |
154155

155156
{% endrowheaders %}
156157

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,16 @@ Anthropic models include a cache write cost in addition to cached input.
7575
| {{ entry.model }} | {{ entry.release_status }} | {{ entry.category }} | {{ entry.input }} | {{ entry.cached_input }} | {{ entry.output }} |
7676
| {% endif %}{% endfor %} |
7777

78+
### xAI
79+
80+
{% data reusables.copilot.extended-context-pricing %}
81+
82+
| Model | Release status | Category | Tier | Threshold (input tokens) | Input | Cached input | Output |
83+
| --- | --- | --- | --- | --- | ---: | ---: | ---: |
84+
| {% for entry in tables.copilot.models-and-pricing %}{% if entry.provider == "xai" %} |
85+
| {{ entry.model }} | {{ entry.release_status }} | {{ entry.category }} | {{ entry.tier }} | {{ entry.threshold }} | {{ entry.input }} | {{ entry.cached_input }} | {{ entry.output }} |
86+
| {% endif %}{% endfor %} |
87+
7888
### Moonshot AI
7989

8090
| Model | Release status | Category | Input | Cached input | Output |

data/reusables/copilot/copilot-cloud-agent-non-auto-models.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
* {% data variables.copilot.copilot_gpt_56_luna %}
99
* {% data variables.copilot.copilot_gpt_56_sol %}
1010
* {% data variables.copilot.copilot_gpt_56_terra %}
11+
* {% data variables.copilot.copilot_grok_45 %}
1112
* {% data variables.copilot.copilot_mai_code_1_flash %}

data/tables/copilot/model-comparison.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# - OpenAI
44
# - Anthropic
55
# - Google
6+
# - Microsoft
67
# - xAI
78
# 2. Within each provider group, alphabetically by model name.
89

@@ -125,6 +126,12 @@
125126
excels_at: Fast, accurate code completions and explanations
126127
further_reading: '[MAI-Code-1-Flash model card](https://aka.ms/mai-code-1-flash-modelcard)'
127128

129+
# xAI
130+
- name: Grok 4.5
131+
task_area: General-purpose coding and agent tasks
132+
excels_at: Complex problem-solving challenges, sophisticated reasoning
133+
further_reading: '[Grok 4.5 model card](https://media.x.ai/v1/website/card-7f81d41b.pdf)'
134+
128135
# Other providers (alphabetized by model name)
129136
- name: Qwen2.5
130137
task_area: General-purpose coding and writing

data/tables/copilot/model-release-status.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,8 @@
133133
- name: 'Kimi K2.7 Code'
134134
provider: 'Moonshot AI'
135135
release_status: 'GA'
136+
137+
# xAI models
138+
- name: 'Grok 4.5'
139+
provider: 'xAI'
140+
release_status: 'GA'

data/tables/copilot/model-supported-clients.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,15 @@
248248
xcode: false
249249
jetbrains: false
250250

251+
- name: Grok 4.5
252+
dotcom: false
253+
cli: true
254+
vscode: true
255+
vs: true
256+
eclipse: true
257+
xcode: true
258+
jetbrains: true
259+
251260
- name: Kimi K2.7 Code
252261
dotcom: true
253262
cli: true

data/tables/copilot/model-supported-plans.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,13 @@
187187
business: true
188188
enterprise: true
189189

190+
- name: Grok 4.5
191+
pro: true
192+
pro_plus: true
193+
max: true
194+
business: true
195+
enterprise: true
196+
190197
- name: Kimi K2.7 Code
191198
pro: true
192199
pro_plus: true

0 commit comments

Comments
 (0)