File size: 284 Bytes
4d1746c
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from enum import Enum


class ModelStyle(Enum):
    Gorilla = "gorilla"
    OpenAI = "gpt"
    Anthropic = "claude"
    Mistral = "mistral"
    Google = "google"
    FIREWORK_AI = "firework_ai"
    NEXUS = "nexus"
    OSSMODEL = "ossmodel"
    COHERE = "cohere"
    WRITER = "writer"