From da1df1412618d9d6ed7addd16aa3aa3efedbb218 Mon Sep 17 00:00:00 2001 From: Guillaume FORTAINE Date: Mon, 6 Mar 2023 01:01:21 +0100 Subject: [PATCH 1/2] chore(upgrade): enable ESM support --- .gitignore | 3 + .openapi-generator/FILES | 4 + api.ts | 10 +- configuration.ts | 7 +- dist/api.d.ts | 2868 -------------------------------------- dist/api.js | 2038 --------------------------- dist/base.d.ts | 54 - dist/base.js | 59 - dist/common.d.ts | 65 - dist/common.js | 151 -- dist/configuration.d.ts | 91 -- dist/configuration.js | 54 - dist/index.d.ts | 13 - dist/index.js | 27 - package.json | 38 +- stream.ts | 29 + tsc-multi.json | 4 + tsconfig.esm.json | 7 + tsconfig.json | 4 +- 19 files changed, 92 insertions(+), 5434 deletions(-) delete mode 100644 dist/api.d.ts delete mode 100644 dist/api.js delete mode 100644 dist/base.d.ts delete mode 100644 dist/base.js delete mode 100644 dist/common.d.ts delete mode 100644 dist/common.js delete mode 100644 dist/configuration.d.ts delete mode 100644 dist/configuration.js delete mode 100644 dist/index.d.ts delete mode 100644 dist/index.js create mode 100644 stream.ts create mode 100644 tsc-multi.json create mode 100644 tsconfig.esm.json diff --git a/.gitignore b/.gitignore index 07e6e472c..a4d2e6532 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ /node_modules + +# build artifacts +dist \ No newline at end of file diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index daef44100..d9ae8bc39 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -4,3 +4,7 @@ base.ts common.ts configuration.ts index.ts +stream.ts +tsc-multi.json +tsconfig.esm.json +tsconfig.json diff --git a/api.ts b/api.ts index 6dcf8db1d..379642481 100644 --- a/api.ts +++ b/api.ts @@ -2149,7 +2149,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...(localVarFormParams as any).getHeaders?.(), ...options.headers}; localVarRequestOptions.data = localVarFormParams; return { @@ -2294,7 +2294,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...(localVarFormParams as any).getHeaders?.(), ...options.headers}; localVarRequestOptions.data = localVarFormParams; return { @@ -2355,7 +2355,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...(localVarFormParams as any).getHeaders?.(), ...options.headers}; localVarRequestOptions.data = localVarFormParams; return { @@ -2500,7 +2500,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...(localVarFormParams as any).getHeaders?.(), ...options.headers}; localVarRequestOptions.data = localVarFormParams; return { @@ -2563,7 +2563,7 @@ export const OpenAIApiAxiosParamCreator = function (configuration?: Configuratio setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = {...localVarHeaderParameter, ...localVarFormParams.getHeaders(), ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...(localVarFormParams as any).getHeaders?.(), ...options.headers}; localVarRequestOptions.data = localVarFormParams; return { diff --git a/configuration.ts b/configuration.ts index 2a51762e0..bcdd1ac06 100644 --- a/configuration.ts +++ b/configuration.ts @@ -13,7 +13,8 @@ */ -const packageJson = require("../package.json"); +import FormData from "form-data"; +import { LIB_VERSION } from "./version"; export interface ConfigurationParameters { apiKey?: string | Promise | ((name: string) => string) | ((name: string) => Promise); @@ -98,7 +99,7 @@ export class Configuration { this.baseOptions = {}; } this.baseOptions.headers = { - 'User-Agent': `OpenAI/NodeJS/${packageJson.version}`, + 'User-Agent': `OpenAI/NodeJS/${LIB_VERSION}`, 'Authorization': `Bearer ${this.apiKey}`, ...this.baseOptions.headers, } @@ -106,7 +107,7 @@ export class Configuration { this.baseOptions.headers['OpenAI-Organization'] = this.organization; } if (!this.formDataCtor) { - this.formDataCtor = require("form-data"); + this.formDataCtor = FormData; } } diff --git a/dist/api.d.ts b/dist/api.d.ts deleted file mode 100644 index 167eea44c..000000000 --- a/dist/api.d.ts +++ /dev/null @@ -1,2868 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -import type { Configuration } from './configuration'; -import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; -import type { RequestArgs } from './base'; -import { BaseAPI } from './base'; -/** - * - * @export - * @interface ChatCompletionRequestMessage - */ -export interface ChatCompletionRequestMessage { - /** - * The role of the author of this message. - * @type {string} - * @memberof ChatCompletionRequestMessage - */ - 'role': ChatCompletionRequestMessageRoleEnum; - /** - * The contents of the message - * @type {string} - * @memberof ChatCompletionRequestMessage - */ - 'content': string; - /** - * The name of the user in a multi-user chat - * @type {string} - * @memberof ChatCompletionRequestMessage - */ - 'name'?: string; -} -export declare const ChatCompletionRequestMessageRoleEnum: { - readonly System: "system"; - readonly User: "user"; - readonly Assistant: "assistant"; -}; -export declare type ChatCompletionRequestMessageRoleEnum = typeof ChatCompletionRequestMessageRoleEnum[keyof typeof ChatCompletionRequestMessageRoleEnum]; -/** - * - * @export - * @interface ChatCompletionResponseMessage - */ -export interface ChatCompletionResponseMessage { - /** - * The role of the author of this message. - * @type {string} - * @memberof ChatCompletionResponseMessage - */ - 'role': ChatCompletionResponseMessageRoleEnum; - /** - * The contents of the message - * @type {string} - * @memberof ChatCompletionResponseMessage - */ - 'content': string; -} -export declare const ChatCompletionResponseMessageRoleEnum: { - readonly System: "system"; - readonly User: "user"; - readonly Assistant: "assistant"; -}; -export declare type ChatCompletionResponseMessageRoleEnum = typeof ChatCompletionResponseMessageRoleEnum[keyof typeof ChatCompletionResponseMessageRoleEnum]; -/** - * - * @export - * @interface CreateAnswerRequest - */ -export interface CreateAnswerRequest { - /** - * ID of the model to use for completion. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'model': string; - /** - * Question to get answered. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'question': string; - /** - * List of (question, answer) pairs that will help steer the model towards the tone and answer format you\'d like. We recommend adding 2 to 3 examples. - * @type {Array} - * @memberof CreateAnswerRequest - */ - 'examples': Array; - /** - * A text snippet containing the contextual information used to generate the answers for the `examples` you provide. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'examples_context': string; - /** - * List of documents from which the answer for the input `question` should be derived. If this is an empty list, the question will be answered based on the question-answer examples. You should specify either `documents` or a `file`, but not both. - * @type {Array} - * @memberof CreateAnswerRequest - */ - 'documents'?: Array | null; - /** - * The ID of an uploaded file that contains documents to search over. See [upload file](/docs/api-reference/files/upload) for how to upload a file of the desired format and purpose. You should specify either `documents` or a `file`, but not both. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'file'?: string | null; - /** - * ID of the model to use for [Search](/docs/api-reference/searches/create). You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @type {string} - * @memberof CreateAnswerRequest - */ - 'search_model'?: string | null; - /** - * The maximum number of documents to be ranked by [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a higher value leads to improved accuracy but with increased latency and cost. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'max_rerank'?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'temperature'?: number | null; - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. If you need more than this, please contact us through our [Help center](https://help.openai.com) and describe your use case. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'logprobs'?: number | null; - /** - * The maximum number of tokens allowed for the generated answer - * @type {number} - * @memberof CreateAnswerRequest - */ - 'max_tokens'?: number | null; - /** - * - * @type {CreateAnswerRequestStop} - * @memberof CreateAnswerRequest - */ - 'stop'?: CreateAnswerRequestStop | null; - /** - * How many answers to generate for each question. - * @type {number} - * @memberof CreateAnswerRequest - */ - 'n'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated. - * @type {object} - * @memberof CreateAnswerRequest - */ - 'logit_bias'?: object | null; - /** - * A special boolean flag for showing metadata. If set to `true`, each document entry in the returned JSON will contain a \"metadata\" field. This flag only takes effect when `file` is set. - * @type {boolean} - * @memberof CreateAnswerRequest - */ - 'return_metadata'?: boolean | null; - /** - * If set to `true`, the returned JSON will include a \"prompt\" field containing the final prompt that was used to request a completion. This is mainly useful for debugging purposes. - * @type {boolean} - * @memberof CreateAnswerRequest - */ - 'return_prompt'?: boolean | null; - /** - * If an object name is in the list, we provide the full information of the object; otherwise, we only provide the object ID. Currently we support `completion` and `file` objects for expansion. - * @type {Array} - * @memberof CreateAnswerRequest - */ - 'expand'?: Array | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateAnswerRequest - */ - 'user'?: string; -} -/** - * @type CreateAnswerRequestStop - * Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. - * @export - */ -export declare type CreateAnswerRequestStop = Array | string; -/** - * - * @export - * @interface CreateAnswerResponse - */ -export interface CreateAnswerResponse { - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'object'?: string; - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'model'?: string; - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'search_model'?: string; - /** - * - * @type {string} - * @memberof CreateAnswerResponse - */ - 'completion'?: string; - /** - * - * @type {Array} - * @memberof CreateAnswerResponse - */ - 'answers'?: Array; - /** - * - * @type {Array} - * @memberof CreateAnswerResponse - */ - 'selected_documents'?: Array; -} -/** - * - * @export - * @interface CreateAnswerResponseSelectedDocumentsInner - */ -export interface CreateAnswerResponseSelectedDocumentsInner { - /** - * - * @type {number} - * @memberof CreateAnswerResponseSelectedDocumentsInner - */ - 'document'?: number; - /** - * - * @type {string} - * @memberof CreateAnswerResponseSelectedDocumentsInner - */ - 'text'?: string; -} -/** - * - * @export - * @interface CreateChatCompletionRequest - */ -export interface CreateChatCompletionRequest { - /** - * ID of the model to use. Currently, only `gpt-3.5-turbo` and `gpt-3.5-turbo-0301` are supported. - * @type {string} - * @memberof CreateChatCompletionRequest - */ - 'model': string; - /** - * The messages to generate chat completions for, in the [chat format](/docs/guides/chat/introduction). - * @type {Array} - * @memberof CreateChatCompletionRequest - */ - 'messages': Array; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'temperature'?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'top_p'?: number | null; - /** - * How many chat completion choices to generate for each input message. - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'n'?: number | null; - /** - * If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. - * @type {boolean} - * @memberof CreateChatCompletionRequest - */ - 'stream'?: boolean | null; - /** - * - * @type {CreateChatCompletionRequestStop} - * @memberof CreateChatCompletionRequest - */ - 'stop'?: CreateChatCompletionRequestStop; - /** - * The maximum number of tokens allowed for the generated answer. By default, the number of tokens the model can return will be (4096 - prompt tokens). - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'max_tokens'?: number; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'presence_penalty'?: number | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateChatCompletionRequest - */ - 'frequency_penalty'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. - * @type {object} - * @memberof CreateChatCompletionRequest - */ - 'logit_bias'?: object | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateChatCompletionRequest - */ - 'user'?: string; -} -/** - * @type CreateChatCompletionRequestStop - * Up to 4 sequences where the API will stop generating further tokens. - * @export - */ -export declare type CreateChatCompletionRequestStop = Array | string; -/** - * - * @export - * @interface CreateChatCompletionResponse - */ -export interface CreateChatCompletionResponse { - /** - * - * @type {string} - * @memberof CreateChatCompletionResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof CreateChatCompletionResponse - */ - 'object': string; - /** - * - * @type {number} - * @memberof CreateChatCompletionResponse - */ - 'created': number; - /** - * - * @type {string} - * @memberof CreateChatCompletionResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateChatCompletionResponse - */ - 'choices': Array; - /** - * - * @type {CreateCompletionResponseUsage} - * @memberof CreateChatCompletionResponse - */ - 'usage'?: CreateCompletionResponseUsage; -} -/** - * - * @export - * @interface CreateChatCompletionResponseChoicesInner - */ -export interface CreateChatCompletionResponseChoicesInner { - /** - * - * @type {number} - * @memberof CreateChatCompletionResponseChoicesInner - */ - 'index'?: number; - /** - * - * @type {ChatCompletionResponseMessage} - * @memberof CreateChatCompletionResponseChoicesInner - */ - 'message'?: ChatCompletionResponseMessage; - /** - * - * @type {string} - * @memberof CreateChatCompletionResponseChoicesInner - */ - 'finish_reason'?: string; -} -/** - * - * @export - * @interface CreateClassificationRequest - */ -export interface CreateClassificationRequest { - /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'model': string; - /** - * Query to be classified. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'query': string; - /** - * A list of examples with labels, in the following format: `[[\"The movie is so interesting.\", \"Positive\"], [\"It is quite boring.\", \"Negative\"], ...]` All the label strings will be normalized to be capitalized. You should specify either `examples` or `file`, but not both. - * @type {Array} - * @memberof CreateClassificationRequest - */ - 'examples'?: Array | null; - /** - * The ID of the uploaded file that contains training examples. See [upload file](/docs/api-reference/files/upload) for how to upload a file of the desired format and purpose. You should specify either `examples` or `file`, but not both. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'file'?: string | null; - /** - * The set of categories being classified. If not specified, candidate labels will be automatically collected from the examples you provide. All the label strings will be normalized to be capitalized. - * @type {Array} - * @memberof CreateClassificationRequest - */ - 'labels'?: Array | null; - /** - * ID of the model to use for [Search](/docs/api-reference/searches/create). You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @type {string} - * @memberof CreateClassificationRequest - */ - 'search_model'?: string | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. - * @type {number} - * @memberof CreateClassificationRequest - */ - 'temperature'?: number | null; - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. If you need more than this, please contact us through our [Help center](https://help.openai.com) and describe your use case. When `logprobs` is set, `completion` will be automatically added into `expand` to get the logprobs. - * @type {number} - * @memberof CreateClassificationRequest - */ - 'logprobs'?: number | null; - /** - * The maximum number of examples to be ranked by [Search](/docs/api-reference/searches/create) when using `file`. Setting it to a higher value leads to improved accuracy but with increased latency and cost. - * @type {number} - * @memberof CreateClassificationRequest - */ - 'max_examples'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated. - * @type {object} - * @memberof CreateClassificationRequest - */ - 'logit_bias'?: object | null; - /** - * If set to `true`, the returned JSON will include a \"prompt\" field containing the final prompt that was used to request a completion. This is mainly useful for debugging purposes. - * @type {boolean} - * @memberof CreateClassificationRequest - */ - 'return_prompt'?: boolean | null; - /** - * A special boolean flag for showing metadata. If set to `true`, each document entry in the returned JSON will contain a \"metadata\" field. This flag only takes effect when `file` is set. - * @type {boolean} - * @memberof CreateClassificationRequest - */ - 'return_metadata'?: boolean | null; - /** - * If an object name is in the list, we provide the full information of the object; otherwise, we only provide the object ID. Currently we support `completion` and `file` objects for expansion. - * @type {Array} - * @memberof CreateClassificationRequest - */ - 'expand'?: Array | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateClassificationRequest - */ - 'user'?: string; -} -/** - * - * @export - * @interface CreateClassificationResponse - */ -export interface CreateClassificationResponse { - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'object'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'model'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'search_model'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'completion'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponse - */ - 'label'?: string; - /** - * - * @type {Array} - * @memberof CreateClassificationResponse - */ - 'selected_examples'?: Array; -} -/** - * - * @export - * @interface CreateClassificationResponseSelectedExamplesInner - */ -export interface CreateClassificationResponseSelectedExamplesInner { - /** - * - * @type {number} - * @memberof CreateClassificationResponseSelectedExamplesInner - */ - 'document'?: number; - /** - * - * @type {string} - * @memberof CreateClassificationResponseSelectedExamplesInner - */ - 'text'?: string; - /** - * - * @type {string} - * @memberof CreateClassificationResponseSelectedExamplesInner - */ - 'label'?: string; -} -/** - * - * @export - * @interface CreateCompletionRequest - */ -export interface CreateCompletionRequest { - /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. - * @type {string} - * @memberof CreateCompletionRequest - */ - 'model': string; - /** - * - * @type {CreateCompletionRequestPrompt} - * @memberof CreateCompletionRequest - */ - 'prompt'?: CreateCompletionRequestPrompt | null; - /** - * The suffix that comes after a completion of inserted text. - * @type {string} - * @memberof CreateCompletionRequest - */ - 'suffix'?: string | null; - /** - * The maximum number of [tokens](/tokenizer) to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model\'s context length. Most models have a context length of 2048 tokens (except for the newest models, which support 4096). - * @type {number} - * @memberof CreateCompletionRequest - */ - 'max_tokens'?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'temperature'?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'top_p'?: number | null; - /** - * How many completions to generate for each prompt. **Note:** Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for `max_tokens` and `stop`. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'n'?: number | null; - /** - * Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. - * @type {boolean} - * @memberof CreateCompletionRequest - */ - 'stream'?: boolean | null; - /** - * Include the log probabilities on the `logprobs` most likely tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response. The maximum value for `logprobs` is 5. If you need more than this, please contact us through our [Help center](https://help.openai.com) and describe your use case. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'logprobs'?: number | null; - /** - * Echo back the prompt in addition to the completion - * @type {boolean} - * @memberof CreateCompletionRequest - */ - 'echo'?: boolean | null; - /** - * - * @type {CreateCompletionRequestStop} - * @memberof CreateCompletionRequest - */ - 'stop'?: CreateCompletionRequestStop | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateCompletionRequest - */ - 'presence_penalty'?: number | null; - /** - * Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim. [See more information about frequency and presence penalties.](/docs/api-reference/parameter-details) - * @type {number} - * @memberof CreateCompletionRequest - */ - 'frequency_penalty'?: number | null; - /** - * Generates `best_of` completions server-side and returns the \"best\" (the one with the highest log probability per token). Results cannot be streamed. When used with `n`, `best_of` controls the number of candidate completions and `n` specifies how many to return – `best_of` must be greater than `n`. **Note:** Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for `max_tokens` and `stop`. - * @type {number} - * @memberof CreateCompletionRequest - */ - 'best_of'?: number | null; - /** - * Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated. - * @type {object} - * @memberof CreateCompletionRequest - */ - 'logit_bias'?: object | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateCompletionRequest - */ - 'user'?: string; -} -/** - * @type CreateCompletionRequestPrompt - * The prompt(s) to generate completions for, encoded as a string, array of strings, array of tokens, or array of token arrays. Note that <|endoftext|> is the document separator that the model sees during training, so if a prompt is not specified the model will generate as if from the beginning of a new document. - * @export - */ -export declare type CreateCompletionRequestPrompt = Array | Array | Array | string; -/** - * @type CreateCompletionRequestStop - * Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. - * @export - */ -export declare type CreateCompletionRequestStop = Array | string; -/** - * - * @export - * @interface CreateCompletionResponse - */ -export interface CreateCompletionResponse { - /** - * - * @type {string} - * @memberof CreateCompletionResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof CreateCompletionResponse - */ - 'object': string; - /** - * - * @type {number} - * @memberof CreateCompletionResponse - */ - 'created': number; - /** - * - * @type {string} - * @memberof CreateCompletionResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateCompletionResponse - */ - 'choices': Array; - /** - * - * @type {CreateCompletionResponseUsage} - * @memberof CreateCompletionResponse - */ - 'usage'?: CreateCompletionResponseUsage; -} -/** - * - * @export - * @interface CreateCompletionResponseChoicesInner - */ -export interface CreateCompletionResponseChoicesInner { - /** - * - * @type {string} - * @memberof CreateCompletionResponseChoicesInner - */ - 'text'?: string; - /** - * - * @type {number} - * @memberof CreateCompletionResponseChoicesInner - */ - 'index'?: number; - /** - * - * @type {CreateCompletionResponseChoicesInnerLogprobs} - * @memberof CreateCompletionResponseChoicesInner - */ - 'logprobs'?: CreateCompletionResponseChoicesInnerLogprobs | null; - /** - * - * @type {string} - * @memberof CreateCompletionResponseChoicesInner - */ - 'finish_reason'?: string; -} -/** - * - * @export - * @interface CreateCompletionResponseChoicesInnerLogprobs - */ -export interface CreateCompletionResponseChoicesInnerLogprobs { - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'tokens'?: Array; - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'token_logprobs'?: Array; - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'top_logprobs'?: Array; - /** - * - * @type {Array} - * @memberof CreateCompletionResponseChoicesInnerLogprobs - */ - 'text_offset'?: Array; -} -/** - * - * @export - * @interface CreateCompletionResponseUsage - */ -export interface CreateCompletionResponseUsage { - /** - * - * @type {number} - * @memberof CreateCompletionResponseUsage - */ - 'prompt_tokens': number; - /** - * - * @type {number} - * @memberof CreateCompletionResponseUsage - */ - 'completion_tokens': number; - /** - * - * @type {number} - * @memberof CreateCompletionResponseUsage - */ - 'total_tokens': number; -} -/** - * - * @export - * @interface CreateEditRequest - */ -export interface CreateEditRequest { - /** - * ID of the model to use. You can use the `text-davinci-edit-001` or `code-davinci-edit-001` model with this endpoint. - * @type {string} - * @memberof CreateEditRequest - */ - 'model': string; - /** - * The input text to use as a starting point for the edit. - * @type {string} - * @memberof CreateEditRequest - */ - 'input'?: string | null; - /** - * The instruction that tells the model how to edit the prompt. - * @type {string} - * @memberof CreateEditRequest - */ - 'instruction': string; - /** - * How many edits to generate for the input and instruction. - * @type {number} - * @memberof CreateEditRequest - */ - 'n'?: number | null; - /** - * What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both. - * @type {number} - * @memberof CreateEditRequest - */ - 'temperature'?: number | null; - /** - * An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both. - * @type {number} - * @memberof CreateEditRequest - */ - 'top_p'?: number | null; -} -/** - * - * @export - * @interface CreateEditResponse - */ -export interface CreateEditResponse { - /** - * - * @type {string} - * @memberof CreateEditResponse - */ - 'object': string; - /** - * - * @type {number} - * @memberof CreateEditResponse - */ - 'created': number; - /** - * - * @type {Array} - * @memberof CreateEditResponse - */ - 'choices': Array; - /** - * - * @type {CreateCompletionResponseUsage} - * @memberof CreateEditResponse - */ - 'usage': CreateCompletionResponseUsage; -} -/** - * - * @export - * @interface CreateEmbeddingRequest - */ -export interface CreateEmbeddingRequest { - /** - * ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models/overview) for descriptions of them. - * @type {string} - * @memberof CreateEmbeddingRequest - */ - 'model': string; - /** - * - * @type {CreateEmbeddingRequestInput} - * @memberof CreateEmbeddingRequest - */ - 'input': CreateEmbeddingRequestInput; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateEmbeddingRequest - */ - 'user'?: string; -} -/** - * @type CreateEmbeddingRequestInput - * Input text to get embeddings for, encoded as a string or array of tokens. To get embeddings for multiple inputs in a single request, pass an array of strings or array of token arrays. Each input must not exceed 8192 tokens in length. - * @export - */ -export declare type CreateEmbeddingRequestInput = Array | Array | Array | string; -/** - * - * @export - * @interface CreateEmbeddingResponse - */ -export interface CreateEmbeddingResponse { - /** - * - * @type {string} - * @memberof CreateEmbeddingResponse - */ - 'object': string; - /** - * - * @type {string} - * @memberof CreateEmbeddingResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateEmbeddingResponse - */ - 'data': Array; - /** - * - * @type {CreateEmbeddingResponseUsage} - * @memberof CreateEmbeddingResponse - */ - 'usage': CreateEmbeddingResponseUsage; -} -/** - * - * @export - * @interface CreateEmbeddingResponseDataInner - */ -export interface CreateEmbeddingResponseDataInner { - /** - * - * @type {number} - * @memberof CreateEmbeddingResponseDataInner - */ - 'index': number; - /** - * - * @type {string} - * @memberof CreateEmbeddingResponseDataInner - */ - 'object': string; - /** - * - * @type {Array} - * @memberof CreateEmbeddingResponseDataInner - */ - 'embedding': Array; -} -/** - * - * @export - * @interface CreateEmbeddingResponseUsage - */ -export interface CreateEmbeddingResponseUsage { - /** - * - * @type {number} - * @memberof CreateEmbeddingResponseUsage - */ - 'prompt_tokens': number; - /** - * - * @type {number} - * @memberof CreateEmbeddingResponseUsage - */ - 'total_tokens': number; -} -/** - * - * @export - * @interface CreateFineTuneRequest - */ -export interface CreateFineTuneRequest { - /** - * The ID of an uploaded file that contains training data. See [upload file](/docs/api-reference/files/upload) for how to upload a file. Your dataset must be formatted as a JSONL file, where each training example is a JSON object with the keys \"prompt\" and \"completion\". Additionally, you must upload your file with the purpose `fine-tune`. See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for more details. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'training_file': string; - /** - * The ID of an uploaded file that contains validation data. If you provide this file, the data is used to generate validation metrics periodically during fine-tuning. These metrics can be viewed in the [fine-tuning results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). Your train and validation data should be mutually exclusive. Your dataset must be formatted as a JSONL file, where each validation example is a JSON object with the keys \"prompt\" and \"completion\". Additionally, you must upload your file with the purpose `fine-tune`. See the [fine-tuning guide](/docs/guides/fine-tuning/creating-training-data) for more details. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'validation_file'?: string | null; - /** - * The name of the base model to fine-tune. You can select one of \"ada\", \"babbage\", \"curie\", \"davinci\", or a fine-tuned model created after 2022-04-21. To learn more about these models, see the [Models](https://platform.openai.com/docs/models) documentation. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'model'?: string | null; - /** - * The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'n_epochs'?: number | null; - /** - * The batch size to use for training. The batch size is the number of training examples used to train a single forward and backward pass. By default, the batch size will be dynamically configured to be ~0.2% of the number of examples in the training set, capped at 256 - in general, we\'ve found that larger batch sizes tend to work better for larger datasets. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'batch_size'?: number | null; - /** - * The learning rate multiplier to use for training. The fine-tuning learning rate is the original learning rate used for pretraining multiplied by this value. By default, the learning rate multiplier is the 0.05, 0.1, or 0.2 depending on final `batch_size` (larger learning rates tend to perform better with larger batch sizes). We recommend experimenting with values in the range 0.02 to 0.2 to see what produces the best results. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'learning_rate_multiplier'?: number | null; - /** - * The weight to use for loss on the prompt tokens. This controls how much the model tries to learn to generate the prompt (as compared to the completion which always has a weight of 1.0), and can add a stabilizing effect to training when completions are short. If prompts are extremely long (relative to completions), it may make sense to reduce this weight so as to avoid over-prioritizing learning the prompt. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'prompt_loss_weight'?: number | null; - /** - * If set, we calculate classification-specific metrics such as accuracy and F-1 score using the validation set at the end of every epoch. These metrics can be viewed in the [results file](/docs/guides/fine-tuning/analyzing-your-fine-tuned-model). In order to compute classification metrics, you must provide a `validation_file`. Additionally, you must specify `classification_n_classes` for multiclass classification or `classification_positive_class` for binary classification. - * @type {boolean} - * @memberof CreateFineTuneRequest - */ - 'compute_classification_metrics'?: boolean | null; - /** - * The number of classes in a classification task. This parameter is required for multiclass classification. - * @type {number} - * @memberof CreateFineTuneRequest - */ - 'classification_n_classes'?: number | null; - /** - * The positive class in binary classification. This parameter is needed to generate precision, recall, and F1 metrics when doing binary classification. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'classification_positive_class'?: string | null; - /** - * If this is provided, we calculate F-beta scores at the specified beta values. The F-beta score is a generalization of F-1 score. This is only used for binary classification. With a beta of 1 (i.e. the F-1 score), precision and recall are given the same weight. A larger beta score puts more weight on recall and less on precision. A smaller beta score puts more weight on precision and less on recall. - * @type {Array} - * @memberof CreateFineTuneRequest - */ - 'classification_betas'?: Array | null; - /** - * A string of up to 40 characters that will be added to your fine-tuned model name. For example, a `suffix` of \"custom-model-name\" would produce a model name like `ada:ft-your-org:custom-model-name-2022-02-15-04-21-04`. - * @type {string} - * @memberof CreateFineTuneRequest - */ - 'suffix'?: string | null; -} -/** - * - * @export - * @interface CreateImageRequest - */ -export interface CreateImageRequest { - /** - * A text description of the desired image(s). The maximum length is 1000 characters. - * @type {string} - * @memberof CreateImageRequest - */ - 'prompt': string; - /** - * The number of images to generate. Must be between 1 and 10. - * @type {number} - * @memberof CreateImageRequest - */ - 'n'?: number | null; - /** - * The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @type {string} - * @memberof CreateImageRequest - */ - 'size'?: CreateImageRequestSizeEnum; - /** - * The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @type {string} - * @memberof CreateImageRequest - */ - 'response_format'?: CreateImageRequestResponseFormatEnum; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateImageRequest - */ - 'user'?: string; -} -export declare const CreateImageRequestSizeEnum: { - readonly _256x256: "256x256"; - readonly _512x512: "512x512"; - readonly _1024x1024: "1024x1024"; -}; -export declare type CreateImageRequestSizeEnum = typeof CreateImageRequestSizeEnum[keyof typeof CreateImageRequestSizeEnum]; -export declare const CreateImageRequestResponseFormatEnum: { - readonly Url: "url"; - readonly B64Json: "b64_json"; -}; -export declare type CreateImageRequestResponseFormatEnum = typeof CreateImageRequestResponseFormatEnum[keyof typeof CreateImageRequestResponseFormatEnum]; -/** - * - * @export - * @interface CreateModerationRequest - */ -export interface CreateModerationRequest { - /** - * - * @type {CreateModerationRequestInput} - * @memberof CreateModerationRequest - */ - 'input': CreateModerationRequestInput; - /** - * Two content moderations models are available: `text-moderation-stable` and `text-moderation-latest`. The default is `text-moderation-latest` which will be automatically upgraded over time. This ensures you are always using our most accurate model. If you use `text-moderation-stable`, we will provide advanced notice before updating the model. Accuracy of `text-moderation-stable` may be slightly lower than for `text-moderation-latest`. - * @type {string} - * @memberof CreateModerationRequest - */ - 'model'?: string; -} -/** - * @type CreateModerationRequestInput - * The input text to classify - * @export - */ -export declare type CreateModerationRequestInput = Array | string; -/** - * - * @export - * @interface CreateModerationResponse - */ -export interface CreateModerationResponse { - /** - * - * @type {string} - * @memberof CreateModerationResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof CreateModerationResponse - */ - 'model': string; - /** - * - * @type {Array} - * @memberof CreateModerationResponse - */ - 'results': Array; -} -/** - * - * @export - * @interface CreateModerationResponseResultsInner - */ -export interface CreateModerationResponseResultsInner { - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInner - */ - 'flagged': boolean; - /** - * - * @type {CreateModerationResponseResultsInnerCategories} - * @memberof CreateModerationResponseResultsInner - */ - 'categories': CreateModerationResponseResultsInnerCategories; - /** - * - * @type {CreateModerationResponseResultsInnerCategoryScores} - * @memberof CreateModerationResponseResultsInner - */ - 'category_scores': CreateModerationResponseResultsInnerCategoryScores; -} -/** - * - * @export - * @interface CreateModerationResponseResultsInnerCategories - */ -export interface CreateModerationResponseResultsInnerCategories { - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'hate': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'hate/threatening': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'self-harm': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'sexual': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'sexual/minors': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'violence': boolean; - /** - * - * @type {boolean} - * @memberof CreateModerationResponseResultsInnerCategories - */ - 'violence/graphic': boolean; -} -/** - * - * @export - * @interface CreateModerationResponseResultsInnerCategoryScores - */ -export interface CreateModerationResponseResultsInnerCategoryScores { - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'hate': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'hate/threatening': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'self-harm': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'sexual': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'sexual/minors': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'violence': number; - /** - * - * @type {number} - * @memberof CreateModerationResponseResultsInnerCategoryScores - */ - 'violence/graphic': number; -} -/** - * - * @export - * @interface CreateSearchRequest - */ -export interface CreateSearchRequest { - /** - * Query to search against the documents. - * @type {string} - * @memberof CreateSearchRequest - */ - 'query': string; - /** - * Up to 200 documents to search over, provided as a list of strings. The maximum document length (in tokens) is 2034 minus the number of tokens in the query. You should specify either `documents` or a `file`, but not both. - * @type {Array} - * @memberof CreateSearchRequest - */ - 'documents'?: Array | null; - /** - * The ID of an uploaded file that contains documents to search over. You should specify either `documents` or a `file`, but not both. - * @type {string} - * @memberof CreateSearchRequest - */ - 'file'?: string | null; - /** - * The maximum number of documents to be re-ranked and returned by search. This flag only takes effect when `file` is set. - * @type {number} - * @memberof CreateSearchRequest - */ - 'max_rerank'?: number | null; - /** - * A special boolean flag for showing metadata. If set to `true`, each document entry in the returned JSON will contain a \"metadata\" field. This flag only takes effect when `file` is set. - * @type {boolean} - * @memberof CreateSearchRequest - */ - 'return_metadata'?: boolean | null; - /** - * A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @type {string} - * @memberof CreateSearchRequest - */ - 'user'?: string; -} -/** - * - * @export - * @interface CreateSearchResponse - */ -export interface CreateSearchResponse { - /** - * - * @type {string} - * @memberof CreateSearchResponse - */ - 'object'?: string; - /** - * - * @type {string} - * @memberof CreateSearchResponse - */ - 'model'?: string; - /** - * - * @type {Array} - * @memberof CreateSearchResponse - */ - 'data'?: Array; -} -/** - * - * @export - * @interface CreateSearchResponseDataInner - */ -export interface CreateSearchResponseDataInner { - /** - * - * @type {string} - * @memberof CreateSearchResponseDataInner - */ - 'object'?: string; - /** - * - * @type {number} - * @memberof CreateSearchResponseDataInner - */ - 'document'?: number; - /** - * - * @type {number} - * @memberof CreateSearchResponseDataInner - */ - 'score'?: number; -} -/** - * - * @export - * @interface CreateTranscriptionResponse - */ -export interface CreateTranscriptionResponse { - /** - * - * @type {string} - * @memberof CreateTranscriptionResponse - */ - 'text': string; -} -/** - * - * @export - * @interface CreateTranslationResponse - */ -export interface CreateTranslationResponse { - /** - * - * @type {string} - * @memberof CreateTranslationResponse - */ - 'text': string; -} -/** - * - * @export - * @interface DeleteFileResponse - */ -export interface DeleteFileResponse { - /** - * - * @type {string} - * @memberof DeleteFileResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof DeleteFileResponse - */ - 'object': string; - /** - * - * @type {boolean} - * @memberof DeleteFileResponse - */ - 'deleted': boolean; -} -/** - * - * @export - * @interface DeleteModelResponse - */ -export interface DeleteModelResponse { - /** - * - * @type {string} - * @memberof DeleteModelResponse - */ - 'id': string; - /** - * - * @type {string} - * @memberof DeleteModelResponse - */ - 'object': string; - /** - * - * @type {boolean} - * @memberof DeleteModelResponse - */ - 'deleted': boolean; -} -/** - * - * @export - * @interface Engine - */ -export interface Engine { - /** - * - * @type {string} - * @memberof Engine - */ - 'id': string; - /** - * - * @type {string} - * @memberof Engine - */ - 'object': string; - /** - * - * @type {number} - * @memberof Engine - */ - 'created': number | null; - /** - * - * @type {boolean} - * @memberof Engine - */ - 'ready': boolean; -} -/** - * - * @export - * @interface FineTune - */ -export interface FineTune { - /** - * - * @type {string} - * @memberof FineTune - */ - 'id': string; - /** - * - * @type {string} - * @memberof FineTune - */ - 'object': string; - /** - * - * @type {number} - * @memberof FineTune - */ - 'created_at': number; - /** - * - * @type {number} - * @memberof FineTune - */ - 'updated_at': number; - /** - * - * @type {string} - * @memberof FineTune - */ - 'model': string; - /** - * - * @type {string} - * @memberof FineTune - */ - 'fine_tuned_model': string | null; - /** - * - * @type {string} - * @memberof FineTune - */ - 'organization_id': string; - /** - * - * @type {string} - * @memberof FineTune - */ - 'status': string; - /** - * - * @type {object} - * @memberof FineTune - */ - 'hyperparams': object; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'training_files': Array; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'validation_files': Array; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'result_files': Array; - /** - * - * @type {Array} - * @memberof FineTune - */ - 'events'?: Array; -} -/** - * - * @export - * @interface FineTuneEvent - */ -export interface FineTuneEvent { - /** - * - * @type {string} - * @memberof FineTuneEvent - */ - 'object': string; - /** - * - * @type {number} - * @memberof FineTuneEvent - */ - 'created_at': number; - /** - * - * @type {string} - * @memberof FineTuneEvent - */ - 'level': string; - /** - * - * @type {string} - * @memberof FineTuneEvent - */ - 'message': string; -} -/** - * - * @export - * @interface ImagesResponse - */ -export interface ImagesResponse { - /** - * - * @type {number} - * @memberof ImagesResponse - */ - 'created': number; - /** - * - * @type {Array} - * @memberof ImagesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ImagesResponseDataInner - */ -export interface ImagesResponseDataInner { - /** - * - * @type {string} - * @memberof ImagesResponseDataInner - */ - 'url'?: string; - /** - * - * @type {string} - * @memberof ImagesResponseDataInner - */ - 'b64_json'?: string; -} -/** - * - * @export - * @interface ListEnginesResponse - */ -export interface ListEnginesResponse { - /** - * - * @type {string} - * @memberof ListEnginesResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListEnginesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListFilesResponse - */ -export interface ListFilesResponse { - /** - * - * @type {string} - * @memberof ListFilesResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListFilesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListFineTuneEventsResponse - */ -export interface ListFineTuneEventsResponse { - /** - * - * @type {string} - * @memberof ListFineTuneEventsResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListFineTuneEventsResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListFineTunesResponse - */ -export interface ListFineTunesResponse { - /** - * - * @type {string} - * @memberof ListFineTunesResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListFineTunesResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface ListModelsResponse - */ -export interface ListModelsResponse { - /** - * - * @type {string} - * @memberof ListModelsResponse - */ - 'object': string; - /** - * - * @type {Array} - * @memberof ListModelsResponse - */ - 'data': Array; -} -/** - * - * @export - * @interface Model - */ -export interface Model { - /** - * - * @type {string} - * @memberof Model - */ - 'id': string; - /** - * - * @type {string} - * @memberof Model - */ - 'object': string; - /** - * - * @type {number} - * @memberof Model - */ - 'created': number; - /** - * - * @type {string} - * @memberof Model - */ - 'owned_by': string; -} -/** - * - * @export - * @interface OpenAIFile - */ -export interface OpenAIFile { - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'id': string; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'object': string; - /** - * - * @type {number} - * @memberof OpenAIFile - */ - 'bytes': number; - /** - * - * @type {number} - * @memberof OpenAIFile - */ - 'created_at': number; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'filename': string; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'purpose': string; - /** - * - * @type {string} - * @memberof OpenAIFile - */ - 'status'?: string; - /** - * - * @type {object} - * @memberof OpenAIFile - */ - 'status_details'?: object | null; -} -/** - * OpenAIApi - axios parameter creator - * @export - */ -export declare const OpenAIApiAxiosParamCreator: (configuration?: Configuration) => { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune: (fineTuneId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer: (createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a completion for the chat message - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion: (createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification: (createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a completion for the provided prompt and parameters - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion: (createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit: (createEditRequest: CreateEditRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding: (createEmbeddingRequest: CreateEmbeddingRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile: (file: File, purpose: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune: (createFineTuneRequest: CreateFineTuneRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage: (createImageRequest: CreateImageRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit: (image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation: (image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration: (createModerationRequest: CreateModerationRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch: (engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription: (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation: (file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile: (fileId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel: (model: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile: (fileId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines: (options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles: (options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents: (fineTuneId: string, stream?: boolean, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes: (options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels: (options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine: (engineId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile: (fileId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune: (fineTuneId: string, options?: AxiosRequestConfig) => Promise; - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel: (model: string, options?: AxiosRequestConfig) => Promise; -}; -/** - * OpenAIApi - functional programming interface - * @export - */ -export declare const OpenAIApiFp: (configuration?: Configuration) => { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a completion for the chat message - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification(createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a completion for the provided prompt and parameters - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion(createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit(createEditRequest: CreateEditRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding(createEmbeddingRequest: CreateEmbeddingRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile(file: File, purpose: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune(createFineTuneRequest: CreateFineTuneRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage(createImageRequest: CreateImageRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation(image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration(createModerationRequest: CreateModerationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel(model: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents(fineTuneId: string, stream?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine(engineId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile(fileId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel(model: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; -}; -/** - * OpenAIApi - factory interface - * @export - */ -export declare const OpenAIApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune(fineTuneId: string, options?: any): AxiosPromise; - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer(createAnswerRequest: CreateAnswerRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates a completion for the chat message - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: any): AxiosPromise; - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification(createClassificationRequest: CreateClassificationRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates a completion for the provided prompt and parameters - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion(createCompletionRequest: CreateCompletionRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit(createEditRequest: CreateEditRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding(createEmbeddingRequest: CreateEmbeddingRequest, options?: any): AxiosPromise; - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile(file: File, purpose: string, options?: any): AxiosPromise; - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune(createFineTuneRequest: CreateFineTuneRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage(createImageRequest: CreateImageRequest, options?: any): AxiosPromise; - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise; - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation(image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: any): AxiosPromise; - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration(createModerationRequest: CreateModerationRequest, options?: any): AxiosPromise; - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: any): AxiosPromise; - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: any): AxiosPromise; - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: any): AxiosPromise; - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile(fileId: string, options?: any): AxiosPromise; - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel(model: string, options?: any): AxiosPromise; - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(fileId: string, options?: any): AxiosPromise; - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines(options?: any): AxiosPromise; - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles(options?: any): AxiosPromise; - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents(fineTuneId: string, stream?: boolean, options?: any): AxiosPromise; - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes(options?: any): AxiosPromise; - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels(options?: any): AxiosPromise; - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine(engineId: string, options?: any): AxiosPromise; - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile(fileId: string, options?: any): AxiosPromise; - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune(fineTuneId: string, options?: any): AxiosPromise; - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel(model: string, options?: any): AxiosPromise; -}; -/** - * OpenAIApi - object-oriented interface - * @export - * @class OpenAIApi - * @extends {BaseAPI} - */ -export declare class OpenAIApi extends BaseAPI { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - cancelFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createAnswer(createAnswerRequest: CreateAnswerRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a completion for the chat message - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createChatCompletion(createChatCompletionRequest: CreateChatCompletionRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createClassification(createClassificationRequest: CreateClassificationRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a completion for the provided prompt and parameters - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createCompletion(createCompletionRequest: CreateCompletionRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createEdit(createEditRequest: CreateEditRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createEmbedding(createEmbeddingRequest: CreateEmbeddingRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createFile(file: File, purpose: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createFineTune(createFineTuneRequest: CreateFineTuneRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImage(createImageRequest: CreateImageRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImageEdit(image: File, prompt: string, mask?: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImageVariation(image: File, n?: number, size?: string, responseFormat?: string, user?: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createModeration(createModerationRequest: CreateModerationRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createSearch(engineId: string, createSearchRequest: CreateSearchRequest, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createTranscription(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, language?: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createTranslation(file: File, model: string, prompt?: string, responseFormat?: string, temperature?: number, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - deleteFile(fileId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - deleteModel(model: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - downloadFile(fileId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listEngines(options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFiles(options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFineTuneEvents(fineTuneId: string, stream?: boolean, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFineTunes(options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listModels(options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveEngine(engineId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveFile(fileId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveFineTune(fineTuneId: string, options?: AxiosRequestConfig): Promise>; - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveModel(model: string, options?: AxiosRequestConfig): Promise>; -} diff --git a/dist/api.js b/dist/api.js deleted file mode 100644 index b3a4f1758..000000000 --- a/dist/api.js +++ /dev/null @@ -1,2038 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -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()); - }); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.OpenAIApi = exports.OpenAIApiFactory = exports.OpenAIApiFp = exports.OpenAIApiAxiosParamCreator = exports.CreateImageRequestResponseFormatEnum = exports.CreateImageRequestSizeEnum = exports.ChatCompletionResponseMessageRoleEnum = exports.ChatCompletionRequestMessageRoleEnum = void 0; -const axios_1 = require("axios"); -// Some imports not used depending on template conditions -// @ts-ignore -const common_1 = require("./common"); -// @ts-ignore -const base_1 = require("./base"); -exports.ChatCompletionRequestMessageRoleEnum = { - System: 'system', - User: 'user', - Assistant: 'assistant' -}; -exports.ChatCompletionResponseMessageRoleEnum = { - System: 'system', - User: 'user', - Assistant: 'assistant' -}; -exports.CreateImageRequestSizeEnum = { - _256x256: '256x256', - _512x512: '512x512', - _1024x1024: '1024x1024' -}; -exports.CreateImageRequestResponseFormatEnum = { - Url: 'url', - B64Json: 'b64_json' -}; -/** - * OpenAIApi - axios parameter creator - * @export - */ -exports.OpenAIApiAxiosParamCreator = function (configuration) { - return { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune: (fineTuneId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fineTuneId' is not null or undefined - common_1.assertParamExists('cancelFineTune', 'fineTuneId', fineTuneId); - const localVarPath = `/fine-tunes/{fine_tune_id}/cancel` - .replace(`{${"fine_tune_id"}}`, encodeURIComponent(String(fineTuneId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer: (createAnswerRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createAnswerRequest' is not null or undefined - common_1.assertParamExists('createAnswer', 'createAnswerRequest', createAnswerRequest); - const localVarPath = `/answers`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createAnswerRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a completion for the chat message - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion: (createChatCompletionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createChatCompletionRequest' is not null or undefined - common_1.assertParamExists('createChatCompletion', 'createChatCompletionRequest', createChatCompletionRequest); - const localVarPath = `/chat/completions`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createChatCompletionRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification: (createClassificationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createClassificationRequest' is not null or undefined - common_1.assertParamExists('createClassification', 'createClassificationRequest', createClassificationRequest); - const localVarPath = `/classifications`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createClassificationRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a completion for the provided prompt and parameters - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion: (createCompletionRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createCompletionRequest' is not null or undefined - common_1.assertParamExists('createCompletion', 'createCompletionRequest', createCompletionRequest); - const localVarPath = `/completions`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createCompletionRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit: (createEditRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createEditRequest' is not null or undefined - common_1.assertParamExists('createEdit', 'createEditRequest', createEditRequest); - const localVarPath = `/edits`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createEditRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding: (createEmbeddingRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createEmbeddingRequest' is not null or undefined - common_1.assertParamExists('createEmbedding', 'createEmbeddingRequest', createEmbeddingRequest); - const localVarPath = `/embeddings`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createEmbeddingRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile: (file, purpose, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'file' is not null or undefined - common_1.assertParamExists('createFile', 'file', file); - // verify required parameter 'purpose' is not null or undefined - common_1.assertParamExists('createFile', 'purpose', purpose); - const localVarPath = `/files`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (file !== undefined) { - localVarFormParams.append('file', file); - } - if (purpose !== undefined) { - localVarFormParams.append('purpose', purpose); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune: (createFineTuneRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createFineTuneRequest' is not null or undefined - common_1.assertParamExists('createFineTune', 'createFineTuneRequest', createFineTuneRequest); - const localVarPath = `/fine-tunes`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createFineTuneRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage: (createImageRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createImageRequest' is not null or undefined - common_1.assertParamExists('createImage', 'createImageRequest', createImageRequest); - const localVarPath = `/images/generations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createImageRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit: (image, prompt, mask, n, size, responseFormat, user, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'image' is not null or undefined - common_1.assertParamExists('createImageEdit', 'image', image); - // verify required parameter 'prompt' is not null or undefined - common_1.assertParamExists('createImageEdit', 'prompt', prompt); - const localVarPath = `/images/edits`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (image !== undefined) { - localVarFormParams.append('image', image); - } - if (mask !== undefined) { - localVarFormParams.append('mask', mask); - } - if (prompt !== undefined) { - localVarFormParams.append('prompt', prompt); - } - if (n !== undefined) { - localVarFormParams.append('n', n); - } - if (size !== undefined) { - localVarFormParams.append('size', size); - } - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat); - } - if (user !== undefined) { - localVarFormParams.append('user', user); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation: (image, n, size, responseFormat, user, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'image' is not null or undefined - common_1.assertParamExists('createImageVariation', 'image', image); - const localVarPath = `/images/variations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (image !== undefined) { - localVarFormParams.append('image', image); - } - if (n !== undefined) { - localVarFormParams.append('n', n); - } - if (size !== undefined) { - localVarFormParams.append('size', size); - } - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat); - } - if (user !== undefined) { - localVarFormParams.append('user', user); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration: (createModerationRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'createModerationRequest' is not null or undefined - common_1.assertParamExists('createModeration', 'createModerationRequest', createModerationRequest); - const localVarPath = `/moderations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createModerationRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch: (engineId, createSearchRequest, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'engineId' is not null or undefined - common_1.assertParamExists('createSearch', 'engineId', engineId); - // verify required parameter 'createSearchRequest' is not null or undefined - common_1.assertParamExists('createSearch', 'createSearchRequest', createSearchRequest); - const localVarPath = `/engines/{engine_id}/search` - .replace(`{${"engine_id"}}`, encodeURIComponent(String(engineId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - localVarHeaderParameter['Content-Type'] = 'application/json'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = common_1.serializeDataIfNeeded(createSearchRequest, localVarRequestOptions, configuration); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription: (file, model, prompt, responseFormat, temperature, language, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'file' is not null or undefined - common_1.assertParamExists('createTranscription', 'file', file); - // verify required parameter 'model' is not null or undefined - common_1.assertParamExists('createTranscription', 'model', model); - const localVarPath = `/audio/transcriptions`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (file !== undefined) { - localVarFormParams.append('file', file); - } - if (model !== undefined) { - localVarFormParams.append('model', model); - } - if (prompt !== undefined) { - localVarFormParams.append('prompt', prompt); - } - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat); - } - if (temperature !== undefined) { - localVarFormParams.append('temperature', temperature); - } - if (language !== undefined) { - localVarFormParams.append('language', language); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation: (file, model, prompt, responseFormat, temperature, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'file' is not null or undefined - common_1.assertParamExists('createTranslation', 'file', file); - // verify required parameter 'model' is not null or undefined - common_1.assertParamExists('createTranslation', 'model', model); - const localVarPath = `/audio/translations`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)(); - if (file !== undefined) { - localVarFormParams.append('file', file); - } - if (model !== undefined) { - localVarFormParams.append('model', model); - } - if (prompt !== undefined) { - localVarFormParams.append('prompt', prompt); - } - if (responseFormat !== undefined) { - localVarFormParams.append('response_format', responseFormat); - } - if (temperature !== undefined) { - localVarFormParams.append('temperature', temperature); - } - localVarHeaderParameter['Content-Type'] = 'multipart/form-data'; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), localVarFormParams.getHeaders()), headersFromBaseOptions), options.headers); - localVarRequestOptions.data = localVarFormParams; - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile: (fileId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fileId' is not null or undefined - common_1.assertParamExists('deleteFile', 'fileId', fileId); - const localVarPath = `/files/{file_id}` - .replace(`{${"file_id"}}`, encodeURIComponent(String(fileId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel: (model, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'model' is not null or undefined - common_1.assertParamExists('deleteModel', 'model', model); - const localVarPath = `/models/{model}` - .replace(`{${"model"}}`, encodeURIComponent(String(model))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile: (fileId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fileId' is not null or undefined - common_1.assertParamExists('downloadFile', 'fileId', fileId); - const localVarPath = `/files/{file_id}/content` - .replace(`{${"file_id"}}`, encodeURIComponent(String(fileId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines: (options = {}) => __awaiter(this, void 0, void 0, function* () { - const localVarPath = `/engines`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles: (options = {}) => __awaiter(this, void 0, void 0, function* () { - const localVarPath = `/files`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents: (fineTuneId, stream, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fineTuneId' is not null or undefined - common_1.assertParamExists('listFineTuneEvents', 'fineTuneId', fineTuneId); - const localVarPath = `/fine-tunes/{fine_tune_id}/events` - .replace(`{${"fine_tune_id"}}`, encodeURIComponent(String(fineTuneId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - if (stream !== undefined) { - localVarQueryParameter['stream'] = stream; - } - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes: (options = {}) => __awaiter(this, void 0, void 0, function* () { - const localVarPath = `/fine-tunes`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels: (options = {}) => __awaiter(this, void 0, void 0, function* () { - const localVarPath = `/models`; - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine: (engineId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'engineId' is not null or undefined - common_1.assertParamExists('retrieveEngine', 'engineId', engineId); - const localVarPath = `/engines/{engine_id}` - .replace(`{${"engine_id"}}`, encodeURIComponent(String(engineId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile: (fileId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fileId' is not null or undefined - common_1.assertParamExists('retrieveFile', 'fileId', fileId); - const localVarPath = `/files/{file_id}` - .replace(`{${"file_id"}}`, encodeURIComponent(String(fileId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune: (fineTuneId, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'fineTuneId' is not null or undefined - common_1.assertParamExists('retrieveFineTune', 'fineTuneId', fineTuneId); - const localVarPath = `/fine-tunes/{fine_tune_id}` - .replace(`{${"fine_tune_id"}}`, encodeURIComponent(String(fineTuneId))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel: (model, options = {}) => __awaiter(this, void 0, void 0, function* () { - // verify required parameter 'model' is not null or undefined - common_1.assertParamExists('retrieveModel', 'model', model); - const localVarPath = `/models/{model}` - .replace(`{${"model"}}`, encodeURIComponent(String(model))); - // use dummy base URL string because the URL constructor only accepts absolute URLs. - const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL); - let baseOptions; - if (configuration) { - baseOptions = configuration.baseOptions; - } - const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options); - const localVarHeaderParameter = {}; - const localVarQueryParameter = {}; - common_1.setSearchParams(localVarUrlObj, localVarQueryParameter); - let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; - localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers); - return { - url: common_1.toPathString(localVarUrlObj), - options: localVarRequestOptions, - }; - }), - }; -}; -/** - * OpenAIApi - functional programming interface - * @export - */ -exports.OpenAIApiFp = function (configuration) { - const localVarAxiosParamCreator = exports.OpenAIApiAxiosParamCreator(configuration); - return { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune(fineTuneId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.cancelFineTune(fineTuneId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer(createAnswerRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createAnswer(createAnswerRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a completion for the chat message - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion(createChatCompletionRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createChatCompletion(createChatCompletionRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification(createClassificationRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createClassification(createClassificationRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a completion for the provided prompt and parameters - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion(createCompletionRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createCompletion(createCompletionRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit(createEditRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createEdit(createEditRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding(createEmbeddingRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createEmbedding(createEmbeddingRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile(file, purpose, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createFile(file, purpose, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune(createFineTuneRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createFineTune(createFineTuneRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage(createImageRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createImage(createImageRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit(image, prompt, mask, n, size, responseFormat, user, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation(image, n, size, responseFormat, user, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createImageVariation(image, n, size, responseFormat, user, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration(createModerationRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createModeration(createModerationRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch(engineId, createSearchRequest, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createSearch(engineId, createSearchRequest, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription(file, model, prompt, responseFormat, temperature, language, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createTranscription(file, model, prompt, responseFormat, temperature, language, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation(file, model, prompt, responseFormat, temperature, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.createTranslation(file, model, prompt, responseFormat, temperature, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile(fileId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteFile(fileId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel(model, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteModel(model, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(fileId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.downloadFile(fileId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines(options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listEngines(options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles(options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listFiles(options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents(fineTuneId, stream, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listFineTuneEvents(fineTuneId, stream, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes(options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listFineTunes(options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels(options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.listModels(options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine(engineId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.retrieveEngine(engineId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile(fileId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.retrieveFile(fileId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune(fineTuneId, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.retrieveFineTune(fineTuneId, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel(model, options) { - return __awaiter(this, void 0, void 0, function* () { - const localVarAxiosArgs = yield localVarAxiosParamCreator.retrieveModel(model, options); - return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration); - }); - }, - }; -}; -/** - * OpenAIApi - factory interface - * @export - */ -exports.OpenAIApiFactory = function (configuration, basePath, axios) { - const localVarFp = exports.OpenAIApiFp(configuration); - return { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - cancelFineTune(fineTuneId, options) { - return localVarFp.cancelFineTune(fineTuneId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createAnswer(createAnswerRequest, options) { - return localVarFp.createAnswer(createAnswerRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a completion for the chat message - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createChatCompletion(createChatCompletionRequest, options) { - return localVarFp.createChatCompletion(createChatCompletionRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createClassification(createClassificationRequest, options) { - return localVarFp.createClassification(createClassificationRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a completion for the provided prompt and parameters - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createCompletion(createCompletionRequest, options) { - return localVarFp.createCompletion(createCompletionRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEdit(createEditRequest, options) { - return localVarFp.createEdit(createEditRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createEmbedding(createEmbeddingRequest, options) { - return localVarFp.createEmbedding(createEmbeddingRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFile(file, purpose, options) { - return localVarFp.createFile(file, purpose, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createFineTune(createFineTuneRequest, options) { - return localVarFp.createFineTune(createFineTuneRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImage(createImageRequest, options) { - return localVarFp.createImage(createImageRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageEdit(image, prompt, mask, n, size, responseFormat, user, options) { - return localVarFp.createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createImageVariation(image, n, size, responseFormat, user, options) { - return localVarFp.createImageVariation(image, n, size, responseFormat, user, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createModeration(createModerationRequest, options) { - return localVarFp.createModeration(createModerationRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - createSearch(engineId, createSearchRequest, options) { - return localVarFp.createSearch(engineId, createSearchRequest, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranscription(file, model, prompt, responseFormat, temperature, language, options) { - return localVarFp.createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - createTranslation(file, model, prompt, responseFormat, temperature, options) { - return localVarFp.createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteFile(fileId, options) { - return localVarFp.deleteFile(fileId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - deleteModel(model, options) { - return localVarFp.deleteModel(model, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - downloadFile(fileId, options) { - return localVarFp.downloadFile(fileId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - listEngines(options) { - return localVarFp.listEngines(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFiles(options) { - return localVarFp.listFiles(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTuneEvents(fineTuneId, stream, options) { - return localVarFp.listFineTuneEvents(fineTuneId, stream, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listFineTunes(options) { - return localVarFp.listFineTunes(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - listModels(options) { - return localVarFp.listModels(options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - */ - retrieveEngine(engineId, options) { - return localVarFp.retrieveEngine(engineId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFile(fileId, options) { - return localVarFp.retrieveFile(fileId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveFineTune(fineTuneId, options) { - return localVarFp.retrieveFineTune(fineTuneId, options).then((request) => request(axios, basePath)); - }, - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - */ - retrieveModel(model, options) { - return localVarFp.retrieveModel(model, options).then((request) => request(axios, basePath)); - }, - }; -}; -/** - * OpenAIApi - object-oriented interface - * @export - * @class OpenAIApi - * @extends {BaseAPI} - */ -class OpenAIApi extends base_1.BaseAPI { - /** - * - * @summary Immediately cancel a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to cancel - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - cancelFineTune(fineTuneId, options) { - return exports.OpenAIApiFp(this.configuration).cancelFineTune(fineTuneId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Answers the specified question using the provided documents and examples. The endpoint first [searches](/docs/api-reference/searches) over provided documents or files to find relevant context. The relevant context is combined with the provided examples and question to create the prompt for [completion](/docs/api-reference/completions). - * @param {CreateAnswerRequest} createAnswerRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createAnswer(createAnswerRequest, options) { - return exports.OpenAIApiFp(this.configuration).createAnswer(createAnswerRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a completion for the chat message - * @param {CreateChatCompletionRequest} createChatCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createChatCompletion(createChatCompletionRequest, options) { - return exports.OpenAIApiFp(this.configuration).createChatCompletion(createChatCompletionRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Classifies the specified `query` using provided examples. The endpoint first [searches](/docs/api-reference/searches) over the labeled examples to select the ones most relevant for the particular query. Then, the relevant examples are combined with the query to construct a prompt to produce the final label via the [completions](/docs/api-reference/completions) endpoint. Labeled examples can be provided via an uploaded `file`, or explicitly listed in the request using the `examples` parameter for quick tests and small scale use cases. - * @param {CreateClassificationRequest} createClassificationRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createClassification(createClassificationRequest, options) { - return exports.OpenAIApiFp(this.configuration).createClassification(createClassificationRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a completion for the provided prompt and parameters - * @param {CreateCompletionRequest} createCompletionRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createCompletion(createCompletionRequest, options) { - return exports.OpenAIApiFp(this.configuration).createCompletion(createCompletionRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a new edit for the provided input, instruction, and parameters. - * @param {CreateEditRequest} createEditRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createEdit(createEditRequest, options) { - return exports.OpenAIApiFp(this.configuration).createEdit(createEditRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates an embedding vector representing the input text. - * @param {CreateEmbeddingRequest} createEmbeddingRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createEmbedding(createEmbeddingRequest, options) { - return exports.OpenAIApiFp(this.configuration).createEmbedding(createEmbeddingRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit. - * @param {File} file Name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded. If the `purpose` is set to \\\"fine-tune\\\", each line is a JSON record with \\\"prompt\\\" and \\\"completion\\\" fields representing your [training examples](/docs/guides/fine-tuning/prepare-training-data). - * @param {string} purpose The intended purpose of the uploaded documents. Use \\\"fine-tune\\\" for [Fine-tuning](/docs/api-reference/fine-tunes). This allows us to validate the format of the uploaded file. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createFile(file, purpose, options) { - return exports.OpenAIApiFp(this.configuration).createFile(file, purpose, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {CreateFineTuneRequest} createFineTuneRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createFineTune(createFineTuneRequest, options) { - return exports.OpenAIApiFp(this.configuration).createFineTune(createFineTuneRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates an image given a prompt. - * @param {CreateImageRequest} createImageRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImage(createImageRequest, options) { - return exports.OpenAIApiFp(this.configuration).createImage(createImageRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates an edited or extended image given an original image and a prompt. - * @param {File} image The image to edit. Must be a valid PNG file, less than 4MB, and square. If mask is not provided, image must have transparency, which will be used as the mask. - * @param {string} prompt A text description of the desired image(s). The maximum length is 1000 characters. - * @param {File} [mask] An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImageEdit(image, prompt, mask, n, size, responseFormat, user, options) { - return exports.OpenAIApiFp(this.configuration).createImageEdit(image, prompt, mask, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Creates a variation of a given image. - * @param {File} image The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square. - * @param {number} [n] The number of images to generate. Must be between 1 and 10. - * @param {string} [size] The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`. - * @param {string} [responseFormat] The format in which the generated images are returned. Must be one of `url` or `b64_json`. - * @param {string} [user] A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices/end-user-ids). - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createImageVariation(image, n, size, responseFormat, user, options) { - return exports.OpenAIApiFp(this.configuration).createImageVariation(image, n, size, responseFormat, user, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Classifies if text violates OpenAI\'s Content Policy - * @param {CreateModerationRequest} createModerationRequest - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createModeration(createModerationRequest, options) { - return exports.OpenAIApiFp(this.configuration).createModeration(createModerationRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary The search endpoint computes similarity scores between provided query and documents. Documents can be passed directly to the API if there are no more than 200 of them. To go beyond the 200 document limit, documents can be processed offline and then used for efficient retrieval at query time. When `file` is set, the search endpoint searches over all the documents in the given file and returns up to the `max_rerank` number of documents. These documents will be returned along with their search scores. The similarity score is a positive score that usually ranges from 0 to 300 (but can sometimes go higher), where a score above 200 usually means the document is semantically similar to the query. - * @param {string} engineId The ID of the engine to use for this request. You can select one of `ada`, `babbage`, `curie`, or `davinci`. - * @param {CreateSearchRequest} createSearchRequest - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createSearch(engineId, createSearchRequest, options) { - return exports.OpenAIApiFp(this.configuration).createSearch(engineId, createSearchRequest, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Transcribes audio into the input language. - * @param {File} file The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should match the audio language. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {string} [language] The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format will improve accuracy and latency. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createTranscription(file, model, prompt, responseFormat, temperature, language, options) { - return exports.OpenAIApiFp(this.configuration).createTranscription(file, model, prompt, responseFormat, temperature, language, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Translates audio into into English. - * @param {File} file The audio file to translate, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm. - * @param {string} model ID of the model to use. Only `whisper-1` is currently available. - * @param {string} [prompt] An optional text to guide the model\\\'s style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text/prompting) should be in English. - * @param {string} [responseFormat] The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt. - * @param {number} [temperature] The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - createTranslation(file, model, prompt, responseFormat, temperature, options) { - return exports.OpenAIApiFp(this.configuration).createTranslation(file, model, prompt, responseFormat, temperature, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Delete a file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - deleteFile(fileId, options) { - return exports.OpenAIApiFp(this.configuration).deleteFile(fileId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Delete a fine-tuned model. You must have the Owner role in your organization. - * @param {string} model The model to delete - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - deleteModel(model, options) { - return exports.OpenAIApiFp(this.configuration).deleteModel(model, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Returns the contents of the specified file - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - downloadFile(fileId, options) { - return exports.OpenAIApiFp(this.configuration).downloadFile(fileId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Lists the currently available (non-finetuned) models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listEngines(options) { - return exports.OpenAIApiFp(this.configuration).listEngines(options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Returns a list of files that belong to the user\'s organization. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFiles(options) { - return exports.OpenAIApiFp(this.configuration).listFiles(options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Get fine-grained status updates for a fine-tune job. - * @param {string} fineTuneId The ID of the fine-tune job to get events for. - * @param {boolean} [stream] Whether to stream events for the fine-tune job. If set to true, events will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available. The stream will terminate with a `data: [DONE]` message when the job is finished (succeeded, cancelled, or failed). If set to false, only events generated so far will be returned. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFineTuneEvents(fineTuneId, stream, options) { - return exports.OpenAIApiFp(this.configuration).listFineTuneEvents(fineTuneId, stream, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary List your organization\'s fine-tuning jobs - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listFineTunes(options) { - return exports.OpenAIApiFp(this.configuration).listFineTunes(options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Lists the currently available models, and provides basic information about each one such as the owner and availability. - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - listModels(options) { - return exports.OpenAIApiFp(this.configuration).listModels(options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Retrieves a model instance, providing basic information about it such as the owner and availability. - * @param {string} engineId The ID of the engine to use for this request - * @param {*} [options] Override http request option. - * @deprecated - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveEngine(engineId, options) { - return exports.OpenAIApiFp(this.configuration).retrieveEngine(engineId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Returns information about a specific file. - * @param {string} fileId The ID of the file to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveFile(fileId, options) { - return exports.OpenAIApiFp(this.configuration).retrieveFile(fileId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Gets info about the fine-tune job. [Learn more about Fine-tuning](/docs/guides/fine-tuning) - * @param {string} fineTuneId The ID of the fine-tune job - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveFineTune(fineTuneId, options) { - return exports.OpenAIApiFp(this.configuration).retrieveFineTune(fineTuneId, options).then((request) => request(this.axios, this.basePath)); - } - /** - * - * @summary Retrieves a model instance, providing basic information about the model such as the owner and permissioning. - * @param {string} model The ID of the model to use for this request - * @param {*} [options] Override http request option. - * @throws {RequiredError} - * @memberof OpenAIApi - */ - retrieveModel(model, options) { - return exports.OpenAIApiFp(this.configuration).retrieveModel(model, options).then((request) => request(this.axios, this.basePath)); - } -} -exports.OpenAIApi = OpenAIApi; diff --git a/dist/base.d.ts b/dist/base.d.ts deleted file mode 100644 index 0d7b20371..000000000 --- a/dist/base.d.ts +++ /dev/null @@ -1,54 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -import type { Configuration } from './configuration'; -import type { AxiosInstance, AxiosRequestConfig } from 'axios'; -export declare const BASE_PATH: string; -/** - * - * @export - */ -export declare const COLLECTION_FORMATS: { - csv: string; - ssv: string; - tsv: string; - pipes: string; -}; -/** - * - * @export - * @interface RequestArgs - */ -export interface RequestArgs { - url: string; - options: AxiosRequestConfig; -} -/** - * - * @export - * @class BaseAPI - */ -export declare class BaseAPI { - protected basePath: string; - protected axios: AxiosInstance; - protected configuration: Configuration | undefined; - constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance); -} -/** - * - * @export - * @class RequiredError - * @extends {Error} - */ -export declare class RequiredError extends Error { - field: string; - constructor(field: string, msg?: string); -} diff --git a/dist/base.js b/dist/base.js deleted file mode 100644 index 5ce59c6a2..000000000 --- a/dist/base.js +++ /dev/null @@ -1,59 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.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; -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; diff --git a/dist/common.d.ts b/dist/common.d.ts deleted file mode 100644 index 29db8d713..000000000 --- a/dist/common.d.ts +++ /dev/null @@ -1,65 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -import type { Configuration } from "./configuration"; -import type { RequestArgs } from "./base"; -import type { AxiosInstance, AxiosResponse } from 'axios'; -/** - * - * @export - */ -export declare const DUMMY_BASE_URL = "https://example.com"; -/** - * - * @throws {RequiredError} - * @export - */ -export declare const assertParamExists: (functionName: string, paramName: string, paramValue: unknown) => void; -/** - * - * @export - */ -export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise; -/** - * - * @export - */ -export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void; -/** - * - * @export - */ -export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise; -/** - * - * @export - */ -export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise; -/** - * - * @export - */ -export declare const setSearchParams: (url: URL, ...objects: any[]) => void; -/** - * - * @export - */ -export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any; -/** - * - * @export - */ -export declare const toPathString: (url: URL) => string; -/** - * - * @export - */ -export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => >(axios?: AxiosInstance, basePath?: string) => Promise; diff --git a/dist/common.js b/dist/common.js deleted file mode 100644 index 03588cc4c..000000000 --- a/dist/common.js +++ /dev/null @@ -1,151 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -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()); - }); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.createRequestFunction = exports.toPathString = exports.serializeDataIfNeeded = exports.setSearchParams = exports.setOAuthToObject = exports.setBearerAuthToObject = exports.setBasicAuthToObject = exports.setApiKeyToObject = exports.assertParamExists = exports.DUMMY_BASE_URL = void 0; -const base_1 = require("./base"); -/** - * - * @export - */ -exports.DUMMY_BASE_URL = 'https://example.com'; -/** - * - * @throws {RequiredError} - * @export - */ -exports.assertParamExists = function (functionName, paramName, paramValue) { - if (paramValue === null || paramValue === undefined) { - throw new base_1.RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`); - } -}; -/** - * - * @export - */ -exports.setApiKeyToObject = function (object, keyParamName, configuration) { - return __awaiter(this, void 0, void 0, function* () { - if (configuration && configuration.apiKey) { - const localVarApiKeyValue = typeof configuration.apiKey === 'function' - ? yield configuration.apiKey(keyParamName) - : yield configuration.apiKey; - object[keyParamName] = localVarApiKeyValue; - } - }); -}; -/** - * - * @export - */ -exports.setBasicAuthToObject = function (object, configuration) { - if (configuration && (configuration.username || configuration.password)) { - object["auth"] = { username: configuration.username, password: configuration.password }; - } -}; -/** - * - * @export - */ -exports.setBearerAuthToObject = function (object, configuration) { - return __awaiter(this, void 0, void 0, function* () { - if (configuration && configuration.accessToken) { - const accessToken = typeof configuration.accessToken === 'function' - ? yield configuration.accessToken() - : yield configuration.accessToken; - object["Authorization"] = "Bearer " + accessToken; - } - }); -}; -/** - * - * @export - */ -exports.setOAuthToObject = function (object, name, scopes, configuration) { - return __awaiter(this, void 0, void 0, function* () { - if (configuration && configuration.accessToken) { - const localVarAccessTokenValue = typeof configuration.accessToken === 'function' - ? yield configuration.accessToken(name, scopes) - : yield configuration.accessToken; - object["Authorization"] = "Bearer " + localVarAccessTokenValue; - } - }); -}; -function setFlattenedQueryParams(urlSearchParams, parameter, key = "") { - if (parameter == null) - return; - if (typeof parameter === "object") { - if (Array.isArray(parameter)) { - parameter.forEach(item => setFlattenedQueryParams(urlSearchParams, item, key)); - } - else { - Object.keys(parameter).forEach(currentKey => setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)); - } - } - else { - if (urlSearchParams.has(key)) { - urlSearchParams.append(key, parameter); - } - else { - urlSearchParams.set(key, parameter); - } - } -} -/** - * - * @export - */ -exports.setSearchParams = function (url, ...objects) { - const searchParams = new URLSearchParams(url.search); - setFlattenedQueryParams(searchParams, objects); - url.search = searchParams.toString(); -}; -/** - * - * @export - */ -exports.serializeDataIfNeeded = function (value, requestOptions, configuration) { - const nonString = typeof value !== 'string'; - const needsSerialization = nonString && configuration && configuration.isJsonMime - ? configuration.isJsonMime(requestOptions.headers['Content-Type']) - : nonString; - return needsSerialization - ? JSON.stringify(value !== undefined ? value : {}) - : (value || ""); -}; -/** - * - * @export - */ -exports.toPathString = function (url) { - return url.pathname + url.search + url.hash; -}; -/** - * - * @export - */ -exports.createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) { - return (axios = globalAxios, basePath = BASE_PATH) => { - const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) || basePath) + axiosArgs.url }); - return axios.request(axiosRequestArgs); - }; -}; diff --git a/dist/configuration.d.ts b/dist/configuration.d.ts deleted file mode 100644 index cbe66166f..000000000 --- a/dist/configuration.d.ts +++ /dev/null @@ -1,91 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -export interface ConfigurationParameters { - apiKey?: string | Promise | ((name: string) => string) | ((name: string) => Promise); - organization?: string; - username?: string; - password?: string; - accessToken?: string | Promise | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise); - basePath?: string; - baseOptions?: any; - formDataCtor?: new () => any; -} -export declare class Configuration { - /** - * parameter for apiKey security - * @param name security name - * @memberof Configuration - */ - apiKey?: string | Promise | ((name: string) => string) | ((name: string) => Promise); - /** - * OpenAI organization id - * - * @type {string} - * @memberof Configuration - */ - organization?: string; - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ - username?: string; - /** - * parameter for basic security - * - * @type {string} - * @memberof Configuration - */ - password?: string; - /** - * parameter for oauth2 security - * @param name security name - * @param scopes oauth2 scope - * @memberof Configuration - */ - accessToken?: string | Promise | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise); - /** - * override base path - * - * @type {string} - * @memberof Configuration - */ - basePath?: string; - /** - * base options for axios calls - * - * @type {any} - * @memberof Configuration - */ - baseOptions?: any; - /** - * The FormData constructor that will be used to create multipart form data - * requests. You can inject this here so that execution environments that - * do not support the FormData class can still run the generated client. - * - * @type {new () => FormData} - */ - formDataCtor?: new () => any; - constructor(param?: ConfigurationParameters); - /** - * Check if the given MIME is a JSON MIME. - * JSON MIME examples: - * application/json - * application/json; charset=UTF8 - * APPLICATION/JSON - * application/vnd.company+json - * @param mime - MIME (Multipurpose Internet Mail Extensions) - * @return True if the given MIME is JSON, false otherwise. - */ - isJsonMime(mime: string): boolean; -} diff --git a/dist/configuration.js b/dist/configuration.js deleted file mode 100644 index 4a9f063f5..000000000 --- a/dist/configuration.js +++ /dev/null @@ -1,54 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.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.Configuration = void 0; -const packageJson = require("../package.json"); -class Configuration { - constructor(param = {}) { - this.apiKey = param.apiKey; - this.organization = param.organization; - this.username = param.username; - this.password = param.password; - this.accessToken = param.accessToken; - this.basePath = param.basePath; - this.baseOptions = param.baseOptions; - this.formDataCtor = param.formDataCtor; - if (!this.baseOptions) { - this.baseOptions = {}; - } - this.baseOptions.headers = Object.assign({ 'User-Agent': `OpenAI/NodeJS/${packageJson.version}`, 'Authorization': `Bearer ${this.apiKey}` }, this.baseOptions.headers); - if (this.organization) { - this.baseOptions.headers['OpenAI-Organization'] = this.organization; - } - if (!this.formDataCtor) { - this.formDataCtor = require("form-data"); - } - } - /** - * Check if the given MIME is a JSON MIME. - * JSON MIME examples: - * application/json - * application/json; charset=UTF8 - * APPLICATION/JSON - * application/vnd.company+json - * @param mime - MIME (Multipurpose Internet Mail Extensions) - * @return True if the given MIME is JSON, false otherwise. - */ - isJsonMime(mime) { - const jsonMime = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i'); - return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json'); - } -} -exports.Configuration = Configuration; diff --git a/dist/index.d.ts b/dist/index.d.ts deleted file mode 100644 index 9e18678be..000000000 --- a/dist/index.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -export * from "./api"; -export * from "./configuration"; diff --git a/dist/index.js b/dist/index.js deleted file mode 100644 index 4693b6f36..000000000 --- a/dist/index.js +++ /dev/null @@ -1,27 +0,0 @@ -"use strict"; -/* tslint:disable */ -/* eslint-disable */ -/** - * OpenAI API - * APIs for sampling from and fine-tuning language models - * - * The version of the OpenAPI document: 1.2.0 - * - * - * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). - * https://openapi-generator.tech - * Do not edit the class manually. - */ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -__exportStar(require("./api"), exports); -__exportStar(require("./configuration"), exports); diff --git a/package.json b/package.json index 3109e3909..893878ccd 100644 --- a/package.json +++ b/package.json @@ -16,16 +16,44 @@ "author": "OpenAI", "license": "MIT", "main": "./dist/index.js", - "types": "./dist/index.d.ts", + "typings": "./dist/index.d.ts", + "module": "./dist/esm/index.mjs", + "sideEffects": false, + "type": "module", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "require": "./dist/index.js", + "default": "./dist/esm/index.mjs" + }, + "./package.json": "./package.json", + "./stream": { + "types": "./dist/stream.d.ts", + "require": "./dist/stream.js", + "default": "./dist/esm/stream.mjs" + } + }, + "typesVersions": { + "*": { + "stream": [ + "dist/stream.d.ts" + ] + } + }, "scripts": { - "build": "tsc --outDir dist/" + "clean": "rimraf ./dist", + "prebuild": "npm run clean && node -p \"'export const LIB_VERSION = ' + JSON.stringify(process.env.npm_package_version) + ';'\" > version.ts", + "build": "tsc && tsc-multi", + "prepare": "npm run build" }, "dependencies": { - "axios": "^0.26.0", + "axios": "^0.27.2", "form-data": "^4.0.0" }, "devDependencies": { - "@types/node": "^12.11.5", - "typescript": "^3.6.4" + "@types/node": "*", + "rimraf": "^3.0.2", + "tsc-multi": "^0.6.1", + "typescript": "^4.0" } } diff --git a/stream.ts b/stream.ts new file mode 100644 index 000000000..8b200cd44 --- /dev/null +++ b/stream.ts @@ -0,0 +1,29 @@ +import { Readable } from 'node:stream'; + +async function* chunksToLines(chunksAsync: AsyncIterable): AsyncIterable { + let previous = ""; + for await (const chunk of chunksAsync) { + const bufferChunk = Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk); + previous += bufferChunk; + let eolIndex; + while ((eolIndex = previous.indexOf("\n")) >= 0) { + // line includes the EOL + const line = previous.slice(0, eolIndex + 1).trimEnd(); + if (line === "data: [DONE]") break; + if (line.startsWith("data: ")) yield line; + previous = previous.slice(eolIndex + 1); + } + } +} + +async function* linesToMessages(linesAsync: AsyncIterable): AsyncIterable { + for await (const line of linesAsync) { + const message = line.substring("data :".length); + + yield message; + } +} + +export async function* streamCompletion(stream: Readable): AsyncGenerator { + yield* linesToMessages(chunksToLines(stream)); +} \ No newline at end of file diff --git a/tsc-multi.json b/tsc-multi.json new file mode 100644 index 000000000..ce535405d --- /dev/null +++ b/tsc-multi.json @@ -0,0 +1,4 @@ +{ + "targets": [{ "extname": ".mjs" }], + "projects": ["tsconfig.esm.json"] +} \ No newline at end of file diff --git a/tsconfig.esm.json b/tsconfig.esm.json new file mode 100644 index 000000000..2c0331cce --- /dev/null +++ b/tsconfig.esm.json @@ -0,0 +1,7 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "module": "esnext", + "outDir": "dist/esm" + } +} diff --git a/tsconfig.json b/tsconfig.json index 2e9a191f8..c8846b3e9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,13 @@ { "compilerOptions": { "declaration": true, - "target": "es6", + "target": "ES6", "module": "commonjs", + "esModuleInterop": true, "noImplicitAny": true, "outDir": "dist", "rootDir": ".", + "moduleResolution": "node", "typeRoots": [ "node_modules/@types" ] From 074cc28c0837cb0775f3e3252cc935b12e305ca3 Mon Sep 17 00:00:00 2001 From: Guillaume FORTAINE Date: Mon, 6 Mar 2023 01:01:49 +0100 Subject: [PATCH 2/2] chore(upgrade): update README for fetch support --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index b00d5b425..894ed7062 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,21 @@ try { Streaming completions (`stream=true`) are not natively supported in this package yet, but [a workaround exists](https://github.com/openai/openai-node/issues/18#issuecomment-1369996933) if needed. +### Fetch support + +Usage with Vercel Edge Functions or Cloudflare Workers where fetch is required could be supported with proper axios adapter : + +```javascript +import fetchAdapter from "@haverstack/axios-fetch-adapter"; + +const configuration = new Configuration({ + apiKey: process.env.OPENAI_API_KEY, + baseOptions: { + adapter: fetchAdapter + } +}); +``` + ## Upgrade guide All breaking changes for major version releases are listed below.