Enum Class AiProvider
- All Implemented Interfaces:
Serializable
,Comparable<AiProvider>
,Constable
Collection of systems providing AI functionality. Based on the OpenTelemetry Semantic
Conventions for AI Systems.
- Since:
- 1.0.0
- Author:
- Thomas Vitale
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAI system provided by Anthropic.AI system provided by Azure.AI system provided by Bedrock Converse.AI system provided by Minimax.AI system provided by Mistral.AI system provided by Moonshot.AI system provided by Oracle OCI.AI system provided by Ollama.AI system provided by ONNX.AI system provided by OpenAI.AI system provided by Qianfan.AI system provided by Spring AI.AI system provided by Vertex AI.AI system provided by Zhipuai. -
Method Summary
Modifier and TypeMethodDescriptionvalue()
Return the value of the provider.static AiProvider
Returns the enum constant of this class with the specified name.static AiProvider[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANTHROPIC
AI system provided by Anthropic. -
AZURE_OPENAI
AI system provided by Azure. -
BEDROCK_CONVERSE
AI system provided by Bedrock Converse. -
MISTRAL_AI
AI system provided by Mistral. -
OCI_GENAI
AI system provided by Oracle OCI. -
OLLAMA
AI system provided by Ollama. -
OPENAI
AI system provided by OpenAI. -
MINIMAX
AI system provided by Minimax. -
MOONSHOT
AI system provided by Moonshot. -
QIANFAN
AI system provided by Qianfan. -
ZHIPUAI
AI system provided by Zhipuai. -
SPRING_AI
AI system provided by Spring AI. -
VERTEX_AI
AI system provided by Vertex AI. -
ONNX
AI system provided by ONNX.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
value
Return the value of the provider.- Returns:
- the value of the provider
-