Skip to content

Commit

Permalink
#29: chores
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrueger12 committed Dec 21, 2023
1 parent d922ee9 commit 236a319
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("/Users/max/code/Glide/config.yaml") // TODO: How will this be accessed? Does it have to be read each time?
data, err := os.ReadFile("config.yaml") // TODO: How will this be accessed? Does it have to be read each time?
if err != nil {
return nil, fmt.Errorf("failed to read YAML file: %w", err)
}
Expand Down

0 comments on commit 236a319

Please sign in to comment.