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

推荐订阅源

N
Netflix TechBlog - Medium
G
Google Developers Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
L
LangChain Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
小众软件
小众软件
WordPress大学
WordPress大学
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
Jina AI
Jina AI
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
D
Docker

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
fix(memory): validate non-finite lancedb numeric config ·...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
11

import fs from "node:fs";

22

import { homedir } from "node:os";

33

import { join } from "node:path";

4+

import { parseFiniteNumber } from "openclaw/plugin-sdk/number-runtime";

4556

export type MemoryConfig = {

67

embedding: {

@@ -87,14 +88,51 @@ function resolveEnvVars(value: string): string {

8788

});

8889

}

899090-

function resolveEmbeddingModel(embedding: Record<string, unknown>): string {

91+

function resolveEmbeddingModel(

92+

embedding: Record<string, unknown>,

93+

dimensions: number | undefined,

94+

): string {

9195

const model = typeof embedding.model === "string" ? embedding.model : DEFAULT_MODEL;

92-

if (typeof embedding.dimensions !== "number") {

96+

if (dimensions === undefined) {

9397

vectorDimsForModel(model);

9498

}

9599

return model;

96100

}

97101102+

function resolveFiniteIntegerConfig(value: unknown): number | undefined {

103+

if (typeof value !== "number") {

104+

return undefined;

105+

}

106+

const parsed = parseFiniteNumber(value);

107+

return parsed === undefined ? undefined : Math.floor(parsed);

108+

}

109+110+

function resolveBoundedIntegerConfig(params: {

111+

value: unknown;

112+

fallback: number;

113+

min: number;

114+

max: number;

115+

label: string;

116+

}): number {

117+

const resolved = resolveFiniteIntegerConfig(params.value) ?? params.fallback;

118+

if (resolved < params.min || resolved > params.max) {

119+

throw new Error(`${params.label} must be between ${params.min} and ${params.max}`);

120+

}

121+

return resolved;

122+

}

123+124+

function resolveEmbeddingDimensions(embedding: Record<string, unknown>): number | undefined {

125+

if (embedding.dimensions === undefined) {

126+

return undefined;

127+

}

128+

const dimensions =

129+

typeof embedding.dimensions === "number" ? parseFiniteNumber(embedding.dimensions) : undefined;

130+

if (dimensions === undefined || !Number.isInteger(dimensions) || dimensions < 1) {

131+

throw new Error("embedding.dimensions must be a positive integer");

132+

}

133+

return dimensions;

134+

}

135+98136

export const memoryConfigSchema = {

99137

parse(value: unknown): MemoryConfig {

100138

if (!value || typeof value !== "object" || Array.isArray(value)) {

@@ -126,25 +164,27 @@ export const memoryConfigSchema = {

126164

throw new Error("embedding config must include at least one setting");

127165

}

128166129-

const model = resolveEmbeddingModel(embedding);

167+

const dimensions = resolveEmbeddingDimensions(embedding);

168+

const model = resolveEmbeddingModel(embedding, dimensions);

130169

const provider = typeof embedding.provider === "string" ? embedding.provider.trim() : "openai";

131170

if (!provider) {

132171

throw new Error("embedding.provider must not be empty");

133172

}

134173135-

const captureMaxChars =

136-

typeof cfg.captureMaxChars === "number" ? Math.floor(cfg.captureMaxChars) : undefined;

137-

const recallMaxChars =

138-

typeof cfg.recallMaxChars === "number" ? Math.floor(cfg.recallMaxChars) : undefined;

139-

if (

140-

typeof captureMaxChars === "number" &&

141-

(captureMaxChars < 100 || captureMaxChars > 10_000)

142-

) {

143-

throw new Error("captureMaxChars must be between 100 and 10000");

144-

}

145-

if (typeof recallMaxChars === "number" && (recallMaxChars < 100 || recallMaxChars > 10_000)) {

146-

throw new Error("recallMaxChars must be between 100 and 10000");

147-

}

174+

const captureMaxChars = resolveBoundedIntegerConfig({

175+

value: cfg.captureMaxChars,

176+

fallback: DEFAULT_CAPTURE_MAX_CHARS,

177+

min: 100,

178+

max: 10_000,

179+

label: "captureMaxChars",

180+

});

181+

const recallMaxChars = resolveBoundedIntegerConfig({

182+

value: cfg.recallMaxChars,

183+

fallback: DEFAULT_RECALL_MAX_CHARS,

184+

min: 100,

185+

max: 10_000,

186+

label: "recallMaxChars",

187+

});

148188

let customTriggers: string[] | undefined;

149189

if (cfg.customTriggers !== undefined) {

150190

if (!Array.isArray(cfg.customTriggers)) {

@@ -201,15 +241,15 @@ export const memoryConfigSchema = {

201241

apiKey: typeof embedding.apiKey === "string" ? resolveEnvVars(embedding.apiKey) : undefined,

202242

baseUrl:

203243

typeof embedding.baseUrl === "string" ? resolveEnvVars(embedding.baseUrl) : undefined,

204-

dimensions: typeof embedding.dimensions === "number" ? embedding.dimensions : undefined,

244+

dimensions,

205245

},

206246

dreaming,

207247

dbPath: typeof cfg.dbPath === "string" ? cfg.dbPath : DEFAULT_DB_PATH,

208248

autoCapture: cfg.autoCapture === true,

209249

autoRecall: cfg.autoRecall !== false,

210-

captureMaxChars: captureMaxChars ?? DEFAULT_CAPTURE_MAX_CHARS,

250+

captureMaxChars,

211251

...(customTriggers ? { customTriggers } : {}),

212-

recallMaxChars: recallMaxChars ?? DEFAULT_RECALL_MAX_CHARS,

252+

recallMaxChars,

213253

...(storageOptions ? { storageOptions } : {}),

214254

};

215255

},