cosinity v1.0.2
Cosinity
Cosinity is a lightweight, zero-dependency NPM package for calculating the cosine similarity between two vectors. It's particularly useful for working with vector embeddings, such as those obtained from the OpenAI Embedding API, enabling applications in semantic similarity, recommendation systems, and more.
Table of Contents
Features
- Lightweight: Minimalistic implementation without external dependencies.
- Flexible: Works with both ES6 Modules (
import) and CommonJS (require). - TypeScript Support: Built-in TypeScript type definitions for type safety.
- Zero Dependencies: No additional packages required.
- High Performance: Optimized for performance with large vectors.
Installation
You can install Cosinity via NPM:
npm install cosinityOr with Yarn:
yarn add cosinityUsage
ES6 Modules
import cosineSimilarity from "cosinity";
const vectorA = [1, 2, 3];
const vectorB = [4, 5, 6];
const similarity = cosineSimilarity(vectorA, vectorB);
console.log("Cosine Similarity:", similarity);CommonJS
const cosineSimilarity = require("cosinity");
const vectorA = [1, 2, 3];
const vectorB = [4, 5, 6];
const similarity = cosineSimilarity(vectorA, vectorB);
console.log("Cosine Similarity:", similarity);API
cosineSimilarity(vectorA, vectorB)
Calculates the cosine similarity between two vectors.
Parameters
vectorAnumber[]: The first vector.vectorBnumber[]: The second vector.
Returns
number: The cosine similarity betweenvectorAandvectorB. The value ranges from-1(exact opposite) to1(exact same), where0indicates orthogonality (no similarity).
Throws
Error: If the input vectors are not of the same length or are empty.
Examples
Basic Example
import cosineSimilarity from "cosinity";
const vectorA = [0, 1];
const vectorB = [1, 0];
const similarity = cosineSimilarity(vectorA, vectorB);
console.log("Cosine Similarity:", similarity); // Output: 0Using with OpenAI Embeddings
Cosinity can be integrated with OpenAI's Embedding API to calculate the similarity between text snippets.
import OpenAI from "openai";
import cosineSimilarity from "cosinity";
const openai = new OpenAI({
apiKey: "YOUR_OPENAI_API_KEY", // Replace with your OpenAI API key
});
async function getEmbedding(text) {
const response = await openai.embeddings.create({
model: "text-embedding-3-small",
input: text,
encoding_format: "float",
});
return response.data[0].embedding;
}
async function compareTexts(text1, text2) {
const [embedding1, embedding2] = await Promise.all([
getEmbedding(text1),
getEmbedding(text2),
]);
const similarity = cosineSimilarity(embedding1, embedding2);
console.log(
`Cosine Similarity between "${text1}" and "${text2}":`,
similarity
);
}
compareTexts("Hello, world!", "Hi, universe!");Sample Output
Cosine Similarity between "Hello, world!" and "Hi, universe!": 0.87654321Error Handling
The cosineSimilarity function performs input validation:
- Vector Length Mismatch: Throws an error if vectors
vectorAandvectorBare not of the same length. - Empty Vectors: Throws an error if either vector is empty.
- Non-Numeric Values: Throws an error if vectors contain non-numeric values.
Example:
try {
cosineSimilarity([1, 2], [1, 2, 3]);
} catch (error) {
console.error(error.message); // Output: Vectors must be of the same length and not empty.
}Performance Considerations
- Large Vectors: Cosinity is optimized for performance, but when working with extremely large vectors (e.g., embeddings with thousands of dimensions), consider batching or streaming if you experience performance issues.
- Floating-Point Precision: Be aware of floating-point precision limitations when dealing with very small or very large numbers.
Contributing
Contributions are welcome!
- Fork the repository.
Clone your fork:
git clone https://github.com/develanet/cosinity.gitCreate a new branch:
git checkout -b feature/my-new-featureCommit your changes:
git commit -am 'Add new feature'Push to the branch:
git push origin feature/my-new-featureSubmit a Pull Request.
Please make sure your code passes existing tests and add new tests for your features.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by Zay
Acknowledgments
- Inspired by the need for a simple way to calculate cosine similarity for vector embeddings.
- Thanks to the OpenAI community for the support and collaboration.
Contact
For any questions or suggestions, feel free to open an issue or contact me at isaias@develanet.com.