Brainy 8.0 is server-only. This commit takes the consequences seriously and
removes everything that was only there to keep browser/cloud/threading
surfaces alive.
Browser support drop (per the @deprecated notes in environment.ts):
- isBrowser, isWebWorker, areWebWorkersAvailable, navigator.deviceMemory
paths, window/document/self.onmessage code.
- browser console.log in unified.ts, the 'browser' branch in
autoConfiguration.ts (env enum + scaleUp cases), 'browser-cache' model
path, MCP service environment value.
- package.json browser field.
- src/worker.ts (Web Worker entrypoint) deleted.
Cloud SDK removal (the four adapters were dropped in Phase 7; the SDKs
were the lingering tax):
- @aws-sdk/client-s3, @azure/identity, @azure/storage-blob, and
@google-cloud/storage removed from package.json. Lockfile drops the
entire @aws/@azure/@google-cloud/@smithy transitive tree.
- EnhancedS3Clear class deleted from enhancedClearOperations.ts (the
only @aws-sdk/client-s3 consumer; the dynamic import sites went with
it). EnhancedFileSystemClear stays.
- src/utils/adaptiveSocketManager.ts deleted entirely (474 LOC of HTTPS
socket-pool management for the dropped cloud HTTP handler).
performanceMonitor.ts no longer reports a socketConfig; socket
utilization is fixed at 0.
Dead threading subsystem:
- executeInThread was imported by distance.ts and hnswIndex.ts but
never called. It was scaffolding for a future "off-main-thread
distance batch" optimization that never shipped.
- src/utils/workerUtils.ts deleted (Web Worker code path + an
unreachable Node Worker Threads code path).
- environment.ts loses isThreadingAvailable, isThreadingAvailableAsync,
areWorkerThreadsAvailable, areWorkerThreadsAvailableSync. All exports
purged from index.ts and unified.ts.
- autoConfiguration.ts drops AutoConfigResult.threadingAvailable.
Legacy plugin/augmentation pipeline:
- src/pipeline.ts deleted. The whole file was a no-op stub for
backwards compat — Pipeline class had no methods, no lifecycle hooks,
no before/after callbacks. AugmentationPipeline, augmentationPipeline,
createPipeline, createStreamingPipeline, StreamlinedPipelineOptions,
StreamlinedPipelineResult, StreamlinedExecutionMode were all aliases
for the same stub.
- src/mcp/mcpAugmentationToolset.ts deleted. executePipeline always
threw "deprecated", isValidAugmentationType always returned false,
getAvailableTools always returned []. Dead surface.
- BrainyMCPService no longer instantiates a toolset. TOOL_EXECUTION
requests now return the standard UNSUPPORTED_REQUEST_TYPE error.
'availableTools' system-info returns [] (was the same in practice).
Net: 22 files changed, ~6400 LOC deleted (including legacy code +
mechanical lockfile churn). Build clean, 1409/1409 tests pass.
213 lines
6.5 KiB
TypeScript
213 lines
6.5 KiB
TypeScript
/**
|
|
* Distance functions for vector similarity calculations
|
|
* Optimized pure JavaScript implementations using enhanced array methods
|
|
* Faster than GPU for small vectors (384 dims) due to no transfer overhead
|
|
*/
|
|
|
|
import { DistanceFunction, Vector } from '../coreTypes.js'
|
|
|
|
/**
|
|
* Calculates the Euclidean distance between two vectors
|
|
* Lower values indicate higher similarity
|
|
* Optimized using array methods for Node.js 23.11+
|
|
*/
|
|
export const euclideanDistance: DistanceFunction = (
|
|
a: Vector,
|
|
b: Vector
|
|
): number => {
|
|
if (a.length !== b.length) {
|
|
throw new Error('Vectors must have the same dimensions')
|
|
}
|
|
|
|
// Use array.reduce for better performance in Node.js 23.11+
|
|
const sum = a.reduce((acc, val, i) => {
|
|
const diff = val - b[i]
|
|
return acc + diff * diff
|
|
}, 0)
|
|
|
|
return Math.sqrt(sum)
|
|
}
|
|
|
|
/**
|
|
* Calculates the cosine distance between two vectors
|
|
* Lower values indicate higher similarity
|
|
* Range: 0 (identical) to 2 (opposite)
|
|
* Optimized using array methods for Node.js 23.11+
|
|
*/
|
|
export const cosineDistance: DistanceFunction = (
|
|
a: Vector,
|
|
b: Vector
|
|
): number => {
|
|
if (a.length !== b.length) {
|
|
throw new Error('Vectors must have the same dimensions')
|
|
}
|
|
|
|
// Use array.reduce to calculate all values in a single pass
|
|
const { dotProduct, normA, normB } = a.reduce(
|
|
(acc, val, i) => {
|
|
return {
|
|
dotProduct: acc.dotProduct + val * b[i],
|
|
normA: acc.normA + val * val,
|
|
normB: acc.normB + b[i] * b[i]
|
|
}
|
|
},
|
|
{ dotProduct: 0, normA: 0, normB: 0 }
|
|
)
|
|
|
|
if (normA === 0 || normB === 0) {
|
|
return 2 // Maximum distance for zero vectors
|
|
}
|
|
|
|
const similarity = dotProduct / (Math.sqrt(normA) * Math.sqrt(normB))
|
|
// Convert cosine similarity (-1 to 1) to distance (0 to 2)
|
|
return 1 - similarity
|
|
}
|
|
|
|
/**
|
|
* Calculates the Manhattan (L1) distance between two vectors
|
|
* Lower values indicate higher similarity
|
|
* Optimized using array methods for Node.js 23.11+
|
|
*/
|
|
export const manhattanDistance: DistanceFunction = (
|
|
a: Vector,
|
|
b: Vector
|
|
): number => {
|
|
if (a.length !== b.length) {
|
|
throw new Error('Vectors must have the same dimensions')
|
|
}
|
|
|
|
// Use array.reduce for better performance in Node.js 23.11+
|
|
return a.reduce((sum, val, i) => sum + Math.abs(val - b[i]), 0)
|
|
}
|
|
|
|
/**
|
|
* Calculates the dot product similarity between two vectors
|
|
* Higher values indicate higher similarity
|
|
* Converted to a distance metric (lower is better)
|
|
* Optimized using array methods for Node.js 23.11+
|
|
*/
|
|
export const dotProductDistance: DistanceFunction = (
|
|
a: Vector,
|
|
b: Vector
|
|
): number => {
|
|
if (a.length !== b.length) {
|
|
throw new Error('Vectors must have the same dimensions')
|
|
}
|
|
|
|
// Use array.reduce for better performance in Node.js 23.11+
|
|
const dotProduct = a.reduce((sum, val, i) => sum + val * b[i], 0)
|
|
|
|
// Convert to a distance metric (lower is better)
|
|
return -dotProduct
|
|
}
|
|
|
|
/**
|
|
* Batch distance calculation using optimized JavaScript
|
|
* More efficient than GPU for small vectors due to no memory transfer overhead
|
|
*
|
|
* @param queryVector The query vector to compare against all vectors
|
|
* @param vectors Array of vectors to compare against
|
|
* @param distanceFunction The distance function to use
|
|
* @returns Promise resolving to array of distances
|
|
*/
|
|
export async function calculateDistancesBatch(
|
|
queryVector: Vector,
|
|
vectors: Vector[],
|
|
distanceFunction: DistanceFunction = euclideanDistance
|
|
): Promise<number[]> {
|
|
// For small batches, use the standard distance function
|
|
if (vectors.length < 10) {
|
|
return vectors.map((vector) => distanceFunction(queryVector, vector))
|
|
}
|
|
|
|
try {
|
|
// Function for optimized batch distance calculation
|
|
const distanceCalculator = (args: {
|
|
queryVector: Vector
|
|
vectors: Vector[]
|
|
distanceFnString: string
|
|
}) => {
|
|
const { queryVector, vectors, distanceFnString } = args
|
|
|
|
// Optimized JavaScript implementations for different distance functions
|
|
let distances: number[]
|
|
|
|
if (distanceFnString.includes('euclideanDistance')) {
|
|
// Euclidean distance: sqrt(sum((a - b)^2))
|
|
distances = vectors.map((vector) => {
|
|
let sum = 0
|
|
for (let i = 0; i < queryVector.length; i++) {
|
|
const diff = queryVector[i] - vector[i]
|
|
sum += diff * diff
|
|
}
|
|
return Math.sqrt(sum)
|
|
})
|
|
} else if (distanceFnString.includes('cosineDistance')) {
|
|
// Cosine distance: 1 - (a·b / (||a|| * ||b||))
|
|
distances = vectors.map((vector) => {
|
|
let dotProduct = 0
|
|
let queryNorm = 0
|
|
let vectorNorm = 0
|
|
|
|
for (let i = 0; i < queryVector.length; i++) {
|
|
dotProduct += queryVector[i] * vector[i]
|
|
queryNorm += queryVector[i] * queryVector[i]
|
|
vectorNorm += vector[i] * vector[i]
|
|
}
|
|
|
|
queryNorm = Math.sqrt(queryNorm)
|
|
vectorNorm = Math.sqrt(vectorNorm)
|
|
|
|
if (queryNorm === 0 || vectorNorm === 0) {
|
|
return 1 // Maximum distance for zero vectors
|
|
}
|
|
|
|
const cosineSimilarity = dotProduct / (queryNorm * vectorNorm)
|
|
return 1 - cosineSimilarity
|
|
})
|
|
} else if (distanceFnString.includes('manhattanDistance')) {
|
|
// Manhattan distance: sum(|a - b|)
|
|
distances = vectors.map((vector) => {
|
|
let sum = 0
|
|
for (let i = 0; i < queryVector.length; i++) {
|
|
sum += Math.abs(queryVector[i] - vector[i])
|
|
}
|
|
return sum
|
|
})
|
|
} else if (distanceFnString.includes('dotProductDistance')) {
|
|
// Dot product distance: -sum(a * b)
|
|
distances = vectors.map((vector) => {
|
|
let dotProduct = 0
|
|
for (let i = 0; i < queryVector.length; i++) {
|
|
dotProduct += queryVector[i] * vector[i]
|
|
}
|
|
return -dotProduct
|
|
})
|
|
} else {
|
|
// For unknown distance functions, use the provided function
|
|
const distanceFunction = new Function(
|
|
'return ' + distanceFnString
|
|
)() as DistanceFunction
|
|
|
|
distances = vectors.map((vector) =>
|
|
distanceFunction(queryVector, vector)
|
|
)
|
|
}
|
|
|
|
return { distances }
|
|
}
|
|
|
|
// Use the optimized distance calculator
|
|
const result = distanceCalculator({
|
|
queryVector,
|
|
vectors,
|
|
distanceFnString: distanceFunction.toString()
|
|
})
|
|
|
|
return result.distances
|
|
} catch (error) {
|
|
// If anything fails, fall back to the standard distance function
|
|
console.error('Batch distance calculation failed:', error)
|
|
return vectors.map((vector) => distanceFunction(queryVector, vector))
|
|
}
|
|
}
|