Package org.springframework.ai.model
Interface ModelDescription
- All Known Subinterfaces:
- ChatModelDescription,- EmbeddingModelDescription
- All Known Implementing Classes:
- AnthropicApi.ChatModel,- DeepSeekApi.ChatModel,- MiniMaxApi.ChatModel,- MistralAiApi.ChatModel,- OllamaModel,- OpenAiApi.ChatModel,- VertexAiGeminiChatModel.ChatModel,- VertexAiMultimodalEmbeddingModelName,- VertexAiTextEmbeddingModelName,- ZhiPuAiApi.ChatModel
public interface ModelDescription
Describes an AI model's basic characteristics. Provides methods to retrieve the model's
 name, description, and version.
- Since:
- 1.0.0
- Author:
- Christian Tzolov
- 
Method Details- 
getNameString getName()Returns the name of the model.- Returns:
- the name of the model
 
- 
getDescriptionReturns the description of the model.- Returns:
- the description of the model
 
- 
getVersionReturns the version of the model.- Returns:
- the version of the model
 
 
-