Skip to content

Commit

Permalink
docs: update site pages
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Oct 25, 2024
1 parent 8d54ba0 commit 5b8109c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 16 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ concurrency:

jobs:
# Single deploy job since we're just deploying
# mvn -B -Pjdk-8 site:site site:stage site:run -DworkingDirectory=target/staging
deploy:
environment:
name: github-pages
Expand All @@ -39,7 +40,7 @@ jobs:
java-version: 17
- name: Deploy site to Github pages
run: |
mvn -B -Pjdk-8,jdk-17 site:site site:stage
mvn -B -Pjdk-8 site:site site:stage
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,16 @@ LangGraph for Java. A library for building stateful, multi-agents applications w

| Project | Integrated With
|--------------|----------------|
[Agent Executor](samples/springai-agentexecutor/README.md) | [SpringAI]
[Agent Executor](samples/agent-executor/README.md) | [Langchain4j][langchain4j]
[Image To PlantUML Diagram](samples/image-to-diagram/README.md) | [Langchain4j][langchain4j]
[Adaptive RAG](samples/adaptive-rag/README.md) | [Langchain4j][langchain4j]
[Agent Executor][springai-agentexecutor] | [SpringAI]
[Agent Executor][agent-executor] | [Langchain4j][langchain4j]
[Image To PlantUML Diagram][image-to-diagram] | [Langchain4j][langchain4j]
[Adaptive RAG][adaptive-rag] | [Langchain4j][langchain4j]


## How To(s)

* [How to add persistence ("memory") to your graph](how-tos/persistence.ipynb)
* [How to view and update past graph state](how-tos/time-travel.ipynb)
* [How to add persistence ("memory") to your graph][howto-presistence]
* [How to view and update past graph state][howto-timetravel]

## Releases

Expand Down Expand Up @@ -237,6 +238,16 @@ return app.stream( inputs );
* [AI Agent in Java with LangGraph4j - Bartolomeo Blog][article01]
* [Java Async Generator, a Java version of Javascript async generator][java-async-generator]


[javadocs]: https://bsorrentino.github.io/langgraph4j/apidocs/index.html
[springai-agentexecutor]: samples/springai-agentexecutor
[agent-executor]: samples/agent-executor/
[adaptive-rag]: samples/image-to-diagram/
[image-to-diagram]: samples/adaptive-rag
[howto-presistence]: how-tos/persistence.ipynb
[howto-timetravel]: how-tos/time-travel.ipynb


[SpringAI]: https://spring.io/projects/spring-ai
[Studio]: https://bsorrentino.github.io/langgraph4j/studio-jetty/langgraph4j-studio-jetty/index.html
[CompletableFuture]: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html
Expand All @@ -252,6 +263,5 @@ return app.stream( inputs );
[java-async-generator]: https://github.com/bsorrentino/java-async-generator
[Mermaid]: https://mermaid.js.org

[javadocs]: https://bsorrentino.github.io/langgraph4j/apidocs/index.html
[snapshots]: https://oss.sonatype.org/content/repositories/snapshots/org/bsc/langgraph4j/langgraph4j-jdk8/1.0-SNAPSHOT
[releases]: https://central.sonatype.com/search?q=a%3Alanggraph4j-parent
24 changes: 16 additions & 8 deletions src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ LangGraph for Java. A library for building stateful, multi-agents applications w

| Project | Integrated With
|--------------|----------------|
[Agent Executor](samples/springai-agentexecutor/README.md) | [SpringAI]
[Agent Executor](samples/agent-executor/README.md) | [Langchain4j][langchain4j]
[Image To PlantUML Diagram](samples/image-to-diagram/README.md) | [Langchain4j][langchain4j]
[Adaptive RAG](samples/adaptive-rag/README.md) | [Langchain4j][langchain4j]
[Agent Executor][springai-agentexecutor] | [SpringAI]
[Agent Executor][agent-executor] | [Langchain4j][langchain4j]
[Image To PlantUML Diagram][image-to-diagram] | [Langchain4j][langchain4j]
[Adaptive RAG][adaptive-rag] | [Langchain4j][langchain4j]


## How To(s)

* [How to add persistence ("memory") to your graph](how-tos/persistence.ipynb)
* [How to view and update past graph state](how-tos/time-travel.ipynb)
* [How to add persistence ("memory") to your graph][howto-presistence]
* [How to view and update past graph state][howto-timetravel]

## Releases

Expand Down Expand Up @@ -276,6 +276,15 @@ server.start().join();
* [AI Agent in Java with LangGraph4j - Bartolomeo Blog][article01]
* [Java Async Generator, a Java version of Javascript async generator][java-async-generator]

[javadocs]: https://bsorrentino.github.io/langgraph4j/apidocs/index.html
[springai-agentexecutor]: https://github.com/bsorrentino/langgraph4j/blob/main/samples/springai-agentexecutor
[agent-executor]: https://github.com/bsorrentino/langgraph4j/tree/main/samples/agent-executor
[adaptive-rag]: https://github.com/bsorrentino/langgraph4j/tree/main/samples/adaptive-rag
[image-to-diagram]: https://github.com/bsorrentino/langgraph4j/tree/main/samples/image-to-diagram
[howto-presistence]: https://github.com/bsorrentino/langgraph4j/blob/main/how-tos/persistence.ipynb
[howto-timetravel]: https://github.com/bsorrentino/langgraph4j/blob/main/how-tos/time-travel.ipynb


[SpringAI]: https://spring.io/projects/spring-ai
[CompletableFuture]: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html
[article01]: https://bsorrentino.github.io/bsorrentino/ai/2024/05/20/langgraph-for-java.html
Expand All @@ -289,7 +298,6 @@ server.start().join();
[PlantUML]: https://plantuml.com
[java-async-generator]: https://github.com/bsorrentino/java-async-generator
[Mermaid]: https://mermaid.js.org

[javadocs]: https://bsorrentino.github.io/langgraph4j/apidocs/index.html
[snapshots]: https://oss.sonatype.org/content/repositories/snapshots/org/bsc/langgraph4j/langgraph4j-jdk8/1.0-SNAPSHOT
[releases]: https://central.sonatype.com/search?q=a%3Alanggraph4j-parent

0 comments on commit 5b8109c

Please sign in to comment.