Fast Response Connection (FRC) is a lightweight AI execution runtime.
npm install
npm startnode cli/frc.js example.frclimport { FRC } from "./sdk/index.js";
const frc = new FRC("http://localhost:3000");
const res = await frc.run("models5", "hello world");
console.log(res);docker build -t frc .
docker run -p 3000:3000 frc