mirror of
https://github.com/github/awesome-copilot.git
synced 2026-04-15 04:35:55 +00:00
41 lines
835 B
Go
41 lines
835 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
|
|
copilot "github.com/github/copilot-sdk/go"
|
|
)
|
|
|
|
func main() {
|
|
ctx := context.Background()
|
|
client := copilot.NewClient(nil)
|
|
|
|
if err := client.Start(ctx); err != nil {
|
|
log.Fatalf("Failed to start client: %v", err)
|
|
}
|
|
defer client.Stop()
|
|
|
|
session, err := client.CreateSession(ctx, &copilot.SessionConfig{
|
|
OnPermissionRequest: copilot.PermissionHandler.ApproveAll,
|
|
Model: "gpt-5.4",
|
|
})
|
|
if err != nil {
|
|
log.Fatalf("Failed to create session: %v", err)
|
|
}
|
|
defer session.Disconnect()
|
|
|
|
result, err := session.SendAndWait(ctx, copilot.MessageOptions{Prompt: "Hello!"})
|
|
if err != nil {
|
|
log.Printf("Failed to send message: %v", err)
|
|
return
|
|
}
|
|
|
|
if result != nil {
|
|
if d, ok := result.Data.(*copilot.AssistantMessageData); ok {
|
|
fmt.Println(d.Content)
|
|
}
|
|
}
|
|
}
|