@nomyx/assistant
Version:
A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)
12 lines (11 loc) • 476 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VertexModel = void 0;
var VertexModel;
(function (VertexModel) {
VertexModel["GEMINI_PRO"] = "gemini-pro";
VertexModel["GEMINI_PRO_VISION"] = "gemini-pro-vision";
VertexModel["CLAUDE_3_SONNET"] = "claude-3-sonnet-20240229";
VertexModel["CLAUDE_3_OPUS"] = "claude-3-opus-20240229";
// Add more models as needed
})(VertexModel || (exports.VertexModel = VertexModel = {}));