├── .gitignore ├── LICENSE ├── README.md ├── example-2.webp ├── example.webp ├── package.json ├── src ├── commands │ ├── corr.ts │ └── embed.ts ├── config.ts ├── templates │ └── correlation_d3.html ├── types.ts ├── types │ ├── index.ts │ └── ndjson.d.ts └── utils │ ├── axios-client.ts │ ├── embeddings.ts │ └── reader.ts ├── tsconfig.json ├── v3-arxiv.jsonl └── v3-blog.jsonl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/README.md -------------------------------------------------------------------------------- /example-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/example-2.webp -------------------------------------------------------------------------------- /example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/example.webp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/corr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/commands/corr.ts -------------------------------------------------------------------------------- /src/commands/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/commands/embed.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/templates/correlation_d3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/templates/correlation_d3.html -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/ndjson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/types/ndjson.d.ts -------------------------------------------------------------------------------- /src/utils/axios-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/utils/axios-client.ts -------------------------------------------------------------------------------- /src/utils/embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/utils/embeddings.ts -------------------------------------------------------------------------------- /src/utils/reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/src/utils/reader.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/tsconfig.json -------------------------------------------------------------------------------- /v3-arxiv.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/v3-arxiv.jsonl -------------------------------------------------------------------------------- /v3-blog.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/correlations/HEAD/v3-blog.jsonl --------------------------------------------------------------------------------