Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
3efa777
Update @github/copilot to 1.0.10-0
github-actions[bot] Mar 20, 2026
7e2b293
refactor(go): update handwritten files to use prefixed enum constant …
MackinnonBuck Mar 18, 2026
392e280
fix: Go codegen enum prefixes and type name reconciliation
MackinnonBuck Mar 18, 2026
cd114f4
docs: update Go image-input examples to use copilot.AttachmentTypeFile
MackinnonBuck Mar 18, 2026
4ece605
fix(codegen): resolve Python type names from quicktype output for acr…
MackinnonBuck Mar 18, 2026
e24886f
fix: update Go E2E tests for agent list and multi-client timeout
MackinnonBuck Mar 18, 2026
0ec5938
Fix LogAsync compilation error by adding missing url parameter
MackinnonBuck Mar 18, 2026
2a92862
fix: address review comments - valuePascal initialisms, Phase 2 regex…
MackinnonBuck Mar 18, 2026
bfc8356
Fix Python E2E agent list test for built-in agents
MackinnonBuck Mar 18, 2026
978c63d
Skip multi-client broadcast test across Go, Python, and C#
MackinnonBuck Mar 18, 2026
b877e0c
Revert multi-client broadcast test skips for CLI 1.0.7
MackinnonBuck Mar 18, 2026
89aabe3
fix: remove mcp/pr/ado from goInitialisms to avoid SessionRpc.MCP rename
MackinnonBuck Mar 18, 2026
e318c81
Another Go codegen fix after rebase
SteveSandersonMS Mar 20, 2026
f880b13
Regenerate code
SteveSandersonMS Mar 20, 2026
cf4c77c
Python formatting
SteveSandersonMS Mar 20, 2026
a4229b4
Type name update
SteveSandersonMS Mar 20, 2026
183abba
Fix Python codegen
SteveSandersonMS Mar 20, 2026
7a6199e
fix: update copilot.Blob to copilot.AttachmentTypeBlob and fix Python…
SteveSandersonMS Mar 20, 2026
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
8 changes: 4 additions & 4 deletions docs/features/image-input.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func main() {
Prompt: "Describe what you see in this image",
Attachments: []copilot.Attachment{
{
Type: copilot.File,
Type: copilot.AttachmentTypeFile,
Path: &path,
},
},
Expand All @@ -147,7 +147,7 @@ session.Send(ctx, copilot.MessageOptions{
Prompt: "Describe what you see in this image",
Attachments: []copilot.Attachment{
{
Type: copilot.File,
Type: copilot.AttachmentTypeFile,
Path: &path,
},
},
Expand Down Expand Up @@ -315,7 +315,7 @@ func main() {
Prompt: "Describe what you see in this image",
Attachments: []copilot.Attachment{
{
Type: copilot.Blob,
Type: copilot.AttachmentTypeBlob,
Data: &base64ImageData,
MIMEType: &mimeType,
DisplayName: &displayName,
Expand All @@ -333,7 +333,7 @@ session.Send(ctx, copilot.MessageOptions{
Prompt: "Describe what you see in this image",
Attachments: []copilot.Attachment{
{
Type: copilot.Blob,
Type: copilot.AttachmentTypeBlob,
Data: &base64ImageData, // base64-encoded string
MIMEType: &mimeType,
DisplayName: &displayName,
Expand Down
Loading
Loading