All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.zhangjh.gemini.common.ModelEnum Maven / Gradle / Ivy

package me.zhangjh.gemini.common;

import lombok.Getter;

/**
 * @author [email protected]
 * @date 19:56 2023/12/22
 * @Description
 */
@Getter
public enum ModelEnum {
    GEMINI_PRO("models/gemini-pro", "gemini专业版"),
    GEMINI_PRO_VISION("models/gemini-pro-vision", "gemini多模态版本"),
    EMBEDDING_001("models/embedding-001", "嵌入"),
    AQA("models/aqa", "空气质量评估")
    ;

    private final String code;

    private final String name;

    ModelEnum(String code, String name) {
        this.code = code;
        this.name = name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy