├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── VectorDataStore.ts ├── helpers │ └── validationChecks.ts ├── index.ts └── vector.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychos-ai/tychos-node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychos-ai/tychos-node/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychos-ai/tychos-node/HEAD/package.json -------------------------------------------------------------------------------- /src/VectorDataStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychos-ai/tychos-node/HEAD/src/VectorDataStore.ts -------------------------------------------------------------------------------- /src/helpers/validationChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychos-ai/tychos-node/HEAD/src/helpers/validationChecks.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychos-ai/tychos-node/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/vector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychos-ai/tychos-node/HEAD/src/vector.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tychos-ai/tychos-node/HEAD/tsconfig.json --------------------------------------------------------------------------------