Minor fixes

This commit is contained in:
Ettore Di Giacinto
2024-04-05 01:27:52 +02:00
parent 9e8b1dab84
commit 3f6b68a60a

View File

@@ -73,7 +73,7 @@ var EnableStandaloneJob = func(o *options) error {
return nil return nil
} }
var EnableCharacter = func(o *options) error { var EnablePersonality = func(o *options) error {
o.showCharacter = true o.showCharacter = true
return nil return nil
} }
@@ -149,6 +149,7 @@ func WithRandomIdentity(guidance ...string) Option {
return func(o *options) error { return func(o *options) error {
o.randomIdentityGuidance = strings.Join(guidance, "") o.randomIdentityGuidance = strings.Join(guidance, "")
o.randomIdentity = true o.randomIdentity = true
o.showCharacter = true
return nil return nil
} }
} }