commit
This commit is contained in:
parent
b9e306320c
commit
943ecc44c1
79 changed files with 15959 additions and 1 deletions
61
node_modules/openai/dist/base.js
generated
vendored
Normal file
61
node_modules/openai/dist/base.js
generated
vendored
Normal file
|
@ -0,0 +1,61 @@
|
|||
"use strict";
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* OpenAI API
|
||||
* APIs for sampling from and fine-tuning language models
|
||||
*
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
|
||||
// Some imports not used depending on template conditions
|
||||
// @ts-ignore
|
||||
const axios_1 = require("axios");
|
||||
exports.BASE_PATH = "https://api.openai.com/v1".replace(/\/+$/, "");
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
*/
|
||||
exports.COLLECTION_FORMATS = {
|
||||
csv: ",",
|
||||
ssv: " ",
|
||||
tsv: "\t",
|
||||
pipes: "|",
|
||||
};
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @class BaseAPI
|
||||
*/
|
||||
class BaseAPI {
|
||||
constructor(configuration, basePath = exports.BASE_PATH, axios = axios_1.default) {
|
||||
this.basePath = basePath;
|
||||
this.axios = axios;
|
||||
if (configuration) {
|
||||
this.configuration = configuration;
|
||||
this.basePath = configuration.basePath || this.basePath;
|
||||
}
|
||||
}
|
||||
}
|
||||
exports.BaseAPI = BaseAPI;
|
||||
;
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @class RequiredError
|
||||
* @extends {Error}
|
||||
*/
|
||||
class RequiredError extends Error {
|
||||
constructor(field, msg) {
|
||||
super(msg);
|
||||
this.field = field;
|
||||
this.name = "RequiredError";
|
||||
}
|
||||
}
|
||||
exports.RequiredError = RequiredError;
|
Loading…
Add table
Add a link
Reference in a new issue