package org.ruoyi.common.chat.entity.chat.tool; import lombok.*; /** * @author unfbx * @since 1.1.2 * 2023-11-09 */ @Data @Builder @AllArgsConstructor @NoArgsConstructor public class ToolChoiceObj { /** * 需要调用的方法名称 */ private ToolChoiceObjFunction function; /** * 工具的类型。目前仅支持函数。 * * @see Type */ private String type; @Getter @AllArgsConstructor public enum Type { FUNCTION("function"), ; private final String name; } }