From 31829592104f51ddd971c1b034845cfa06ab98ac Mon Sep 17 00:00:00 2001 From: adamoutler Date: Sun, 12 Feb 2023 19:49:33 +0000 Subject: [PATCH] enable additional prompts --- src/aidgaf/aidgaf-server/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/aidgaf/aidgaf-server/settings.py b/src/aidgaf/aidgaf-server/settings.py index fdb4cdd..f4613b6 100644 --- a/src/aidgaf/aidgaf-server/settings.py +++ b/src/aidgaf/aidgaf-server/settings.py @@ -14,9 +14,9 @@ HASHKEY = bytes(os.getenv('HASHKEY'),UTF8) # shared secret for hmac of message # The prompts used for OpenAI. PROMPTS = [ - # "Say \"USERNAME does not give a fuck\" as a haiku and mention that it is a haiku.", - # "Say \"USERNAME does not give a fuck\" in a Dr Suess poem.", - # "Tell me a story about how \"USERNAME does not give a fuck\" using an outrageous situation where someone should care but they do not and thats fine.", + "Say \"USERNAME does not give a fuck\" as a haiku and mention that it is a haiku.", + "Say \"USERNAME does not give a fuck\" in a Dr Suess poem.", + "Tell me a story about how \"USERNAME does not give a fuck\" using an outrageous situation where someone should care but they do not and thats fine.", "Say \"USERNAME is completely apethetic and does not give a fuck\" in a verbose manner, using your most colorful words and one metaphor." ] OPEN_AI_MAX_TOKENS = 500