Skip to content

Commit

Permalink
released 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-learning-dynamo committed Aug 10, 2023
1 parent f3757b8 commit 1541f21
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Please provide a relevant code snippets to reproduce this bug.
A clear and concise description of what you expected to happen.

**Please complete the following information:**
- LangChain4j version: e.g. 0.18.0
- LangChain4j version: e.g. 0.19.0
- Java version: e.g. 11
- Spring Boot version (if applicable): e.g. 2.7.13

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,12 @@ See example [here](https://github.com/langchain4j/langchain4j-examples/blob/main
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
</dependency>
```
- Gradle:
```
implementation 'dev.langchain4j:langchain4j:0.18.0'
implementation 'dev.langchain4j:langchain4j:0.19.0'
```
2. Import your OpenAI/HuggingFace API key:
Expand Down
2 changes: 1 addition & 1 deletion langchain4j-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-parent</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
<relativePath>../langchain4j-parent/pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion langchain4j-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-parent</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
<packaging>pom</packaging>

<name>langchain4j parent POM</name>
Expand Down
4 changes: 2 additions & 2 deletions langchain4j-pinecone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-parent</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
<relativePath>../langchain4j-parent/pom.xml</relativePath>
</parent>

Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-core</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions langchain4j-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-parent</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
<relativePath>../langchain4j-parent/pom.xml</relativePath>
</parent>

Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions langchain4j-weaviate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-parent</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
<relativePath>../langchain4j-parent/pom.xml</relativePath>
</parent>

Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-core</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions langchain4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-parent</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
<relativePath>../langchain4j-parent/pom.xml</relativePath>
</parent>

Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-core</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ private static String errorMessageForPrePackagedModel(InProcessEmbeddingModelTyp
+ "<dependency>\n" +
" <groupId>dev.langchain4j</groupId>\n" +
" <artifactId>langchain4j-embeddings-%s</artifactId>\n" +
" <version>0.18.0</version>\n" +
" <version>0.19.0</version>\n" +
"</dependency>\n"
+ "\n"
+ "Gradle:\n"
+ "implementation 'dev.langchain4j:langchain4j-embeddings-%s:0.18.0'\n",
+ "implementation 'dev.langchain4j:langchain4j-embeddings-%s:0.19.0'\n",
type.name(),
type.name().replace("_", "-").toLowerCase(),
type.name().replace("_", "-").toLowerCase()
Expand All @@ -107,11 +107,11 @@ private static String errorMessageForCustomModel() {
+ "<dependency>\n" +
" <groupId>dev.langchain4j</groupId>\n" +
" <artifactId>langchain4j-embeddings</artifactId>\n" +
" <version>0.18.0</version>\n" +
" <version>0.19.0</version>\n" +
"</dependency>\n"
+ "\n"
+ "Gradle:\n"
+ "implementation 'dev.langchain4j:langchain4j-embeddings:0.18.0'\n";
+ "implementation 'dev.langchain4j:langchain4j-embeddings:0.19.0'\n";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ private static String getMessage() {
+ "<dependency>\n" +
" <groupId>dev.langchain4j</groupId>\n" +
" <artifactId>langchain4j-pinecone</artifactId>\n" +
" <version>0.18.0</version>\n" +
" <version>0.19.0</version>\n" +
"</dependency>\n\n"
+ "Gradle:\n"
+ "implementation 'dev.langchain4j:langchain4j-pinecone:0.18.0'\n";
+ "implementation 'dev.langchain4j:langchain4j-pinecone:0.19.0'\n";
}

private static EmbeddingStore<TextSegment> loadDynamically(String implementationClassName, String apiKey, String environment, String project, String index, String nameSpace) throws ClassNotFoundException, NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ private static String getMessage() {
"<dependency>\n" +
" <groupId>dev.langchain4j</groupId>\n" +
" <artifactId>langchain4j-weaviate</artifactId>\n" +
" <version>0.18.0</version>\n" +
" <version>0.19.0</version>\n" +
"</dependency>\n\n" +
"Gradle:\n" +
"implementation 'dev.langchain4j:langchain4j-weaviate:0.18.0'\n"
"implementation 'dev.langchain4j:langchain4j-weaviate:0.19.0'\n"
);
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-aggregator</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit 1541f21

Please sign in to comment.