Spaces:
Build error
Build error
| 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' |