myn0908's picture
optimize code
085b39c
raw
history blame
183 Bytes
from typing import List
MODELS_NAMES = ["gpt-3.5-turbo"]
DEFAULT_TEMPERATURE = 0.7
ChatHistory = List[str]
default_system_prompt = 'Put your prompt here'
default_system_format = 'txt'