Spaces:
Running
Running
File size: 304 Bytes
29e9295 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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"
|