Releases: wpkyoto/stripe-docs-loader
Releases · wpkyoto/stripe-docs-loader
v0.1.0
What's Changed
- Fix: Replace Turndown with node-html-markdown for Node.js compatibility by @hideokamoto in #1
- Fix: Handle HTTP 404 responses in StripeDocsDocumentLoader and improv… by @hideokamoto in #2
- Example by @hideokamoto in #3
- Docs/custom path by @hideokamoto in #4
New Contributors
- @hideokamoto made their first contribution in #1
Full Changelog: v0.0.0...v0.1.0
v0.0.0
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 loaderslangchain-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-loaderHow to Create a GitHub Release
- Go to your GitHub repository: https://github.com/wpkyoto/stripe-docs-loader
- Click on "Releases" in the right sidebar
- Click on "Create a new release"
- Select the tag "v0.0.0" from the dropdown
- Set the release title to "v0.0.0"
- Copy and paste the content from this file into the description
- 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