Skip to content
Draft
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
2 changes: 2 additions & 0 deletions 01-setup-and-first-steps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,8 @@ copilot

> 💡 **Tip**: Some models cost more "premium requests" than others. Models marked **1x** (like Claude Sonnet 4.5) are a great default. They're capable and efficient. Higher-multiplier models use your premium request quota faster, so save those for when you really need them.

> 💡 **Not sure which model to pick?** Select **`auto`** from the model picker to let Copilot automatically choose the best available model for each session. This is a great default if you're just getting started and don't want to think about model selection.

</details>

---
Expand Down
15 changes: 15 additions & 0 deletions 02-context-conversations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,21 @@ copilot

> 📖 **Learn more**: See [Additional Context Features](../appendices/additional-context.md#working-with-images) for supported formats, practical use cases, and tips for combining images with code.

### Attaching Document Files

In addition to the `@` syntax and image paste, you can attach supported document files (such as PDFs, Word documents, and text files) directly to your prompts. This lets Copilot read and reason about external reference material — for example, a requirements spec, a design document, or a README from another project.

When you start a prompt, look for the attachment option in the CLI interface to attach a file from your filesystem. Copilot will read the document's content and incorporate it into its response.

```bash
copilot

# After attaching a document file (e.g. requirements.pdf), ask:
> Based on the requirements I attached, what changes need to be made to @samples/book-app-project/book_app.py?
```

> 💡 **When is this useful?** Use document attachment when you have reference material that isn't already in your codebase — like a design spec, an API contract, or a brief from a stakeholder. It's faster than copy-pasting large documents into your prompt.

</details>

---
Expand Down
Loading