📌 📄 内容摘要:
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}`);
});
────────── 链接信息 ──────────
🔗 论坛链接: linux.do
📎 访问地址: https://linux.do/t/topic/424039/1
─────────────────────────────
📢 来源:LINUX DO