a2578d7ff1
snapshot_release / snapshot_release (push) Has been cancelled
Documentation: build and deploy / deploy (push) Has been cancelled
langchain4j-github-bot.yml lint / langchain4j-github-bot.yml validation (push) Has been cancelled
Java CI / compile_and_unit_test (17) (push) Has been cancelled
Java CI / compile_and_unit_test (21) (push) Has been cancelled
Java CI / compile_and_unit_test (25) (push) Has been cancelled
Split Package Detection / check-split-packages (push) Has been cancelled
Java CI / integration_test (21) (push) Has been cancelled
Java CI / compliance (push) Has been cancelled
Java CI / spotless (push) Has been cancelled
46 lines
2.6 KiB
Markdown
46 lines
2.6 KiB
Markdown
<!--
|
|
Thank you so much for your contribution!
|
|
|
|
Please fill in all the sections below.
|
|
Please open the PR as ready for review (not as a draft), with tests and documentation already included.
|
|
Please note that PRs with breaking changes, or without tests and documentation, will be rejected.
|
|
|
|
Please note that PRs will be reviewed based on the priority of the issues they address.
|
|
We ask for your patience. We are doing our best to review your PR as quickly as possible.
|
|
Please refrain from pinging and asking when it will be reviewed. Thank you for understanding!
|
|
-->
|
|
|
|
## Issue
|
|
<!-- Please specify the ID of the issue this PR is addressing. For example: "Closes #1234" or "Fixes #1234" -->
|
|
Closes #
|
|
|
|
## Change
|
|
<!-- Please describe the changes you made. -->
|
|
|
|
|
|
## General checklist
|
|
<!-- Please double-check the following points and mark them like this: [X] -->
|
|
- [ ] There are no breaking changes (API, behaviour)
|
|
- [ ] I have added unit and/or integration tests for my change
|
|
- [ ] The tests cover both positive and negative cases
|
|
- [ ] I have manually run all the unit and integration tests in the module I have added/changed, and they are all green
|
|
- [ ] 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
|
|
- [ ] 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)
|
|
|
|
|
|
## Checklist for adding new maven module
|
|
<!-- Please double-check the following points and mark them like this: [X] -->
|
|
- [ ] I have added my new module in the root `pom.xml` and `langchain4j-bom/pom.xml`
|
|
|
|
|
|
## Checklist for adding new embedding store integration
|
|
<!-- Please double-check the following points and mark them like this: [X] -->
|
|
- [ ] I have added a `{NameOfIntegration}EmbeddingStoreIT` that extends from either `EmbeddingStoreIT` or `EmbeddingStoreWithFilteringIT`
|
|
- [ ] I have added a `{NameOfIntegration}EmbeddingStoreRemovalIT` that extends from `EmbeddingStoreWithRemovalIT`
|
|
|
|
## Checklist for changing existing embedding store integration
|
|
<!-- Please double-check the following points and mark them like this: [X] -->
|
|
- [ ] I have manually verified that the `{NameOfIntegration}EmbeddingStore` works correctly with the data persisted using the latest released version of LangChain4j
|