Typo
All checks were successful
git.cronocide.net/bluebubbles-bot/pipeline/head This commit looks good

This commit is contained in:
Daniel Dayley 2024-08-24 09:39:35 -06:00
parent 8c93f6a275
commit 97e2940b2b
Signed by: Cronocide
GPG Key ID: 1CADA052F64664EC

View File

@ -50,7 +50,7 @@ class PersonaSkill(PersonaBaseSkill) :
RESPONSE_PREAMBLE = os.environ['RESPONSE_PREAMBLE']
if 'CHATGPT_RESPOND_TO_SELF_IN_CHAT' in os.environ.keys() :
self.respond_to_self = os.environ['CHATGPT_RESPOND_TO_SELF_IN_CHAT'].split(',')
self.client = OpenAI(api_key=self.api_key,organization=ORGANIZATION)
self.apiclient = OpenAI(api_key=self.api_key,organization=ORGANIZATION)
self.system_prompt = [{'role': 'system', 'content': RESPONSE_PREAMBLE}]