Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

@liquidmetal-ai/lm-raindrop-integrations

Package Overview
Dependencies
Maintainers
8
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@liquidmetal-ai/lm-raindrop-integrations

TypeScript SDK for integrating LiquidMetal's Raindrop API with popular frameworks and tools

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
8
Created
Source

LiquidMetal Raindrop TypeScript Integrations

This package provides integrations between LiquidMetal's Raindrop API and popular TypeScript frameworks and tools.

Installation

npm install @liquidmetal-ai/lm-raindrop-integrations

Features

LangChain SmartBucket Retriever

A retriever for LangChain that uses the SmartBucket API to perform semantic search across your saved documents.

import { LangchainSmartBucketRetriever } from '@liquidmetal-ai/lm-raindrop-integrations';

// Using API key from environment variable RAINDROP_API_KEY
const retriever = new LangchainSmartBucketRetriever({ 
  bucketName: "my-bucket"
});

// Or with explicit API key
const retriever = new LangchainSmartBucketRetriever({ 
  bucketName: "my-bucket",
  apiKey: "your-api-key"
});

// Get relevant documents
const documents = await retriever.invoke("your query");

Requirements

  • Node.js 16+
  • An API key for LiquidMetal's Raindrop service. You can obtain one by signing up at raindrop.run

License

MIT

Keywords

langchain

FAQs

Package last updated on 27 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts