Skip to content

Releases: multimindlab/multimind-sdk-js

0.1.1

29 Jun 20:11
f4530fe

Choose a tag to compare

Full Changelog: https://github.com/multimindlab/multimind-sdk-js/commits/0.1.1

📦 Release: v0.1.1 – Initial Launch of MultiMind SDK (JavaScript/TypeScript)

We're excited to announce the first official release of the MultiMind SDK for JavaScript/TypeScript, offering full access to the core features of the original MultiMindSDK in Python — now available to Node.js developers.


🚀 Key Features

  • Agent Generation

    • Use MultiMindAgent from JS to generate responses from local or remote models.
  • Fine-Tuning Interface

    • Launch training jobs from a YAML config via FineTuner wrapper.
  • RAG Engine

    • Query a RAG pipeline from TypeScript with document indexing and retrieval.
  • Adapter Loader

    • Load LoRA/PEFT adapters dynamically via bridge methods.
  • Model Loader & Router

    • Load and route models programmatically using load_model() and route_model() wrappers.
  • Evaluation Tools

    • Trigger model evaluations from JavaScript using the evaluate() interface.
  • Bridge Architecture

    • Powered by python-bridge for direct integration without requiring an API server.

📦 Install via NPM

npm install multimind-sdk

📚 Documentation & Examples

See [example/run-agent.ts](https://github.com/multimindlab/multimind-sdk-js/blob/main/example/run-agent.ts) to get started.

You must have Python 3 and the original [multimind-sdk](https://github.com/multimindlab/multimind-sdk) installed locally via pip.


🛠 Requirements

  • Node.js 18+
  • Python 3.8+
  • multimind-sdk installed in your Python environment