Spaces:
Runtime error
Runtime error
File size: 329 Bytes
624088c 287a603 879455c 3ca0269 287a603 879455c |
1 2 3 4 5 6 7 8 9 |
"use server"
import { LLMEngine } from "@/types"
import { predictWithHuggingFace } from "./predictWithHuggingFace"
import { predictWithOpenAI } from "./predictWithOpenAI"
const llmEngine = `${process.env.LLM_ENGINE || ""}` as LLMEngine
export const predict = llmEngine === "OPENAI" ? predictWithOpenAI : predictWithHuggingFace |