Closed TiruvedulaMithun closed 2 weeks ago
HI @TiruvedulaMithun, I'll work on as soon as possible
Hi @TiruvedulaMithun I've added the requested feature, it is available in the last 1.0-SNAPSHOT
Sample code is here. Please take the opportunity to try it and let me know.
@bsorrentino Wow that was hella fast!! Thank you!
Dumb question, how do I go about adding the 1.0-SNAPSHOT version to my dependency? When I add the maven string org.bsc.langgraph4j:langgraph4j-core-jdk8:1.0-SNAPSHOT to my project i get and the same jar as before:
@bsorrentino Wow that was hella fast! Thank you!
Dumb question, I can't seem to find the 1.0-SNAPSHOT version on maven central. How would I go about finding it?
The feature is interesting and implementation was pretty simple. To use snapshot in maven you have configure the repository
<repository>
<id>sonatype-server</id>
<name>sonatype snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
Unfortunately I keep getting the error: Could not transfer artifact org.bsc.langgraph4j:langgraph4j-core-jdk8:pom:1.0-SNAPSHOT from/to sonatype-server (https://oss.sonatype.org/content/repositories/snapshots): PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
When replace https with http i get: Could not transfer artifact org.bsc.langgraph4j:langgraph4j-core-jdk8:pom:1.0-SNAPSHOT from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [sonatype-server (http://oss.sonatype.org/content/repositories/snapshots, default, snapshots)]
Any help? Thank you!
Unfortunately I keep getting the error: Could not transfer artifact org.bsc.langgraph4j:langgraph4j-core-jdk8:pom:1.0-SNAPSHOT from/to sonatype-server (https://oss.sonatype.org/content/repositories/snapshots): PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
When replace https with http i get: Could not transfer artifact org.bsc.langgraph4j:langgraph4j-core-jdk8:pom:1.0-SNAPSHOT from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [sonatype-server (http://oss.sonatype.org/content/repositories/snapshots, default, snapshots)]
Any help? Thank you!
I've deployed an intermediate version 1.0-20241111
Yup, works. Tested. Thank you! 🙌
Curently in org.bsc.langgraph4j.langchain4j.tool.ToolNode.of(Collection
When we pass tool specifications specified dynamically or programatically as per Langchain4j documentation here like example:
Where getStationName() and float specialKTwoNumbers(float, float) are two local functions.
We get the following error:
It is because in the ToolNode.of function, we only consider a function a tool if tool annotation is present
Can you please add support for tool specifications specified dynamically or programatically?
Thank you!!