UNPKG

svector-sdk

Version:

Official JavaScript and TypeScript SDK for accessing SVECTOR APIs.

13 lines (12 loc) 316 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Models = void 0; class Models { constructor(client) { this.client = client; } async list(options) { return this.client.request('GET', '/api/models', undefined, options); } } exports.Models = Models;