AWEsumCare-Demo / schemas.py
ray
add schema and service provider config
29e9295
raw
history blame
No virus
304 Bytes
from enum import Enum
class ChatbotVersion(str, Enum):
# make a enum of chatbot type and string
CHATGPT_35 = "gpt-3.5-turbo-1106"
CHATGPT_4 = "gpt-4-1106-preview"
class ServiceProvider(str, Enum):
# make a enum of service provider and string
OPENAI = "openai"
AZURE = "azure"