Skip to content

Commit

Permalink
build: bump to developer release
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Sep 6, 2024
1 parent f6fd1e1 commit e8a2f07
Show file tree
Hide file tree
Showing 7 changed files with 80 additions and 6 deletions.
2 changes: 1 addition & 1 deletion adaptive-rag/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-beta4</version>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>langgraph4j-adaptive-rag</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent-executor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-beta4</version>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>langgraph4j-agent-executor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core-jdk8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-beta4</version>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>langgraph4j-core-jdk8</artifactId>
Expand Down
74 changes: 74 additions & 0 deletions how-tos/logging.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"String userHomeDir = System.getProperty(\"user.home\");\n",
"String localRespoUrl = \"file://\" + userHomeDir + \"/.m2/repository/\";\n",
"String langchain4jVersion = \"0.33.0\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%dependency /add-repo local \\{localRespoUrl} release|never snapshot|always\n",
"%dependency /list-repos"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%dependency /add org.bsc.langgraph4j:langgraph4j-core-jdk8:1.0-SNAPSHOT\n",
"%dependency /add dev.langchain4j:langchain4j:\\{langchain4jVersion}\n",
"%dependency /add dev.langchain4j:langchain4j-open-ai:\\{langchain4jVersion}\n",
"\n",
"%dependency /resolve"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"import java.io.FileInputStream;\n",
"import java.io.IOException;\n",
"import java.util.logging.LogManager;\n",
"import java.util.logging.Logger;\n",
"\n",
"try( FileInputStream configFile = new FileInputStream(\"./logging.properties\") ) {\n",
" var lm = LogManager.getLogManager();\n",
" lm.checkAccess();\n",
" lm.readConfiguration(configFile);\n",
"}\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Java (rjk 2.1.0)",
"language": "java",
"name": "rapaio-jupyter-kernel"
},
"language_info": {
"codemirror_mode": "java",
"file_extension": ".jshell",
"mimetype": "text/x-java-source",
"name": "java",
"nbconvert_exporter": "script",
"pygments_lexer": "java",
"version": "22.0.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
2 changes: 1 addition & 1 deletion image-to-diagram/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-beta4</version>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>langgraph4j-image-to-diagram</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-beta4</version>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>langgraph4j::parent</name>
Expand Down
2 changes: 1 addition & 1 deletion server-jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-beta4</version>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>langgraph4j-server-jetty</artifactId>
Expand Down

0 comments on commit e8a2f07

Please sign in to comment.