deepinfra
Version:
Official API wrapper for DeepInfra
12 lines (11 loc) • 373 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Sdxl = void 0;
const cog_model_1 = require("../../../lib/models/base/cog-model");
class Sdxl extends cog_model_1.CogBaseModel {
static modelName = "stability-ai/sdxl";
constructor(authToken, config) {
super(Sdxl.modelName, authToken, config);
}
}
exports.Sdxl = Sdxl;