errors.go

 1package agent
 2
 3import "errors"
 4
 5var (
 6	ErrRequestCancelled = errors.New("request canceled by user")
 7	ErrSessionBusy      = errors.New("session is currently processing another request")
 8	ErrEmptyPrompt      = errors.New("prompt is empty")
 9	ErrSessionMissing   = errors.New("session id is missing")
10)