Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

🚀 FRC v1

Fast Response Connection (FRC) is a lightweight AI execution runtime.


⚙️ Start server

npm install
npm start

💻 Run CLI

node cli/frc.js example.frcl

🤖 Run SDK

import { FRC } from "./sdk/index.js";

const frc = new FRC("http://localhost:3000");

const res = await frc.run("models5", "hello world");
console.log(res);

🐳 Docker

docker build -t frc .
docker run -p 3000:3000 frc