Skip to content

First Release

Choose a tag to compare

@MFA-X-AI MFA-X-AI released this 25 Oct 08:53
· 32 commits to main since this release

Docusaurus Vecto Search Release

Welcome

We're excited to announce the first release of Docusaurus Vecto Search! Enhance your Docusaurus website's search capabilities with Vecto's powerful technology.

Quick Start

Install

Navigate to your project root and run:

npm install @xpressai/docusaurus-vecto-search

Configure

In your docusaurus.config.js:

themes: [
  [
    "docusaurus-vecto-search",
    {
      public_token: "",
      vector_space_id: 123,
      top_k: 123
    }
  ],
]

Acquire your public_token here.

Set Environment Variables

Create a .env file in your project root:

USER_TOKEN=your_token_value_here

Build

Finally, build your site:

yarn build

Plugin Development

To contribute or customize:

  1. Clone and set up the plugin repo:

    git clone https://github.com/XpressAI/docusaurus-vecto-search
    cd docusaurus-vecto-search
    yarn install
    yarn link
  2. In your Docusaurus project:

    yarn link docusaurus-vecto-search
    yarn build

Feel free to reach out if you have any issues, questions, or contributions.