feat: introduce auto routing (#122)

This commit is contained in:
samanhappy
2025-05-25 21:09:47 +08:00
committed by GitHub
parent 27b7e766af
commit 9e5c2b5525
24 changed files with 2864 additions and 26 deletions

7
src/db/entities/index.ts Normal file
View File

@@ -0,0 +1,7 @@
import { VectorEmbedding } from './VectorEmbedding.js';
// Export all entities
export default [VectorEmbedding];
// Export individual entities for direct use
export { VectorEmbedding };