package vip.mate.agent.vo; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import java.util.List; /** * Lightweight capability snapshot for an agent — answers two questions * the chat console needs synchronously while the user is composing a message: * *
Returned by {@code GET /api/v1/agents/{id}/capabilities}. Computed on
* each request — cheap because everything is cached service-side and we only
* read at most three rows. Not persisted on {@code mate_agent}; sidecar
* configuration is system-wide and {@code modelCapabilities} is derived from
* {@code mate_model_config.modalities}.
*/
@Data
@Builder
@AllArgsConstructor
public class AgentCapabilitiesVO {
private Long agentId;
private String modelName;
private String providerId;
/** Resolved modality set: any of {@code TEXT / VISION / VIDEO / AUDIO}. */
private List