arlong (@zzl) 在 我独自一人用js写了一款 ai,对显卡要求极低,代码已开源效果媲美 deepseek 中发帖
const express = require('express');
const app = express();
const port = 8080;
app.get('/v1/completions', (req, res) => {
res.status(503).json({
error: "服务器繁忙,请稍后重试"
});
});
app.listen(port, () => {
console.log(`Server running at http://localhost:${port}`);
});