fix: Spelling Grog to Groc. The setup for the vendor must be done, because of ENV prefix for setting.

This commit is contained in:
Eugen Eisler 2024-09-13 11:10:17 +02:00
parent 37401fcfb4
commit 38d4b459bd

View File

@ -6,7 +6,7 @@ import (
func NewClient() (ret *Client) { func NewClient() (ret *Client) {
ret = &Client{} ret = &Client{}
ret.Client = openai.NewClientCompatible("Groq", "https://api.groq.com/openai/v1", nil) ret.Client = openai.NewClientCompatible("Groc", "https://api.groq.com/openai/v1", nil)
return return
} }