Build AI agents with Go. Multiple providers, multiple models, one API 🧙
1package ai 2 3func FloatOption(f float64) *float64 { 4 return &f 5} 6 7func BoolOption(b bool) *bool { 8 return &b 9} 10 11func StringOption(s string) *string { 12 return &s 13} 14 15func IntOption(i int64) *int64 { 16 return &i 17}