Class LlmModelEntity

java.lang.Object
com.bytedesk.core.base.BaseEntity
com.bytedesk.ai.model.LlmModelEntity
All Implemented Interfaces:
Serializable

@Entity public class LlmModelEntity extends BaseEntity
LLM model entity for AI model management Manages large language model configurations and provider relationships Database Table: bytedesk_ai_model Purpose: Stores LLM model definitions, types, and provider associations
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • name

      private String name
      Model name used for API calls
    • nickname

      private String nickname
      User-friendly nickname for the model
    • description

      private String description
      Description of the model capabilities
    • type

      private String type
      Type of LLM model (TEXT, EMBEDDING, etc.)
    • providerUid

      private String providerUid
      Associated provider UID
    • providerName

      private String providerName
      Name of the model provider
    • enabled

      private Boolean enabled
    • systemEnabled

      private Boolean systemEnabled
  • Constructor Details

    • LlmModelEntity

      public LlmModelEntity()