9 lines
180 B
TypeScript
9 lines
180 B
TypeScript
// Define the payload type for better type-checking
|
|
export interface LambdaPayload {
|
|
prompt: string;
|
|
modelId: string;
|
|
styleUUID: string;
|
|
num_images: number;
|
|
}
|
|
|