- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
import { APIResource } from "../core/resource.mjs";
|
|
import { multipartFormRequestOptions } from "../internal/uploads.mjs";
|
|
export class Images extends APIResource {
|
|
/**
|
|
* Creates a variation of a given image. This endpoint only supports `dall-e-2`.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* const imagesResponse = await client.images.createVariation({
|
|
* image: fs.createReadStream('otter.png'),
|
|
* });
|
|
* ```
|
|
*/
|
|
createVariation(body, options) {
|
|
return this._client.post('/images/variations', multipartFormRequestOptions({ body, ...options }, this._client));
|
|
}
|
|
/**
|
|
* Creates an edited or extended image given one or more source images and a
|
|
* prompt. This endpoint only supports `gpt-image-1` and `dall-e-2`.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* const imagesResponse = await client.images.edit({
|
|
* image: fs.createReadStream('path/to/file'),
|
|
* prompt: 'A cute baby sea otter wearing a beret',
|
|
* });
|
|
* ```
|
|
*/
|
|
edit(body, options) {
|
|
return this._client.post('/images/edits', multipartFormRequestOptions({ body, ...options }, this._client));
|
|
}
|
|
/**
|
|
* Creates an image given a prompt.
|
|
* [Learn more](https://platform.openai.com/docs/guides/images).
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* const imagesResponse = await client.images.generate({
|
|
* prompt: 'A cute baby sea otter',
|
|
* });
|
|
* ```
|
|
*/
|
|
generate(body, options) {
|
|
return this._client.post('/images/generations', { body, ...options });
|
|
}
|
|
}
|
|
//# sourceMappingURL=images.mjs.map
|