By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: Google’s Agent Development Kit for Java Adds Integration with LangChain4j
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > News > Google’s Agent Development Kit for Java Adds Integration with LangChain4j
News

Google’s Agent Development Kit for Java Adds Integration with LangChain4j

News Room
Last updated: 2025/09/28 at 9:26 AM
News Room Published 28 September 2025
Share
SHARE

The latest release of the Agent Development Kit for Java, version 0.2.0, marks a significant expansion of its capabilities through the integration with the LangChain4j LLM framework, which opens it up to all the large language models supported by the framework.

Before integrating LangChain4j, ADK for Java only supported two models, Google Gemini and Anthropic Claude. This contrasted with the Python ADK, which offered broader support via via LiteLLM. With LangChain4j, Java developers can now use model from OpenAI, Anthropic, Mistral, as well as all models supported by Ollama or Docker Model Runner, like Gemma, Qwen, Phi, and others.

Google developer relations engineer Guillaume Laforge, who is also a contributor to LangChain4j and one of the developers behind its integration into the ADK, explains that using LangChain4j makes it possible mixing models together in multi-agent scenarios. This can be achieved through agent tools, which allow one agent to use another like a tool.

Mixing different models in a multi-agent scenario is quite interesting, as you can use the best model for the job. Maybe you’ll need to use a super fast model to do a simple classification task to route requests depending on the ask, while you’ll use a beefier model for the main task that requires more advanced thinking (like a Gemini 2.5 thinking model).

Laforge also provides a basic implementation with a main agent powered by Claude and a tool agent using OpenAI to deliver weather information. Once you have the two agents instantiated, let’s call them weatherAgent and claudeModel, you can combine them by instantiating an agent as follows:


LlmAgent agent = LlmAgent.builder()
    .name("friendly-weather-app")
    .description("Friend agent that knows about the weather")
    .model(new LangChain4j(claudeModel, CLAUDE_3_7_SONNET_20250219))
    .instruction("""
        You are a friendly assistant.

        If asked about the weather forecast for a city,
        you MUST call the `weather-agent` function.
        """)
    .tools(AgentTool.create(weatherAgent))
    .build();

Besides LangChain4j integration, ADK 0.2.0 introduces a range of significant enhancements aimed at improving both tooling capabilities and agent performance. On the agent tool side, it adds support for creating FunctionTools from object instances, improves asynchronous tool operation, and provides finer programmatic control over agent execution. On the agent logic and memory side, it strengthens logic and memory handling through callback chaining and new memory management primitives offering more flexibility in controlling how agents store, retrieve, and process information.

Part of its broader Agent Development Kit, introduced earlier this year, the ADK for Java is still in its early stages. To start using ADK for Java documentation, head to the getting started guide, or fork Laforge’s template project from GitHub.

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article Artificial intelligence helps to break barriers for Spanish homeowner
Next Article Every PC should have these free diagnostic apps installed
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

Prime Video top 10 movies — here’s the 3 I’m adding to my watchlist right now
News
Freewell’s iPhone Pro Hybrid Filter Kit does just enough for me
News
How to Find Influencers and Creators for Your Next Campaign
Computing
Zoho Workplace vs Google Workspace Comparison 2025
News

You Might also Like

News

Prime Video top 10 movies — here’s the 3 I’m adding to my watchlist right now

7 Min Read
News

Freewell’s iPhone Pro Hybrid Filter Kit does just enough for me

9 Min Read
News

Zoho Workplace vs Google Workspace Comparison 2025

21 Min Read
News

Trump posts, then pulls bizarre AI video promoting MedBed conspiracy

2 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?