Skip to content

Commit

Permalink
Name to name
Browse files Browse the repository at this point in the history
  • Loading branch information
keelerm84 committed Dec 9, 2024
1 parent c52b389 commit 4515023
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ldai/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ func (c *Config) Enabled() bool {
return c.c.Meta.Enabled
}

// ProviderName returns the provider Name associated with the config.
// ProviderName returns the provider name associated with the config.
func (c *Config) ProviderName() string {
return c.c.Provider.Name
}

// ModelName returns the model Name associated with the config.
// ModelName returns the model name associated with the config.
func (c *Config) ModelName() string {
return c.c.Model.Name
}
Expand Down Expand Up @@ -110,7 +110,7 @@ func (cb *ConfigBuilder) WithModelName(modelName string) *ConfigBuilder {
return cb
}

// WithProviderName sets the provider Name associated with the config.
// WithProviderName sets the provider name associated with the config.
func (cb *ConfigBuilder) WithProviderName(providerName string) *ConfigBuilder {
cb.providerName = providerName
return cb
Expand Down

0 comments on commit 4515023

Please sign in to comment.