Spaces:
Build error
Build error
File size: 183 Bytes
085b39c |
1 2 3 4 5 6 |
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' |