summaryrefslogtreecommitdiff
path: root/internal/llm/util.go
blob: b99d7c87a999d80132051e2b103c057247dfa19f (plain)
1
2
3
4
5
6
package llm

import "errors"

// small helper to keep return type consistent
func nilStringErr(msg string) (string, error) { return "", errors.New(msg) }