42c958a458
## Issue Closes #1049 ## Change Extracted `HtmlTextExtractor` into `langchain4j-document-transformer-jsoup` module. Renamed `HtmlToTextDocumentTransformer` into `HtmlTextExtractor`. Please import: ```xml <dependency> <groupId>dev.langchain4j</groupId> <artifactId>langchain4j-document-transformer-jsoup</artifactId> <version>0.35.0</version> </dependency> ``` ## General checklist - [ ] There are no breaking changes - [ ] I have added unit and integration tests for my change - [X] I have manually run all the unit and integration tests in the module I have added/changed, and they are all green - [X] I have manually run all the unit and integration tests in the [core](https://github.com/langchain4j/langchain4j/tree/main/langchain4j-core) and [main](https://github.com/langchain4j/langchain4j/tree/main/langchain4j) modules, and they are all green - [X] I have added/updated the [documentation](https://github.com/langchain4j/langchain4j/tree/main/docs/docs) - [ ] I have added an example in the [examples repo](https://github.com/langchain4j/langchain4j-examples) (only for "big" features) - [ ] I have added/updated [Spring Boot starter(s)](https://github.com/langchain4j/langchain4j-spring) (if applicable) |
||
---|---|---|
.. | ||
docs | ||
src | ||
static | ||
.gitignore | ||
Makefile | ||
README.md | ||
babel.config.js | ||
build.sh | ||
docusaurus.config.js | ||
package-lock.json | ||
package.json | ||
sidebars.js | ||
start.bat | ||
start.sh |
README.md
LangChain4j Documentation
Table of Contents
This is built using Docusaurus, a modern static docs/website generator.
Prerequisites
- Node.JS (20+)
Installation
This command installs all the Node dependencies.
npm ci
Build
This command builds the deployable static artifacts (i.e., html, js, css, etc) under the build
directory. This static content can then be deployed to GitHub pages
or Vercel
, etc.
npm run build
Local Development
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
npm run start