├── .env.sample ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── authentication.d.ts ├── authentication.js ├── client-error.d.ts ├── client-error.js ├── client.d.ts ├── client.js ├── handlers │ ├── audio-transcriptions.d.ts │ ├── audio-transcriptions.js │ ├── audio-translations.d.ts │ ├── audio-translations.js │ ├── chat-completions.d.ts │ ├── chat-completions.js │ ├── completions.d.ts │ ├── completions.js │ ├── edits.d.ts │ ├── edits.js │ ├── embeddings.d.ts │ ├── embeddings.js │ ├── files-content.d.ts │ ├── files-content.js │ ├── files.d.ts │ ├── files.js │ ├── fine-tunes-cancel.d.ts │ ├── fine-tunes-cancel.js │ ├── fine-tunes-events.d.ts │ ├── fine-tunes-events.js │ ├── fine-tunes.d.ts │ ├── fine-tunes.js │ ├── images-edits.d.ts │ ├── images-edits.js │ ├── images-generations.d.ts │ ├── images-generations.js │ ├── images-variations.d.ts │ ├── images-variations.js │ ├── models.d.ts │ ├── models.js │ ├── moderations.d.ts │ └── moderations.js ├── index.d.ts ├── index.js └── models │ ├── audio-transcriptions │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response.d.ts │ └── create-response.js │ ├── audio-translations │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response.d.ts │ └── create-response.js │ ├── chat-completions │ ├── create-request-logit-bias.d.ts │ ├── create-request-logit-bias.js │ ├── create-request-messages-item.d.ts │ ├── create-request-messages-item.js │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response-choices-item-message.d.ts │ ├── create-response-choices-item-message.js │ ├── create-response-choices-item.d.ts │ ├── create-response-choices-item.js │ ├── create-response-usage.d.ts │ ├── create-response-usage.js │ ├── create-response.d.ts │ └── create-response.js │ ├── completions │ ├── create-request-logit-bias.d.ts │ ├── create-request-logit-bias.js │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response-choices-item-logprobs-top-logprobs-item.d.ts │ ├── create-response-choices-item-logprobs-top-logprobs-item.js │ ├── create-response-choices-item-logprobs.d.ts │ ├── create-response-choices-item-logprobs.js │ ├── create-response-choices-item.d.ts │ ├── create-response-choices-item.js │ ├── create-response-usage.d.ts │ ├── create-response-usage.js │ ├── create-response.d.ts │ └── create-response.js │ ├── edits │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response-choices-item-logprobs-top-logprobs-item.d.ts │ ├── create-response-choices-item-logprobs-top-logprobs-item.js │ ├── create-response-choices-item-logprobs.d.ts │ ├── create-response-choices-item-logprobs.js │ ├── create-response-choices-item.d.ts │ ├── create-response-choices-item.js │ ├── create-response-usage.d.ts │ ├── create-response-usage.js │ ├── create-response.d.ts │ └── create-response.js │ ├── embeddings │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response-data-item.d.ts │ ├── create-response-data-item.js │ ├── create-response-usage.d.ts │ ├── create-response-usage.js │ ├── create-response.d.ts │ └── create-response.js │ ├── files-content │ ├── download-response.d.ts │ └── download-response.js │ ├── files │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response-status-details.d.ts │ ├── create-response-status-details.js │ ├── create-response.d.ts │ ├── create-response.js │ ├── delete-response.d.ts │ ├── delete-response.js │ ├── list-response-data-item-status-details.d.ts │ ├── list-response-data-item-status-details.js │ ├── list-response-data-item.d.ts │ ├── list-response-data-item.js │ ├── list-response.d.ts │ ├── list-response.js │ ├── retrieve-response-status-details.d.ts │ ├── retrieve-response-status-details.js │ ├── retrieve-response.d.ts │ └── retrieve-response.js │ ├── fine-tunes-cancel │ ├── cancel-fine-tune-response-events-item.d.ts │ ├── cancel-fine-tune-response-events-item.js │ ├── cancel-fine-tune-response-hyperparams.d.ts │ ├── cancel-fine-tune-response-hyperparams.js │ ├── cancel-fine-tune-response-result-files-item-status-details.d.ts │ ├── cancel-fine-tune-response-result-files-item-status-details.js │ ├── cancel-fine-tune-response-result-files-item.d.ts │ ├── cancel-fine-tune-response-result-files-item.js │ ├── cancel-fine-tune-response-training-files-item-status-details.d.ts │ ├── cancel-fine-tune-response-training-files-item-status-details.js │ ├── cancel-fine-tune-response-training-files-item.d.ts │ ├── cancel-fine-tune-response-training-files-item.js │ ├── cancel-fine-tune-response-validation-files-item-status-details.d.ts │ ├── cancel-fine-tune-response-validation-files-item-status-details.js │ ├── cancel-fine-tune-response-validation-files-item.d.ts │ ├── cancel-fine-tune-response-validation-files-item.js │ ├── cancel-fine-tune-response.d.ts │ └── cancel-fine-tune-response.js │ ├── fine-tunes-events │ ├── list-fine-tune-response-data-item.d.ts │ ├── list-fine-tune-response-data-item.js │ ├── list-fine-tune-response.d.ts │ └── list-fine-tune-response.js │ ├── fine-tunes │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response-events-item.d.ts │ ├── create-response-events-item.js │ ├── create-response-hyperparams.d.ts │ ├── create-response-hyperparams.js │ ├── create-response-result-files-item-status-details.d.ts │ ├── create-response-result-files-item-status-details.js │ ├── create-response-result-files-item.d.ts │ ├── create-response-result-files-item.js │ ├── create-response-training-files-item-status-details.d.ts │ ├── create-response-training-files-item-status-details.js │ ├── create-response-training-files-item.d.ts │ ├── create-response-training-files-item.js │ ├── create-response-validation-files-item-status-details.d.ts │ ├── create-response-validation-files-item-status-details.js │ ├── create-response-validation-files-item.d.ts │ ├── create-response-validation-files-item.js │ ├── create-response.d.ts │ ├── create-response.js │ ├── list-response-data-item-events-item.d.ts │ ├── list-response-data-item-events-item.js │ ├── list-response-data-item-hyperparams.d.ts │ ├── list-response-data-item-hyperparams.js │ ├── list-response-data-item-result-files-item-status-details.d.ts │ ├── list-response-data-item-result-files-item-status-details.js │ ├── list-response-data-item-result-files-item.d.ts │ ├── list-response-data-item-result-files-item.js │ ├── list-response-data-item-training-files-item-status-details.d.ts │ ├── list-response-data-item-training-files-item-status-details.js │ ├── list-response-data-item-training-files-item.d.ts │ ├── list-response-data-item-training-files-item.js │ ├── list-response-data-item-validation-files-item-status-details.d.ts │ ├── list-response-data-item-validation-files-item-status-details.js │ ├── list-response-data-item-validation-files-item.d.ts │ ├── list-response-data-item-validation-files-item.js │ ├── list-response-data-item.d.ts │ ├── list-response-data-item.js │ ├── list-response.d.ts │ ├── list-response.js │ ├── retrieve-response-events-item.d.ts │ ├── retrieve-response-events-item.js │ ├── retrieve-response-hyperparams.d.ts │ ├── retrieve-response-hyperparams.js │ ├── retrieve-response-result-files-item-status-details.d.ts │ ├── retrieve-response-result-files-item-status-details.js │ ├── retrieve-response-result-files-item.d.ts │ ├── retrieve-response-result-files-item.js │ ├── retrieve-response-training-files-item-status-details.d.ts │ ├── retrieve-response-training-files-item-status-details.js │ ├── retrieve-response-training-files-item.d.ts │ ├── retrieve-response-training-files-item.js │ ├── retrieve-response-validation-files-item-status-details.d.ts │ ├── retrieve-response-validation-files-item-status-details.js │ ├── retrieve-response-validation-files-item.d.ts │ ├── retrieve-response-validation-files-item.js │ ├── retrieve-response.d.ts │ └── retrieve-response.js │ ├── images-edits │ ├── create-image-request.d.ts │ ├── create-image-request.js │ ├── create-image-response-data-item.d.ts │ ├── create-image-response-data-item.js │ ├── create-image-response.d.ts │ └── create-image-response.js │ ├── images-generations │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response-data-item.d.ts │ ├── create-response-data-item.js │ ├── create-response.d.ts │ └── create-response.js │ ├── images-variations │ ├── create-image-request.d.ts │ ├── create-image-request.js │ ├── create-image-response-data-item.d.ts │ ├── create-image-response-data-item.js │ ├── create-image-response.d.ts │ └── create-image-response.js │ ├── models │ ├── delete-response.d.ts │ ├── delete-response.js │ ├── list-response-data-item.d.ts │ ├── list-response-data-item.js │ ├── list-response.d.ts │ ├── list-response.js │ ├── retrieve-response.d.ts │ └── retrieve-response.js │ └── moderations │ ├── create-request.d.ts │ ├── create-request.js │ ├── create-response-results-item-categories.d.ts │ ├── create-response-results-item-categories.js │ ├── create-response-results-item-category-scores.d.ts │ ├── create-response-results-item-category-scores.js │ ├── create-response-results-item.d.ts │ ├── create-response-results-item.js │ ├── create-response.d.ts │ └── create-response.js ├── jest.config.ts ├── package.json ├── src ├── authentication.ts ├── client-error.ts ├── client.ts ├── handlers │ ├── audio-transcriptions.ts │ ├── audio-translations.ts │ ├── chat-completions.ts │ ├── completions.ts │ ├── edits.ts │ ├── embeddings.ts │ ├── files-content.ts │ ├── files.ts │ ├── fine-tunes-cancel.ts │ ├── fine-tunes-events.ts │ ├── fine-tunes.ts │ ├── images-edits.ts │ ├── images-generations.ts │ ├── images-variations.ts │ ├── models.ts │ └── moderations.ts ├── index.ts └── models │ ├── audio-transcriptions │ ├── create-request.ts │ └── create-response.ts │ ├── audio-translations │ ├── create-request.ts │ └── create-response.ts │ ├── chat-completions │ ├── create-request-logit-bias.ts │ ├── create-request-messages-item.ts │ ├── create-request.ts │ ├── create-response-choices-item-message.ts │ ├── create-response-choices-item.ts │ ├── create-response-usage.ts │ └── create-response.ts │ ├── completions │ ├── create-request-logit-bias.ts │ ├── create-request.ts │ ├── create-response-choices-item-logprobs-top-logprobs-item.ts │ ├── create-response-choices-item-logprobs.ts │ ├── create-response-choices-item.ts │ ├── create-response-usage.ts │ └── create-response.ts │ ├── edits │ ├── create-request.ts │ ├── create-response-choices-item-logprobs-top-logprobs-item.ts │ ├── create-response-choices-item-logprobs.ts │ ├── create-response-choices-item.ts │ ├── create-response-usage.ts │ └── create-response.ts │ ├── embeddings │ ├── create-request.ts │ ├── create-response-data-item.ts │ ├── create-response-usage.ts │ └── create-response.ts │ ├── files-content │ └── download-response.ts │ ├── files │ ├── create-request.ts │ ├── create-response-status-details.ts │ ├── create-response.ts │ ├── delete-response.ts │ ├── list-response-data-item-status-details.ts │ ├── list-response-data-item.ts │ ├── list-response.ts │ ├── retrieve-response-status-details.ts │ └── retrieve-response.ts │ ├── fine-tunes-cancel │ ├── cancel-fine-tune-response-events-item.ts │ ├── cancel-fine-tune-response-hyperparams.ts │ ├── cancel-fine-tune-response-result-files-item-status-details.ts │ ├── cancel-fine-tune-response-result-files-item.ts │ ├── cancel-fine-tune-response-training-files-item-status-details.ts │ ├── cancel-fine-tune-response-training-files-item.ts │ ├── cancel-fine-tune-response-validation-files-item-status-details.ts │ ├── cancel-fine-tune-response-validation-files-item.ts │ └── cancel-fine-tune-response.ts │ ├── fine-tunes-events │ ├── list-fine-tune-response-data-item.ts │ └── list-fine-tune-response.ts │ ├── fine-tunes │ ├── create-request.ts │ ├── create-response-events-item.ts │ ├── create-response-hyperparams.ts │ ├── create-response-result-files-item-status-details.ts │ ├── create-response-result-files-item.ts │ ├── create-response-training-files-item-status-details.ts │ ├── create-response-training-files-item.ts │ ├── create-response-validation-files-item-status-details.ts │ ├── create-response-validation-files-item.ts │ ├── create-response.ts │ ├── list-response-data-item-events-item.ts │ ├── list-response-data-item-hyperparams.ts │ ├── list-response-data-item-result-files-item-status-details.ts │ ├── list-response-data-item-result-files-item.ts │ ├── list-response-data-item-training-files-item-status-details.ts │ ├── list-response-data-item-training-files-item.ts │ ├── list-response-data-item-validation-files-item-status-details.ts │ ├── list-response-data-item-validation-files-item.ts │ ├── list-response-data-item.ts │ ├── list-response.ts │ ├── retrieve-response-events-item.ts │ ├── retrieve-response-hyperparams.ts │ ├── retrieve-response-result-files-item-status-details.ts │ ├── retrieve-response-result-files-item.ts │ ├── retrieve-response-training-files-item-status-details.ts │ ├── retrieve-response-training-files-item.ts │ ├── retrieve-response-validation-files-item-status-details.ts │ ├── retrieve-response-validation-files-item.ts │ └── retrieve-response.ts │ ├── images-edits │ ├── create-image-request.ts │ ├── create-image-response-data-item.ts │ └── create-image-response.ts │ ├── images-generations │ ├── create-request.ts │ ├── create-response-data-item.ts │ └── create-response.ts │ ├── images-variations │ ├── create-image-request.ts │ ├── create-image-response-data-item.ts │ └── create-image-response.ts │ ├── models │ ├── delete-response.ts │ ├── list-response-data-item.ts │ ├── list-response.ts │ └── retrieve-response.ts │ └── moderations │ ├── create-request.ts │ ├── create-response-results-item-categories.ts │ ├── create-response-results-item-category-scores.ts │ ├── create-response-results-item.ts │ └── create-response.ts ├── test ├── integration │ └── handlers │ │ ├── audio-transcriptions.test.ts │ │ ├── audio-translations.test.ts │ │ ├── chat-completions.test.ts │ │ ├── completions.test.ts │ │ ├── edits.test.ts │ │ ├── embeddings.test.ts │ │ ├── files-content.test.ts │ │ ├── files.test.ts │ │ ├── fine-tunes-cancel.test.ts │ │ ├── fine-tunes-events.test.ts │ │ ├── fine-tunes.test.ts │ │ ├── images-edits.test.ts │ │ ├── images-generations.test.ts │ │ ├── images-variations.test.ts │ │ ├── models.test.ts │ │ └── moderations.test.ts ├── openapi.yaml ├── unit │ ├── authentication.test.ts │ ├── client-error.test.ts │ ├── client.test.ts │ ├── handlers │ │ ├── audio-transcriptions.test.ts │ │ ├── audio-translations.test.ts │ │ ├── chat-completions.test.ts │ │ ├── completions.test.ts │ │ ├── edits.test.ts │ │ ├── embeddings.test.ts │ │ ├── files-content.test.ts │ │ ├── files.test.ts │ │ ├── fine-tunes-cancel.test.ts │ │ ├── fine-tunes-events.test.ts │ │ ├── fine-tunes.test.ts │ │ ├── images-edits.test.ts │ │ ├── images-generations.test.ts │ │ ├── images-variations.test.ts │ │ ├── models.test.ts │ │ └── moderations.test.ts │ └── index.test.ts └── utils.ts └── tsconfig.json /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/.env.sample -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/README.md -------------------------------------------------------------------------------- /dist/authentication.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/authentication.d.ts -------------------------------------------------------------------------------- /dist/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/authentication.js -------------------------------------------------------------------------------- /dist/client-error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/client-error.d.ts -------------------------------------------------------------------------------- /dist/client-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/client-error.js -------------------------------------------------------------------------------- /dist/client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/client.d.ts -------------------------------------------------------------------------------- /dist/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/client.js -------------------------------------------------------------------------------- /dist/handlers/audio-transcriptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/audio-transcriptions.d.ts -------------------------------------------------------------------------------- /dist/handlers/audio-transcriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/audio-transcriptions.js -------------------------------------------------------------------------------- /dist/handlers/audio-translations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/audio-translations.d.ts -------------------------------------------------------------------------------- /dist/handlers/audio-translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/audio-translations.js -------------------------------------------------------------------------------- /dist/handlers/chat-completions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/chat-completions.d.ts -------------------------------------------------------------------------------- /dist/handlers/chat-completions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/chat-completions.js -------------------------------------------------------------------------------- /dist/handlers/completions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/completions.d.ts -------------------------------------------------------------------------------- /dist/handlers/completions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/completions.js -------------------------------------------------------------------------------- /dist/handlers/edits.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/edits.d.ts -------------------------------------------------------------------------------- /dist/handlers/edits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/edits.js -------------------------------------------------------------------------------- /dist/handlers/embeddings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/embeddings.d.ts -------------------------------------------------------------------------------- /dist/handlers/embeddings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/embeddings.js -------------------------------------------------------------------------------- /dist/handlers/files-content.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/files-content.d.ts -------------------------------------------------------------------------------- /dist/handlers/files-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/files-content.js -------------------------------------------------------------------------------- /dist/handlers/files.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/files.d.ts -------------------------------------------------------------------------------- /dist/handlers/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/files.js -------------------------------------------------------------------------------- /dist/handlers/fine-tunes-cancel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/fine-tunes-cancel.d.ts -------------------------------------------------------------------------------- /dist/handlers/fine-tunes-cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/fine-tunes-cancel.js -------------------------------------------------------------------------------- /dist/handlers/fine-tunes-events.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/fine-tunes-events.d.ts -------------------------------------------------------------------------------- /dist/handlers/fine-tunes-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/fine-tunes-events.js -------------------------------------------------------------------------------- /dist/handlers/fine-tunes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/fine-tunes.d.ts -------------------------------------------------------------------------------- /dist/handlers/fine-tunes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/fine-tunes.js -------------------------------------------------------------------------------- /dist/handlers/images-edits.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/images-edits.d.ts -------------------------------------------------------------------------------- /dist/handlers/images-edits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/images-edits.js -------------------------------------------------------------------------------- /dist/handlers/images-generations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/images-generations.d.ts -------------------------------------------------------------------------------- /dist/handlers/images-generations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/images-generations.js -------------------------------------------------------------------------------- /dist/handlers/images-variations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/images-variations.d.ts -------------------------------------------------------------------------------- /dist/handlers/images-variations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/images-variations.js -------------------------------------------------------------------------------- /dist/handlers/models.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/models.d.ts -------------------------------------------------------------------------------- /dist/handlers/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/models.js -------------------------------------------------------------------------------- /dist/handlers/moderations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/moderations.d.ts -------------------------------------------------------------------------------- /dist/handlers/moderations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/handlers/moderations.js -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/models/audio-transcriptions/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/audio-transcriptions/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/audio-transcriptions/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/audio-transcriptions/create-response.d.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateResponse { 2 | text: string; 3 | } 4 | -------------------------------------------------------------------------------- /dist/models/audio-transcriptions/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/audio-translations/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/audio-translations/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/audio-translations/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/audio-translations/create-response.d.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateResponse { 2 | text: string; 3 | } 4 | -------------------------------------------------------------------------------- /dist/models/audio-translations/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/chat-completions/create-request-logit-bias.d.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateRequestLogitBias {} 2 | -------------------------------------------------------------------------------- /dist/models/chat-completions/create-request-logit-bias.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/chat-completions/create-request-messages-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/chat-completions/create-request-messages-item.d.ts -------------------------------------------------------------------------------- /dist/models/chat-completions/create-request-messages-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/chat-completions/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/chat-completions/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/chat-completions/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/chat-completions/create-response-choices-item-message.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/chat-completions/create-response-choices-item-message.d.ts -------------------------------------------------------------------------------- /dist/models/chat-completions/create-response-choices-item-message.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/chat-completions/create-response-choices-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/chat-completions/create-response-choices-item.d.ts -------------------------------------------------------------------------------- /dist/models/chat-completions/create-response-choices-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/chat-completions/create-response-usage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/chat-completions/create-response-usage.d.ts -------------------------------------------------------------------------------- /dist/models/chat-completions/create-response-usage.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/chat-completions/create-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/chat-completions/create-response.d.ts -------------------------------------------------------------------------------- /dist/models/chat-completions/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/completions/create-request-logit-bias.d.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateRequestLogitBias {} 2 | -------------------------------------------------------------------------------- /dist/models/completions/create-request-logit-bias.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/completions/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/completions/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/completions/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/completions/create-response-choices-item-logprobs-top-logprobs-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/completions/create-response-choices-item-logprobs-top-logprobs-item.d.ts -------------------------------------------------------------------------------- /dist/models/completions/create-response-choices-item-logprobs-top-logprobs-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/completions/create-response-choices-item-logprobs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/completions/create-response-choices-item-logprobs.d.ts -------------------------------------------------------------------------------- /dist/models/completions/create-response-choices-item-logprobs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/completions/create-response-choices-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/completions/create-response-choices-item.d.ts -------------------------------------------------------------------------------- /dist/models/completions/create-response-choices-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/completions/create-response-usage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/completions/create-response-usage.d.ts -------------------------------------------------------------------------------- /dist/models/completions/create-response-usage.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/completions/create-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/completions/create-response.d.ts -------------------------------------------------------------------------------- /dist/models/completions/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/edits/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/edits/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/edits/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/edits/create-response-choices-item-logprobs-top-logprobs-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/edits/create-response-choices-item-logprobs-top-logprobs-item.d.ts -------------------------------------------------------------------------------- /dist/models/edits/create-response-choices-item-logprobs-top-logprobs-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/edits/create-response-choices-item-logprobs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/edits/create-response-choices-item-logprobs.d.ts -------------------------------------------------------------------------------- /dist/models/edits/create-response-choices-item-logprobs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/edits/create-response-choices-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/edits/create-response-choices-item.d.ts -------------------------------------------------------------------------------- /dist/models/edits/create-response-choices-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/edits/create-response-usage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/edits/create-response-usage.d.ts -------------------------------------------------------------------------------- /dist/models/edits/create-response-usage.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/edits/create-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/edits/create-response.d.ts -------------------------------------------------------------------------------- /dist/models/edits/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/embeddings/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/embeddings/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/embeddings/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/embeddings/create-response-data-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/embeddings/create-response-data-item.d.ts -------------------------------------------------------------------------------- /dist/models/embeddings/create-response-data-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/embeddings/create-response-usage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/embeddings/create-response-usage.d.ts -------------------------------------------------------------------------------- /dist/models/embeddings/create-response-usage.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/embeddings/create-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/embeddings/create-response.d.ts -------------------------------------------------------------------------------- /dist/models/embeddings/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files-content/download-response.d.ts: -------------------------------------------------------------------------------- 1 | export default interface DownloadResponse {} 2 | -------------------------------------------------------------------------------- /dist/models/files-content/download-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/files/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/files/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files/create-response-status-details.d.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateResponseStatusDetails {} 2 | -------------------------------------------------------------------------------- /dist/models/files/create-response-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files/create-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/files/create-response.d.ts -------------------------------------------------------------------------------- /dist/models/files/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files/delete-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/files/delete-response.d.ts -------------------------------------------------------------------------------- /dist/models/files/delete-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files/list-response-data-item-status-details.d.ts: -------------------------------------------------------------------------------- 1 | export default interface ListResponseDataItemStatusDetails {} 2 | -------------------------------------------------------------------------------- /dist/models/files/list-response-data-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files/list-response-data-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/files/list-response-data-item.d.ts -------------------------------------------------------------------------------- /dist/models/files/list-response-data-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files/list-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/files/list-response.d.ts -------------------------------------------------------------------------------- /dist/models/files/list-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files/retrieve-response-status-details.d.ts: -------------------------------------------------------------------------------- 1 | export default interface RetrieveResponseStatusDetails {} 2 | -------------------------------------------------------------------------------- /dist/models/files/retrieve-response-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/files/retrieve-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/files/retrieve-response.d.ts -------------------------------------------------------------------------------- /dist/models/files/retrieve-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-events-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-cancel/cancel-fine-tune-response-events-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-events-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-hyperparams.d.ts: -------------------------------------------------------------------------------- 1 | export default interface CancelFineTuneResponseHyperparams {} 2 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-hyperparams.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-cancel/cancel-fine-tune-response.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-cancel/cancel-fine-tune-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-events/list-fine-tune-response-data-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-events/list-fine-tune-response-data-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-events/list-fine-tune-response-data-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes-events/list-fine-tune-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes-events/list-fine-tune-response.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes-events/list-fine-tune-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-events-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/create-response-events-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-events-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-hyperparams.d.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateResponseHyperparams {} 2 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-hyperparams.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-result-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/create-response-result-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-result-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-result-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/create-response-result-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-result-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-training-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/create-response-training-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-training-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-training-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/create-response-training-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-training-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-validation-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/create-response-validation-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-validation-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-validation-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/create-response-validation-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response-validation-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/create-response.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-events-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/list-response-data-item-events-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-events-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-hyperparams.d.ts: -------------------------------------------------------------------------------- 1 | export default interface ListResponseDataItemHyperparams {} 2 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-hyperparams.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-result-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/list-response-data-item-result-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-result-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-result-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/list-response-data-item-result-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-result-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-training-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/list-response-data-item-training-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-training-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-training-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/list-response-data-item-training-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-training-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-validation-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/list-response-data-item-validation-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-validation-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-validation-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/list-response-data-item-validation-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item-validation-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/list-response-data-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response-data-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/list-response.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/list-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-events-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/retrieve-response-events-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-events-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-hyperparams.d.ts: -------------------------------------------------------------------------------- 1 | export default interface RetrieveResponseHyperparams {} 2 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-hyperparams.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-result-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/retrieve-response-result-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-result-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-result-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/retrieve-response-result-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-result-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-training-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/retrieve-response-training-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-training-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-training-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/retrieve-response-training-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-training-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-validation-files-item-status-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/retrieve-response-validation-files-item-status-details.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-validation-files-item-status-details.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-validation-files-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/retrieve-response-validation-files-item.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response-validation-files-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/fine-tunes/retrieve-response.d.ts -------------------------------------------------------------------------------- /dist/models/fine-tunes/retrieve-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/images-edits/create-image-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/images-edits/create-image-request.d.ts -------------------------------------------------------------------------------- /dist/models/images-edits/create-image-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/images-edits/create-image-response-data-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/images-edits/create-image-response-data-item.d.ts -------------------------------------------------------------------------------- /dist/models/images-edits/create-image-response-data-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/images-edits/create-image-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/images-edits/create-image-response.d.ts -------------------------------------------------------------------------------- /dist/models/images-edits/create-image-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/images-generations/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/images-generations/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/images-generations/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/images-generations/create-response-data-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/images-generations/create-response-data-item.d.ts -------------------------------------------------------------------------------- /dist/models/images-generations/create-response-data-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/images-generations/create-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/images-generations/create-response.d.ts -------------------------------------------------------------------------------- /dist/models/images-generations/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/images-variations/create-image-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/images-variations/create-image-request.d.ts -------------------------------------------------------------------------------- /dist/models/images-variations/create-image-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/images-variations/create-image-response-data-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/images-variations/create-image-response-data-item.d.ts -------------------------------------------------------------------------------- /dist/models/images-variations/create-image-response-data-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/images-variations/create-image-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/images-variations/create-image-response.d.ts -------------------------------------------------------------------------------- /dist/models/images-variations/create-image-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/models/delete-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/models/delete-response.d.ts -------------------------------------------------------------------------------- /dist/models/models/delete-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/models/list-response-data-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/models/list-response-data-item.d.ts -------------------------------------------------------------------------------- /dist/models/models/list-response-data-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/models/list-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/models/list-response.d.ts -------------------------------------------------------------------------------- /dist/models/models/list-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/models/retrieve-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/models/retrieve-response.d.ts -------------------------------------------------------------------------------- /dist/models/models/retrieve-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/moderations/create-request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/moderations/create-request.d.ts -------------------------------------------------------------------------------- /dist/models/moderations/create-request.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/moderations/create-response-results-item-categories.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/moderations/create-response-results-item-categories.d.ts -------------------------------------------------------------------------------- /dist/models/moderations/create-response-results-item-categories.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/moderations/create-response-results-item-category-scores.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/moderations/create-response-results-item-category-scores.d.ts -------------------------------------------------------------------------------- /dist/models/moderations/create-response-results-item-category-scores.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/moderations/create-response-results-item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/moderations/create-response-results-item.d.ts -------------------------------------------------------------------------------- /dist/models/moderations/create-response-results-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /dist/models/moderations/create-response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/dist/models/moderations/create-response.d.ts -------------------------------------------------------------------------------- /dist/models/moderations/create-response.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | Object.defineProperty(exports, '__esModule', { value: true }); 3 | -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/package.json -------------------------------------------------------------------------------- /src/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/authentication.ts -------------------------------------------------------------------------------- /src/client-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/client-error.ts -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/handlers/audio-transcriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/audio-transcriptions.ts -------------------------------------------------------------------------------- /src/handlers/audio-translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/audio-translations.ts -------------------------------------------------------------------------------- /src/handlers/chat-completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/chat-completions.ts -------------------------------------------------------------------------------- /src/handlers/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/completions.ts -------------------------------------------------------------------------------- /src/handlers/edits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/edits.ts -------------------------------------------------------------------------------- /src/handlers/embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/embeddings.ts -------------------------------------------------------------------------------- /src/handlers/files-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/files-content.ts -------------------------------------------------------------------------------- /src/handlers/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/files.ts -------------------------------------------------------------------------------- /src/handlers/fine-tunes-cancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/fine-tunes-cancel.ts -------------------------------------------------------------------------------- /src/handlers/fine-tunes-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/fine-tunes-events.ts -------------------------------------------------------------------------------- /src/handlers/fine-tunes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/fine-tunes.ts -------------------------------------------------------------------------------- /src/handlers/images-edits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/images-edits.ts -------------------------------------------------------------------------------- /src/handlers/images-generations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/images-generations.ts -------------------------------------------------------------------------------- /src/handlers/images-variations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/images-variations.ts -------------------------------------------------------------------------------- /src/handlers/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/models.ts -------------------------------------------------------------------------------- /src/handlers/moderations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/handlers/moderations.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/models/audio-transcriptions/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/audio-transcriptions/create-request.ts -------------------------------------------------------------------------------- /src/models/audio-transcriptions/create-response.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateResponse { 2 | text: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/models/audio-translations/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/audio-translations/create-request.ts -------------------------------------------------------------------------------- /src/models/audio-translations/create-response.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateResponse { 2 | text: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/models/chat-completions/create-request-logit-bias.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateRequestLogitBias {} 2 | -------------------------------------------------------------------------------- /src/models/chat-completions/create-request-messages-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/chat-completions/create-request-messages-item.ts -------------------------------------------------------------------------------- /src/models/chat-completions/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/chat-completions/create-request.ts -------------------------------------------------------------------------------- /src/models/chat-completions/create-response-choices-item-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/chat-completions/create-response-choices-item-message.ts -------------------------------------------------------------------------------- /src/models/chat-completions/create-response-choices-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/chat-completions/create-response-choices-item.ts -------------------------------------------------------------------------------- /src/models/chat-completions/create-response-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/chat-completions/create-response-usage.ts -------------------------------------------------------------------------------- /src/models/chat-completions/create-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/chat-completions/create-response.ts -------------------------------------------------------------------------------- /src/models/completions/create-request-logit-bias.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateRequestLogitBias {} 2 | -------------------------------------------------------------------------------- /src/models/completions/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/completions/create-request.ts -------------------------------------------------------------------------------- /src/models/completions/create-response-choices-item-logprobs-top-logprobs-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/completions/create-response-choices-item-logprobs-top-logprobs-item.ts -------------------------------------------------------------------------------- /src/models/completions/create-response-choices-item-logprobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/completions/create-response-choices-item-logprobs.ts -------------------------------------------------------------------------------- /src/models/completions/create-response-choices-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/completions/create-response-choices-item.ts -------------------------------------------------------------------------------- /src/models/completions/create-response-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/completions/create-response-usage.ts -------------------------------------------------------------------------------- /src/models/completions/create-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/completions/create-response.ts -------------------------------------------------------------------------------- /src/models/edits/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/edits/create-request.ts -------------------------------------------------------------------------------- /src/models/edits/create-response-choices-item-logprobs-top-logprobs-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/edits/create-response-choices-item-logprobs-top-logprobs-item.ts -------------------------------------------------------------------------------- /src/models/edits/create-response-choices-item-logprobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/edits/create-response-choices-item-logprobs.ts -------------------------------------------------------------------------------- /src/models/edits/create-response-choices-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/edits/create-response-choices-item.ts -------------------------------------------------------------------------------- /src/models/edits/create-response-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/edits/create-response-usage.ts -------------------------------------------------------------------------------- /src/models/edits/create-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/edits/create-response.ts -------------------------------------------------------------------------------- /src/models/embeddings/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/embeddings/create-request.ts -------------------------------------------------------------------------------- /src/models/embeddings/create-response-data-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/embeddings/create-response-data-item.ts -------------------------------------------------------------------------------- /src/models/embeddings/create-response-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/embeddings/create-response-usage.ts -------------------------------------------------------------------------------- /src/models/embeddings/create-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/embeddings/create-response.ts -------------------------------------------------------------------------------- /src/models/files-content/download-response.ts: -------------------------------------------------------------------------------- 1 | export default interface DownloadResponse {} 2 | -------------------------------------------------------------------------------- /src/models/files/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/files/create-request.ts -------------------------------------------------------------------------------- /src/models/files/create-response-status-details.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateResponseStatusDetails {} 2 | -------------------------------------------------------------------------------- /src/models/files/create-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/files/create-response.ts -------------------------------------------------------------------------------- /src/models/files/delete-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/files/delete-response.ts -------------------------------------------------------------------------------- /src/models/files/list-response-data-item-status-details.ts: -------------------------------------------------------------------------------- 1 | export default interface ListResponseDataItemStatusDetails {} 2 | -------------------------------------------------------------------------------- /src/models/files/list-response-data-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/files/list-response-data-item.ts -------------------------------------------------------------------------------- /src/models/files/list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/files/list-response.ts -------------------------------------------------------------------------------- /src/models/files/retrieve-response-status-details.ts: -------------------------------------------------------------------------------- 1 | export default interface RetrieveResponseStatusDetails {} 2 | -------------------------------------------------------------------------------- /src/models/files/retrieve-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/files/retrieve-response.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-cancel/cancel-fine-tune-response-events-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-cancel/cancel-fine-tune-response-events-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-cancel/cancel-fine-tune-response-hyperparams.ts: -------------------------------------------------------------------------------- 1 | export default interface CancelFineTuneResponseHyperparams {} 2 | -------------------------------------------------------------------------------- /src/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-cancel/cancel-fine-tune-response-result-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-cancel/cancel-fine-tune-response-training-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-cancel/cancel-fine-tune-response-validation-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-cancel/cancel-fine-tune-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-cancel/cancel-fine-tune-response.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-events/list-fine-tune-response-data-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-events/list-fine-tune-response-data-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes-events/list-fine-tune-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes-events/list-fine-tune-response.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/create-request.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/create-response-events-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/create-response-events-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/create-response-hyperparams.ts: -------------------------------------------------------------------------------- 1 | export default interface CreateResponseHyperparams {} 2 | -------------------------------------------------------------------------------- /src/models/fine-tunes/create-response-result-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/create-response-result-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/create-response-result-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/create-response-result-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/create-response-training-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/create-response-training-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/create-response-training-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/create-response-training-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/create-response-validation-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/create-response-validation-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/create-response-validation-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/create-response-validation-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/create-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/create-response.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response-data-item-events-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/list-response-data-item-events-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response-data-item-hyperparams.ts: -------------------------------------------------------------------------------- 1 | export default interface ListResponseDataItemHyperparams {} 2 | -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response-data-item-result-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/list-response-data-item-result-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response-data-item-result-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/list-response-data-item-result-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response-data-item-training-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/list-response-data-item-training-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response-data-item-training-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/list-response-data-item-training-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response-data-item-validation-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/list-response-data-item-validation-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response-data-item-validation-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/list-response-data-item-validation-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response-data-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/list-response-data-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/list-response.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/retrieve-response-events-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/retrieve-response-events-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/retrieve-response-hyperparams.ts: -------------------------------------------------------------------------------- 1 | export default interface RetrieveResponseHyperparams {} 2 | -------------------------------------------------------------------------------- /src/models/fine-tunes/retrieve-response-result-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/retrieve-response-result-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/retrieve-response-result-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/retrieve-response-result-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/retrieve-response-training-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/retrieve-response-training-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/retrieve-response-training-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/retrieve-response-training-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/retrieve-response-validation-files-item-status-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/retrieve-response-validation-files-item-status-details.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/retrieve-response-validation-files-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/retrieve-response-validation-files-item.ts -------------------------------------------------------------------------------- /src/models/fine-tunes/retrieve-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/fine-tunes/retrieve-response.ts -------------------------------------------------------------------------------- /src/models/images-edits/create-image-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/images-edits/create-image-request.ts -------------------------------------------------------------------------------- /src/models/images-edits/create-image-response-data-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/images-edits/create-image-response-data-item.ts -------------------------------------------------------------------------------- /src/models/images-edits/create-image-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/images-edits/create-image-response.ts -------------------------------------------------------------------------------- /src/models/images-generations/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/images-generations/create-request.ts -------------------------------------------------------------------------------- /src/models/images-generations/create-response-data-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/images-generations/create-response-data-item.ts -------------------------------------------------------------------------------- /src/models/images-generations/create-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/images-generations/create-response.ts -------------------------------------------------------------------------------- /src/models/images-variations/create-image-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/images-variations/create-image-request.ts -------------------------------------------------------------------------------- /src/models/images-variations/create-image-response-data-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/images-variations/create-image-response-data-item.ts -------------------------------------------------------------------------------- /src/models/images-variations/create-image-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/images-variations/create-image-response.ts -------------------------------------------------------------------------------- /src/models/models/delete-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/models/delete-response.ts -------------------------------------------------------------------------------- /src/models/models/list-response-data-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/models/list-response-data-item.ts -------------------------------------------------------------------------------- /src/models/models/list-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/models/list-response.ts -------------------------------------------------------------------------------- /src/models/models/retrieve-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/models/retrieve-response.ts -------------------------------------------------------------------------------- /src/models/moderations/create-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/moderations/create-request.ts -------------------------------------------------------------------------------- /src/models/moderations/create-response-results-item-categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/moderations/create-response-results-item-categories.ts -------------------------------------------------------------------------------- /src/models/moderations/create-response-results-item-category-scores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/moderations/create-response-results-item-category-scores.ts -------------------------------------------------------------------------------- /src/models/moderations/create-response-results-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/moderations/create-response-results-item.ts -------------------------------------------------------------------------------- /src/models/moderations/create-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/src/models/moderations/create-response.ts -------------------------------------------------------------------------------- /test/integration/handlers/audio-transcriptions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/audio-transcriptions.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/audio-translations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/audio-translations.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/chat-completions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/chat-completions.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/completions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/completions.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/edits.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/edits.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/embeddings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/embeddings.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/files-content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/files-content.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/files.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/fine-tunes-cancel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/fine-tunes-cancel.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/fine-tunes-events.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/fine-tunes-events.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/fine-tunes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/fine-tunes.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/images-edits.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/images-edits.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/images-generations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/images-generations.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/images-variations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/images-variations.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/models.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/models.test.ts -------------------------------------------------------------------------------- /test/integration/handlers/moderations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/integration/handlers/moderations.test.ts -------------------------------------------------------------------------------- /test/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/openapi.yaml -------------------------------------------------------------------------------- /test/unit/authentication.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/authentication.test.ts -------------------------------------------------------------------------------- /test/unit/client-error.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/client-error.test.ts -------------------------------------------------------------------------------- /test/unit/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/client.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/audio-transcriptions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/audio-transcriptions.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/audio-translations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/audio-translations.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/chat-completions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/chat-completions.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/completions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/completions.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/edits.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/edits.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/embeddings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/embeddings.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/files-content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/files-content.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/files.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/fine-tunes-cancel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/fine-tunes-cancel.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/fine-tunes-events.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/fine-tunes-events.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/fine-tunes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/fine-tunes.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/images-edits.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/images-edits.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/images-generations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/images-generations.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/images-variations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/images-variations.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/models.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/models.test.ts -------------------------------------------------------------------------------- /test/unit/handlers/moderations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/handlers/moderations.test.ts -------------------------------------------------------------------------------- /test/unit/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/unit/index.test.ts -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tectalichq/public-openai-client-js/HEAD/tsconfig.json --------------------------------------------------------------------------------