You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [about Execution Policies](https://go.microsoft.com/fwlink/?LinkID=135170) for more details about how PowerShell governs
70
+
script execution.
71
+
47
72
### Launching the CLI
48
73
49
74
```bash
@@ -73,6 +98,45 @@ Each time you submit a prompt to GitHub Copilot CLI, your monthly quota of premi
73
98
74
99
For more information about how to use the GitHub Copilot CLI, see [our official documentation](https://docs.github.com/copilot/concepts/agents/about-copilot-cli).
75
100
101
+
### Working with non-GitHub assistants
102
+
103
+
The CLI is a thin shell around GitHub's Copilot coding agent, so you can choose
104
+
from every model that the agent exposes — including GPT-5 and Claude Sonnet —
105
+
without leaving your terminal. To switch between them, run `/model` inside a
106
+
session and pick the assistant that best matches the task you're working on.
107
+
108
+
If you maintain prompt libraries or research corpora outside GitHub, you can
109
+
still bring that context into a CLI conversation. Use the `@` mention shortcut
110
+
to attach any local file (text, Markdown, JSON, etc.) so the agent has the
111
+
material you want it to reference while it plans or writes code. This makes it
112
+
easy to reuse the same assets you would normally feed into ChatGPT or Claude.
113
+
114
+
#### Example: referencing a Hugging Face dataset of prompts
0 commit comments