|
"use server" |
|
|
|
import { v4 as uuidv4 } from "uuid" |
|
import Replicate from "replicate" |
|
|
|
import { RenderRequest, RenderedScene, RenderingEngine } from "@/types" |
|
import { generateSeed } from "@/lib/generateSeed" |
|
import { sleep } from "@/lib/sleep" |
|
|
|
const renderingEngine = `${process.env.RENDERING_ENGINE || ""}` as RenderingEngine |
|
|
|
|
|
const huggingFaceToken = `${process.env.AUTH_HF_API_TOKEN || ""}` |
|
const huggingFaceInferenceEndpointUrl = `${process.env.RENDERING_HF_INFERENCE_ENDPOINT_URL || ""}` |
|
const huggingFaceInferenceApiModel = `${process.env.RENDERING_HF_INFERENCE_API_MODEL || ""}` |
|
|
|
const replicateToken = `${process.env.AUTH_REPLICATE_API_TOKEN || ""}` |
|
const replicateModel = `${process.env.RENDERING_REPLICATE_API_MODEL || ""}` |
|
const replicateModelVersion = `${process.env.RENDERING_REPLICATE_API_MODEL_VERSION || ""}` |
|
|
|
const videochainToken = `${process.env.AUTH_VIDEOCHAIN_API_TOKEN || ""}` |
|
const videochainApiUrl = `${process.env.RENDERING_VIDEOCHAIN_API_URL || ""}` |
|
|
|
export async function newRender({ |
|
prompt, |
|
// negativePrompt, |
|
width, |
|
height |
|
}: { |
|
prompt: string |
|
// negativePrompt: string[] |
|
width: number |
|
height: number |
|
}) { |
|
if (!prompt) { |
|
const error = `cannot call the rendering API without a prompt, aborting..` |
|
console.error(error) |
|
throw new Error(error) |
|
} |
|
|
|
let defaulResult: RenderedScene = { |
|
renderId: "", |
|
status: "error", |
|
assetUrl: "", |
|
alt: prompt || "", |
|
maskUrl: "", |
|
error: "failed to fetch the data", |
|
segments: [] |
|
} |
|
|
|
|
|
try { |
|
if (renderingEngine === "REPLICATE") { |
|
if (!replicateToken) { |
|
throw new Error(`you need to configure your REPLICATE_API_TOKEN in order to use the REPLICATE rendering engine`) |
|
} |
|
if (!replicateModel) { |
|
throw new Error(`you need to configure your REPLICATE_API_MODEL in order to use the REPLICATE rendering engine`) |
|
} |
|
if (!replicateModelVersion) { |
|
throw new Error(`you need to configure your REPLICATE_API_MODEL_VERSION in order to use the REPLICATE rendering engine`) |
|
} |
|
const replicate = new Replicate({ auth: replicateToken }) |
|
|
|
|
|
const seed = generateSeed() |
|
const prediction = await replicate.predictions.create({ |
|
version: replicateModelVersion, |
|
input: { prompt, seed } |
|
}) |
|
|
|
|
|
|
|
|
|
|
|
await sleep(4000) |
|
|
|
return { |
|
renderId: prediction.id, |
|
status: "pending", |
|
assetUrl: "", |
|
alt: prompt, |
|
error: prediction.error, |
|
maskUrl: "", |
|
segments: [] |
|
} as RenderedScene |
|
} if (renderingEngine === "INFERENCE_ENDPOINT" || renderingEngine === "INFERENCE_API") { |
|
if (!huggingFaceToken) { |
|
throw new Error(`you need to configure your HF_API_TOKEN in order to use the ${renderingEngine} rendering engine`) |
|
} |
|
if (renderingEngine === "INFERENCE_ENDPOINT" && !huggingFaceInferenceEndpointUrl) { |
|
throw new Error(`you need to configure your RENDERING_HF_INFERENCE_ENDPOINT_URL in order to use the INFERENCE_ENDPOINT rendering engine`) |
|
} |
|
if (renderingEngine === "INFERENCE_API" && !huggingFaceInferenceApiModel) { |
|
throw new Error(`you need to configure your RENDERING_HF_INFERENCE_API_MODEL in order to use the INFERENCE_API rendering engine`) |
|
} |
|
|
|
const url = renderingEngine === "INFERENCE_ENDPOINT" |
|
? huggingFaceInferenceEndpointUrl |
|
: `https://api-inference.huggingface.co/models/${huggingFaceInferenceApiModel}` |
|
|
|
const res = await fetch(url, { |
|
method: "POST", |
|
headers: { |
|
"Content-Type": "application/json", |
|
Authorization: `Bearer ${huggingFaceToken}`, |
|
}, |
|
body: JSON.stringify({ |
|
inputs: [ |
|
"beautiful", |
|
"intricate details", |
|
prompt, |
|
"award winning", |
|
"high resolution" |
|
].join(", "), |
|
parameters: { |
|
num_inference_steps: 25, |
|
guidance_scale: 8, |
|
width, |
|
height, |
|
|
|
} |
|
}), |
|
cache: "no-store", |
|
|
|
|
|
}) |
|
|
|
|
|
|
|
if (res.status !== 200) { |
|
|
|
throw new Error('Failed to fetch data') |
|
} |
|
|
|
|
|
const response = await res.json() as string |
|
const assetUrl = `data:image/png;base64,${response}` |
|
|
|
return { |
|
renderId: uuidv4(), |
|
status: "completed", |
|
assetUrl, |
|
alt: prompt, |
|
error: "", |
|
maskUrl: "", |
|
segments: [] |
|
} as RenderedScene |
|
} else { |
|
const res = await fetch(`${videochainApiUrl}/render`, { |
|
method: "POST", |
|
headers: { |
|
Accept: "application/json", |
|
"Content-Type": "application/json", |
|
Authorization: `Bearer ${videochainToken}`, |
|
}, |
|
body: JSON.stringify({ |
|
prompt, |
|
|
|
nbFrames: 1, |
|
nbSteps: 25, |
|
actionnables: [], |
|
segmentation: "disabled", |
|
width, |
|
height, |
|
|
|
|
|
|
|
|
|
|
|
upscalingFactor: 1, |
|
|
|
|
|
analyze: false, |
|
|
|
cache: "ignore" |
|
} as Partial<RenderRequest>), |
|
cache: 'no-store', |
|
|
|
|
|
}) |
|
|
|
if (res.status !== 200) { |
|
throw new Error('Failed to fetch data') |
|
} |
|
|
|
const response = (await res.json()) as RenderedScene |
|
return response |
|
} |
|
} catch (err) { |
|
console.error(err) |
|
return defaulResult |
|
} |
|
} |
|
|
|
export async function getRender(renderId: string) { |
|
if (!renderId) { |
|
const error = `cannot call the rendering API without a renderId, aborting..` |
|
console.error(error) |
|
throw new Error(error) |
|
} |
|
|
|
let defaulResult: RenderedScene = { |
|
renderId: "", |
|
status: "pending", |
|
assetUrl: "", |
|
alt: "", |
|
maskUrl: "", |
|
error: "failed to fetch the data", |
|
segments: [] |
|
} |
|
|
|
try { |
|
if (renderingEngine === "REPLICATE") { |
|
if (!replicateToken) { |
|
throw new Error(`you need to configure your AUTH_REPLICATE_API_TOKEN in order to use the REPLICATE rendering engine`) |
|
} |
|
if (!replicateModel) { |
|
throw new Error(`you need to configure your RENDERING_REPLICATE_API_MODEL in order to use the REPLICATE rendering engine`) |
|
} |
|
|
|
const res = await fetch(`https://api.replicate.com/v1/predictions/${renderId}`, { |
|
method: "GET", |
|
headers: { |
|
Authorization: `Token ${replicateToken}`, |
|
}, |
|
cache: 'no-store', |
|
|
|
|
|
}) |
|
|
|
|
|
if (res.status !== 200) { |
|
|
|
throw new Error('Failed to fetch data') |
|
} |
|
|
|
const response = (await res.json()) as any |
|
|
|
return { |
|
renderId, |
|
status: response?.error ? "error" : response?.status === "succeeded" ? "completed" : "pending", |
|
assetUrl: `${response?.output || ""}`, |
|
alt: `${response?.input?.prompt || ""}`, |
|
error: `${response?.error || ""}`, |
|
maskUrl: "", |
|
segments: [] |
|
} as RenderedScene |
|
} else { |
|
|
|
const res = await fetch(`${videochainApiUrl}/render/${renderId}`, { |
|
method: "GET", |
|
headers: { |
|
Accept: "application/json", |
|
"Content-Type": "application/json", |
|
Authorization: `Bearer ${videochainToken}`, |
|
}, |
|
cache: 'no-store', |
|
|
|
|
|
}) |
|
|
|
if (res.status !== 200) { |
|
throw new Error('Failed to fetch data') |
|
} |
|
|
|
const response = (await res.json()) as RenderedScene |
|
return response |
|
} |
|
} catch (err) { |
|
console.error(err) |
|
defaulResult.status = "error" |
|
defaulResult.error = `${err}` |
|
return defaulResult |
|
} |
|
} |
|
|
|
export async function upscaleImage(image: string): Promise<{ |
|
assetUrl: string |
|
error: string |
|
}> { |
|
if (!image) { |
|
const error = `cannot call the rendering API without an image, aborting..` |
|
console.error(error) |
|
throw new Error(error) |
|
} |
|
|
|
let defaulResult = { |
|
assetUrl: "", |
|
error: "failed to fetch the data", |
|
} |
|
|
|
try { |
|
|
|
const res = await fetch(`${videochainApiUrl}/upscale`, { |
|
method: "POST", |
|
headers: { |
|
Accept: "application/json", |
|
"Content-Type": "application/json", |
|
Authorization: `Bearer ${videochainToken}`, |
|
}, |
|
cache: 'no-store', |
|
body: JSON.stringify({ image, factor: 3 }) |
|
|
|
|
|
}) |
|
|
|
if (res.status !== 200) { |
|
throw new Error('Failed to fetch data') |
|
} |
|
|
|
const response = (await res.json()) as { |
|
assetUrl: string |
|
error: string |
|
} |
|
return response |
|
} catch (err) { |
|
console.error(err) |
|
return defaulResult |
|
} |
|
} |
|
|