@van1s1mys/ai-router 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +10 -1
package/README.md CHANGED
@@ -1,7 +1,12 @@
1
1
  # @van1s1mys/ai-router
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/@van1s1mys/ai-router)](https://www.npmjs.com/package/@van1s1mys/ai-router)
4
+ [![GitHub](https://img.shields.io/github/stars/IvanMalkS/ai-router)](https://github.com/IvanMalkS/ai-router)
5
+
3
6
  Semantic search routing for SPAs — find the best route by meaning, not keywords.
4
7
 
8
+ [Documentation](https://ivanmalks.github.io/ai-router/) | [Live Demo](https://ai-router-search.vercel.app) | [npm](https://www.npmjs.com/package/@van1s1mys/ai-router) | [GitHub](https://github.com/IvanMalkS/ai-router)
9
+
5
10
  Runs a HuggingFace embedding model inside a **Web Worker** and uses [Orama](https://orama.com) hybrid (text + vector) search to match user queries by semantic similarity.
6
11
 
7
12
  ## Install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@van1s1mys/ai-router",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Semantic search routing using AI embeddings — find the best route by meaning, not keywords",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -34,6 +34,15 @@
34
34
  "spa",
35
35
  "navigation"
36
36
  ],
37
+ "homepage": "https://ivanmalks.github.io/ai-router/",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/IvanMalkS/ai-router.git",
41
+ "directory": "packages/core"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/IvanMalkS/ai-router/issues"
45
+ },
37
46
  "license": "MIT",
38
47
  "devDependencies": {
39
48
  "esbuild": "^0.27.0"