Skip to content

Commit

Permalink
#29: comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrueger12 committed Dec 22, 2023
1 parent def24a0 commit 2e3a97e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/providers/openai/openaiclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type ProviderClient struct {
// - error: An error if the client creation failed.
func Client(poolName string, modelName string, payload []byte) (*ProviderClient, error) {
// Read the YAML file
data, err := os.ReadFile("config.yaml") // TODO: How will this be accessed? Does it have to be read each time?
data, err := os.ReadFile("config.yaml") // TODO: Replace with struct from pools
if err != nil {
return nil, fmt.Errorf("failed to read YAML file: %w", err)
}
Expand Down

0 comments on commit 2e3a97e

Please sign in to comment.