Build AI agents with Go. Multiple providers, multiple models, one API 🧙
1package google 2 3import ( 4 "context" 5 6 "cloud.google.com/go/auth" 7) 8 9type dummyTokenProvider struct{} 10 11func (dummyTokenProvider) Token(ctx context.Context) (*auth.Token, error) { 12 return &auth.Token{Value: "dummy-token"}, nil 13}