// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation
import Get
import URLQueryEncoder

extension Paths.Generate {
    public var upsamplePrompt: UpsamplePrompt {
        UpsamplePrompt(path: path + "/upsample-prompt")
    }

    public struct UpsamplePrompt {
        /// Path: `/api/generate/upsample-prompt`
        public let path: String

        /// Upsample Prompt
        public func post(_ body: GenAPI.UpsamplePromptRequest) -> Request<Void> {
            Request(path: path, method: "POST", body: body, id: "studio_api_bots_generate_api_upsample_prompt")
        }
    }
}
