forked from langchain4j/langchain4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d34e1df
commit a7c936e
Showing
1 changed file
with
25 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,37 @@ | ||
<!-- Thank you so much for your contribution! --> | ||
|
||
<!-- Please fill in all the sections below. --> | ||
<!-- Please note that PRs without tests 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 paste the link to the issue this PR is addressing. For example: https://github.com/langchain4j/langchain4j/issues/1012 --> | ||
|
||
## Context | ||
<!-- Please provide some context so that it is clear why this change is required. --> | ||
|
||
## Change | ||
<!-- Please describe the changed you made. --> | ||
<!-- Please describe the changes you made. --> | ||
|
||
## Checklist | ||
Before submitting this PR, please check the following points: | ||
|
||
## General checklist | ||
<!-- Please double-check the following points and mark them like this: [X] --> | ||
- [ ] I have added unit and integration tests for my change | ||
- [ ] All unit and integration tests in the module I have added/changed are green | ||
- [ ] All 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 are green | ||
- [ ] 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 | ||
<!-- Before adding documentation and example(s) (below), please wait until the PR is reviewed and approved. --> | ||
- [ ] 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 my new module in the [BOM](https://github.com/langchain4j/langchain4j/blob/main/langchain4j-bom/pom.xml) (only when a new module is added) | ||
|
||
|
||
## Checklist for adding new model integration | ||
<!-- Please double-check the following points and mark them like this: [X] --> | ||
- [ ] I have added my new module in the [BOM](https://github.com/langchain4j/langchain4j/blob/main/langchain4j-bom/pom.xml) | ||
|
||
|
||
## Checklist for adding new embedding store integration | ||
- [ ] I have added a {NameOfIntegration}EmbeddingStoreIT that extends from either EmbeddingStoreIT or EmbeddingStoreWithFilteringIT | ||
<!-- 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 my new module in the [BOM](https://github.com/langchain4j/langchain4j/blob/main/langchain4j-bom/pom.xml) |