Skip to content

Releases: wpkyoto/stripe-docs-loader

v0.1.0

11 Mar 07:07
2f28f63

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.0...v0.1.0

v0.0.0

11 Mar 05:35

Choose a tag to compare

Full Changelog: https://github.com/wpkyoto/stripe-docs-loader/commits/v0.0.0

Release Notes for v0.0.0

Initial Release v0.0.0

This is the initial release of the Stripe Loaders packages.

Packages

  • stripe-loaders-core: Core library for Stripe loaders
  • langchain-stripe-loader: LangChain loader for Stripe data

Features

stripe-loaders-core

  • Extract URLs from Stripe documentation sitemaps
  • Process sitemap index files to get all URLs from multiple sitemaps
  • Find newly added URLs by comparing current and previous URL lists
  • Configurable logging with custom logger support
  • Debug mode for detailed logging

langchain-stripe-loader

  • Extract content from Stripe's official documentation (docs.stripe.com)
  • Extract content from Stripe's main website (stripe.com)
  • Support for different locales
  • Convert HTML content to Markdown for better compatibility with LLMs
  • Metadata extraction (title, description, source URL)

Installation

# Core library
npm install stripe-loaders-core

# LangChain loader
npm install langchain-stripe-loader

How to Create a GitHub Release

  1. Go to your GitHub repository: https://github.com/wpkyoto/stripe-docs-loader
  2. Click on "Releases" in the right sidebar
  3. Click on "Create a new release"
  4. Select the tag "v0.0.0" from the dropdown
  5. Set the release title to "v0.0.0"
  6. Copy and paste the content from this file into the description
  7. Click "Publish release"

How to Publish to npm

After creating the GitHub release, you can publish the packages to npm:

# Login to npm
npm login

# Publish core package first
cd packages/core
npm publish

# Then publish langchain-stripe-loader
cd ../langchain-stripe-loader
npm publish