stability-ai
Version:
Node SDK for Stability AI REST API
17 lines (16 loc) • 532 B
TypeScript
import { StabilityAIContentResponse } from '../../util';
import StabilityAI from '../..';
export type StableFast3DRequest = [
image: string,
options?: {
textureResolution?: number;
foregroundRatio?: number;
}
];
/**
* Stability AI 3D Stable Fast 3D (v2beta)
*
* @param image - Local filepath or public URL of the image to make 3D
* @param options - Stable Fast 3D Options
*/
export declare function stableFast3D(this: StabilityAI, ...args: StableFast3DRequest): Promise<StabilityAIContentResponse>;