mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-14 19:45:08 +08:00
Full-stack AI assistant built on Spring AI Alibaba. Features: ReAct Agent, Plan-and-Execute, MCP Protocol, Multi-Model, Multi-Channel. Apache-2.0 License
9 lines
129 B
Java
9 lines
129 B
Java
package vip.mate.llm.model;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class ActiveModelsInfo {
|
|
private ModelSlotConfig activeLlm;
|
|
}
|