惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
量子位
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
IT之家
IT之家
V
Visual Studio Blog
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
D
Docker
V
V2EX

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
xai: OAuth login fixes plus openclaw User-Agent attributi...
Jaaneek · 2026-05-18 · via Recent Commits to openclaw:main

@@ -5,15 +5,36 @@ import type WebSocket from "ws";

55

import { WebSocketServer } from "ws";

66

import { buildXaiRealtimeTranscriptionProvider } from "./realtime-transcription-provider.js";

778+

const { isProviderAuthProfileConfiguredMock, resolveApiKeyForProviderMock } = vi.hoisted(() => ({

9+

isProviderAuthProfileConfiguredMock: vi.fn(() => false),

10+

resolveApiKeyForProviderMock: vi.fn(

11+

async (): Promise<{ apiKey: string | undefined }> => ({ apiKey: undefined }),

12+

),

13+

}));

14+15+

vi.mock("openclaw/plugin-sdk/provider-auth", () => ({

16+

isProviderAuthProfileConfigured: isProviderAuthProfileConfiguredMock,

17+

}));

18+19+

vi.mock("openclaw/plugin-sdk/provider-auth-runtime", () => ({

20+

resolveApiKeyForProvider: resolveApiKeyForProviderMock,

21+

}));

22+823

let cleanup: (() => Promise<void>) | undefined;

9241025

afterEach(async () => {

1126

await cleanup?.();

1227

cleanup = undefined;

28+

isProviderAuthProfileConfiguredMock.mockReset();

29+

isProviderAuthProfileConfiguredMock.mockReturnValue(false);

30+

resolveApiKeyForProviderMock.mockReset();

31+

resolveApiKeyForProviderMock.mockResolvedValue({ apiKey: undefined });

32+

delete process.env.XAI_API_KEY;

33+

vi.unstubAllEnvs();

1334

});

14351536

async function createRealtimeSttServer(params?: {

16-

onRequest?: (url: URL) => void;

37+

onRequest?: (url: URL, headers: Record<string, string | string[] | undefined>) => void;

1738

onBinary?: (audio: Buffer) => void;

1839

initialEvent?: unknown;

1940

}) {

@@ -28,7 +49,7 @@ async function createRealtimeSttServer(params?: {

28492950

server.on("upgrade", (request, socket, head) => {

3051

const url = new URL(request.url ?? "/", "http://127.0.0.1");

31-

params?.onRequest?.(url);

52+

params?.onRequest?.(url, request.headers);

3253

wss.handleUpgrade(request, socket, head, (ws) => {

3354

clients.add(ws);

3455

ws.on("close", () => clients.delete(ws));

@@ -122,10 +143,15 @@ describe("xai realtime transcription provider", () => {

122143

});

123144124145

it("streams raw binary audio and maps partial and final transcript events", async () => {

146+

vi.stubEnv("OPENCLAW_VERSION", "2026.3.22");

125147

const binaryFrames: Buffer[] = [];

126148

const requestUrls: URL[] = [];

149+

const upgradeHeaders: Array<Record<string, string | string[] | undefined>> = [];

127150

const server = await createRealtimeSttServer({

128-

onRequest: (url) => requestUrls.push(url),

151+

onRequest: (url, headers) => {

152+

requestUrls.push(url);

153+

upgradeHeaders.push(headers);

154+

},

129155

onBinary: (audio) => binaryFrames.push(audio),

130156

});

131157

const provider = buildXaiRealtimeTranscriptionProvider();

@@ -166,10 +192,13 @@ describe("xai realtime transcription provider", () => {

166192

expect(requestUrls[0]?.searchParams.get("encoding")).toBe("pcm");

167193

expect(requestUrls[0]?.searchParams.get("interim_results")).toBe("true");

168194

expect(requestUrls[0]?.searchParams.get("endpointing")).toBe("500");

195+

expect(upgradeHeaders[0]?.["user-agent"]).toBeUndefined();

196+

expect(upgradeHeaders[0]?.authorization).toBe("Bearer xai-test-key");

169197

expect(Buffer.concat(binaryFrames).toString()).toContain("queued-before-ready");

170198

expect(Buffer.concat(binaryFrames).toString()).toContain("after-ready");

171199

expect(onSpeechStart).toHaveBeenCalled();

172200

expect(onPartial).toHaveBeenCalledWith("hello openclaw");

201+

vi.unstubAllEnvs();

173202

});

174203175204

it("rejects setup errors before the stream is ready", async () => {

@@ -203,4 +232,42 @@ describe("xai realtime transcription provider", () => {

203232

expect(provider.aliases).toContain("xai-realtime");

204233

expect(provider.aliases).toContain("grok-stt-streaming");

205234

});

235+236+

it("reports configured when an xAI auth profile exists, even without env or config apiKey", () => {

237+

delete process.env.XAI_API_KEY;

238+

isProviderAuthProfileConfiguredMock.mockReturnValue(true);

239+

const provider = buildXaiRealtimeTranscriptionProvider();

240+

expect(provider.isConfigured({ cfg: {}, providerConfig: {} })).toBe(true);

241+

expect(isProviderAuthProfileConfiguredMock).toHaveBeenCalledWith({

242+

provider: "xai",

243+

cfg: {},

244+

});

245+

});

246+247+

it("threads cfg into the lazy WebSocket bearer resolver", async () => {

248+

delete process.env.XAI_API_KEY;

249+

resolveApiKeyForProviderMock.mockResolvedValue({ apiKey: "oauth-bearer" });

250+

const upgradeHeaders: Array<Record<string, string | string[] | undefined>> = [];

251+

const server = await createRealtimeSttServer({

252+

onRequest: (_url, headers) => {

253+

upgradeHeaders.push(headers);

254+

},

255+

});

256+257+

const provider = buildXaiRealtimeTranscriptionProvider();

258+

const cfg = { agents: { defaults: {} } };

259+

const session = provider.createSession({

260+

cfg,

261+

providerConfig: {

262+

baseUrl: server.baseUrl,

263+

},

264+

});

265+266+

await session.connect();

267+

session.close();

268+

await server.donePromise;

269+270+

expect(resolveApiKeyForProviderMock).toHaveBeenCalledWith({ provider: "xai", cfg });

271+

expect(upgradeHeaders[0]?.authorization).toBe("Bearer oauth-bearer");

272+

});

206273

});