Files
errors-my-beloved/distant/brain/brain.go
2025-08-27 08:48:19 -04:00

8 lines
158 B
Go

package brain
type Interface interface {
Think(prefix []string) (string, error)
}
func Think(s Interface, prompt string) (string, error) { panic("TODO") }