(texture)
- createTextureGeneration - Create Texture Generation
- deleteTextureGenerationById - Delete Texture Generation by ID
This endpoint will generate a texture generation.
import { Leonardo } from "@leonardo-ai/sdk";
const leonardo = new Leonardo({
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await leonardo.texture.createTextureGeneration();
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { LeonardoCore } from "@leonardo-ai/sdk/core.js";
import { textureCreateTextureGeneration } from "@leonardo-ai/sdk/funcs/textureCreateTextureGeneration.js";
// Use `LeonardoCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const leonardo = new LeonardoCore({
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const res = await textureCreateTextureGeneration(leonardo);
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.CreateTextureGenerationRequestBody | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<operations.CreateTextureGenerationResponse>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
This endpoint deletes the specific texture generation.
import { Leonardo } from "@leonardo-ai/sdk";
const leonardo = new Leonardo({
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await leonardo.texture.deleteTextureGenerationById("<id>");
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { LeonardoCore } from "@leonardo-ai/sdk/core.js";
import { textureDeleteTextureGenerationById } from "@leonardo-ai/sdk/funcs/textureDeleteTextureGenerationById.js";
// Use `LeonardoCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const leonardo = new LeonardoCore({
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const res = await textureDeleteTextureGenerationById(leonardo, "<id>");
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
id |
string | ✔️ | "id" is required (enter it either in parameters or request body) |
requestBody |
operations.DeleteTextureGenerationByIdRequestBody | ➖ | Query parameters can also be provided in the request body as a JSON object |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<operations.DeleteTextureGenerationByIdResponse>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |