diff --git a/gpt_term/main.py b/gpt_term/main.py index 8fb2389..f8110b7 100755 --- a/gpt_term/main.py +++ b/gpt_term/main.py @@ -107,7 +107,7 @@ def __init__(self, api_key: str, timeout: float): "Authorization": f"Bearer {api_key}" } self.messages = [ - {"role": "system", "content": f"You are a helpful assistant.\nKnowledge cutoff: 2021-09\nCurrent date: {datetime.now().strftime('%Y-%m-%d')}"}] + {"role": "system", "content": f"You are a helpful assistant.\nCurrent date: {datetime.now().strftime('%Y-%m-%d')}"}] self.model = 'gpt-3.5-turbo' self.tokens_limit = 4096 # as default: gpt-3.5-turbo has a tokens limit as 4096