Source code for belso.utils.classes

[docs] class PROVIDERS: """ A class that provides constants for supported schema providers. This allows for more readable code when specifying providers in the translate method. """ # Core providers BELSO = "belso" # LLM providers GOOGLE = "google" OPENAI = "openai" AZURE_OPENAI = "azure_openai" ANTHROPIC = "anthropic" OLLAMA = "ollama" HUGGINGFACE = "huggingface" MISTRAL = "mistral" LANGCHAIN = "langchain" # Serialization formats JSON = "json" XML = "xml"
[docs] @classmethod def get_all_providers(cls) -> list: """ Get a list of all supported providers.\n --- ### Returns - `list`: A list of all provider constants. """ return [ cls.BELSO, cls.GOOGLE, cls.OPENAI, cls.AZURE_OPENAI, cls.ANTHROPIC, cls.OLLAMA, cls.HUGGINGFACE, cls.MISTRAL, cls.LANGCHAIN, cls.JSON, cls.XML ]