8 lines
137 B
Python
8 lines
137 B
Python
from enum import Enum
|
|
|
|
|
|
class LLMProvider(Enum):
|
|
OLLAMA = "ollama"
|
|
OPENAI = "openai"
|
|
GOOGLE = "google"
|
|
CUSTOM = "custom"
|