9 lines
165 B
Python
9 lines
165 B
Python
from enum import Enum
|
|
|
|
|
|
class LLMProvider(Enum):
|
|
OLLAMA = "ollama"
|
|
OPENAI = "openai"
|
|
GOOGLE = "google"
|
|
ANTHROPIC = "anthropic"
|
|
CUSTOM = "custom"
|