Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krichard1212 committed Nov 20, 2024
1 parent fbe37b4 commit d371a80
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,14 @@ type Providers struct {
}

type Services struct {
LlamaGuard *ServiceLlamaGuard `mapstructure:"llamaguard"`
LlamaGuard *ServiceLlamaGuard `mapstructure:"llamaguard"`
PromptGuard *ServicePromptGuard `mapstructure:"promptguard"`
}
type ServiceLlamaGuard struct {
PromptGuard *ServicePromptGuard `mapstructure:"promptguard"`
Enabled bool `mapstructure:"enabled"`
BaseUrl string `mapstructure:"url"`
}

type ServicePromptGuard struct {
Enabled bool `mapstructure:"enabled"`
BaseUrl string `mapstructure:"url"`
Expand Down

0 comments on commit d371a80

Please sign in to comment.