unico-js
Version:
A Javascript library to interact with the UNICO API.
45 lines (44 loc) • 2.04 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const completions_1 = __importDefault(require("./completions"));
const contexts_1 = __importDefault(require("./contexts"));
class Agents {
constructor(unicoApiKey, baseUrl) {
this.unicoApiKey = unicoApiKey;
this.baseUrl = baseUrl;
this.contexts = new contexts_1.default(this.unicoApiKey, this.baseUrl);
this.completions = new completions_1.default(this.unicoApiKey, this.baseUrl);
}
retrieve() {
return __awaiter(this, void 0, void 0, function* () {
const response = yield fetch(`${this.baseUrl}/agents`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${this.unicoApiKey}`,
},
});
if (!response.ok) {
const data = (yield response.json());
if (data && data.error) {
throw new Error(data.error);
}
throw new Error(response.statusText);
}
return (yield response.json()).agents;
});
}
}
exports.default = Agents;