native-vector-store 0.3.0 → 0.3.2

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.
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  High-performance vector store with SIMD optimization for MCP servers and local RAG applications.
4
4
 
5
+ 📚 **[API Documentation](https://mboros1.github.io/native-vector-store/)** | 📦 **[npm](https://www.npmjs.com/package/native-vector-store)** | 🐙 **[GitHub](https://github.com/mboros1/native-vector-store)**
6
+
5
7
  ## Design Philosophy
6
8
 
7
9
  This vector store is designed for **immutable, one-time loading** scenarios common in modern cloud deployments:
@@ -267,6 +269,11 @@ const response = await server.handleMCPRequest('vector_search', {
267
269
 
268
270
  ## API Reference
269
271
 
272
+ Full API documentation is available at:
273
+ - **[Latest Documentation](https://mboros1.github.io/native-vector-store/)** - Always current
274
+ - **Versioned Documentation** - Available at `https://mboros1.github.io/native-vector-store/{version}/` (e.g., `/v0.3.0/`)
275
+ - **Local Documentation** - After installing: `open node_modules/native-vector-store/docs/index.html`
276
+
270
277
  ### `VectorStore`
271
278
 
272
279
  #### Constructor
package/docs/index.html CHANGED
@@ -45,6 +45,7 @@
45
45
  <section>
46
46
  <article><h1 id="native-vector-store">native-vector-store</h1>
47
47
  <p>High-performance vector store with SIMD optimization for MCP servers and local RAG applications.</p>
48
+ <p>📚 <strong><a href="https://mboros1.github.io/native-vector-store/">API Documentation</a></strong> | 📦 <strong><a href="https://www.npmjs.com/package/native-vector-store">npm</a></strong> | 🐙 <strong><a href="https://github.com/mboros1/native-vector-store">GitHub</a></strong></p>
48
49
  <h2 id="design-philosophy">Design Philosophy</h2>
49
50
  <p>This vector store is designed for <strong>immutable, one-time loading</strong> scenarios common in modern cloud deployments:</p>
50
51
  <ul>
@@ -272,6 +273,12 @@ const response = await server.handleMCPRequest('vector_search', {
272
273
  });
273
274
  </code></pre>
274
275
  <h2 id="api-reference">API Reference</h2>
276
+ <p>Full API documentation is available at:</p>
277
+ <ul>
278
+ <li><strong><a href="https://mboros1.github.io/native-vector-store/">Latest Documentation</a></strong> - Always current</li>
279
+ <li><strong>Versioned Documentation</strong> - Available at <code>https://mboros1.github.io/native-vector-store/{version}/</code> (e.g., <code>/v0.3.0/</code>)</li>
280
+ <li><strong>Local Documentation</strong> - After installing: <code>open node_modules/native-vector-store/docs/index.html</code></li>
281
+ </ul>
275
282
  <h3 id="vectorstore"><code>VectorStore</code></h3>
276
283
  <h4 id="constructor">Constructor</h4>
277
284
  <pre class="prettyprint source lang-typescript"><code>new VectorStore(dimensions: number)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "native-vector-store",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "High-performance local vector store with SIMD optimization for MCP servers",
5
5
  "main": "index.js",
6
6
  "types": "lib/index.d.ts",