package custom import ( "github.com/rose_cat707/luminary/internal/provider/openai" ) // Custom providers use OpenAI-compatible API at a custom base URL. type Client struct { *openai.Client } func New() *Client { return &Client{Client: openai.New()} } func (c *Client) Type() string { return "custom" }