From 3f6b68a60a7ddbb9b0375721ef885eef658d5a9e Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Fri, 5 Apr 2024 01:27:52 +0200 Subject: [PATCH] Minor fixes --- agent/options.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agent/options.go b/agent/options.go index 58d628c..f53d8a3 100644 --- a/agent/options.go +++ b/agent/options.go @@ -73,7 +73,7 @@ var EnableStandaloneJob = func(o *options) error { return nil } -var EnableCharacter = func(o *options) error { +var EnablePersonality = func(o *options) error { o.showCharacter = true return nil } @@ -149,6 +149,7 @@ func WithRandomIdentity(guidance ...string) Option { return func(o *options) error { o.randomIdentityGuidance = strings.Join(guidance, "") o.randomIdentity = true + o.showCharacter = true return nil } }