Skip to content

Commit 11378f3

Browse files
authored
Correct spelling in system_message
Fixed the spelling of "strickly"
1 parent 7583825 commit 11378f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ def _conversation(self):
2626
_conversation = request.json['meta']['content']['conversation']
2727
prompt = request.json['meta']['content']['parts'][0]
2828
current_date = datetime.now().strftime("%Y-%m-%d")
29-
system_message = f'You are GPT-3.5 also known as ChatGPT, a large language model trained by OpenAI. Stricktly follow the users instructions. Knowledge cutoff: 2021-09-01 Current date: {current_date}'
29+
system_message = f'You are GPT-3.5 also known as ChatGPT, a large language model trained by OpenAI. Strictly follow the users instructions. Knowledge cutoff: 2021-09-01 Current date: {current_date}'
3030

3131
if '0040' in request.json['model']:
32-
system_message = f'You are GPT-4, newest generation of OpenAI GPT series. Stricktly follow the users instructions. Knowledge cutoff: 2021-09-01 Current date: {current_date}'
32+
system_message = f'You are GPT-4, newest generation of OpenAI GPT series. Strictly follow the users instructions. Knowledge cutoff: 2021-09-01 Current date: {current_date}'
3333

3434
extra = []
3535
if internet_access:

0 commit comments

Comments
 (0)