langchain4j-tool-function-calling-patterns
giuseppe-trisciuoglio/developer-kit
Annotate Java methods as LLM-callable tools, register with AiServices, and handle execution errors in LangChain4j agents.
What is langchain4j-tool-function-calling-patterns?
Provides patterns for exposing Java methods as tools to AI agents using @Tool and @P annotations, registering them with AiServices, and managing tool execution, errors, and timeouts. Use when building LangChain4j applications that need LLMs to call external APIs, databases, or business logic.
- Annotate methods with @Tool and @P to expose them as callable functions to LLMs
- Register tool instances with AiServices.builder().tools() for chat models
- Handle tool execution errors, hallucinated tool names, and invalid arguments gracefully
- Configure concurrent tool execution and timeouts for external service calls
- Support dynamic tool provisioning based on user context via ToolProvider
- Validate tool parameters and return results that LLMs can interpret
How to install langchain4j-tool-function-calling-patterns
npx skills add https://github.com/giuseppe-trisciuoglio/developer-kit --skill langchain4j-tool-function-calling-patterns- LangChain4j library installed and configured
- A chat model (e.g., OpenAI, local LLM) integrated with AiServices
- Java 11+ with support for annotations and functional interfaces
How to use langchain4j-tool-function-calling-patterns
- 1.Create a tool class with methods annotated @Tool, providing descriptions and @P parameter annotations
- 2.Register tool instances with AiServices.builder().tools(toolInstance)
- 3.Test tool invocation by sending prompts that trigger tool usage
- 4.Add error handlers via .toolExecutionErrorHandler() and .hallucinatedToolNameStrategy()
- 5.Enable concurrent execution with .executeToolsConcurrently() and set timeouts with .toolExecutionTimeout()
Use cases
- Building AI agents that query weather APIs, databases, or stock data
- Defining function specifications for LLM tool use with clear parameter descriptions
- Integrating external APIs (email, payment, CRM) with LLM-driven workflows
- Handling tool execution failures without exposing stack traces to users
- Implementing permission checks and audit logging for tool calls
- Java developers building LangChain4j AI agents
- Backend engineers integrating LLMs with business systems
- AI application architects designing tool-calling workflows
- Teams needing safe error handling and timeout management for external tool calls
langchain4j-tool-function-calling-patterns FAQ
Annotate the method with @Tool("description") and each parameter with @P("parameter description"). Create an instance and register it with AiServices.builder().tools(instance).
By default, an error is returned. Use .hallucinatedToolNameStrategy() to define custom behavior, such as returning a safe error message instead of failing.
Set .toolExecutionTimeout(Duration.ofSeconds(N)) on the AiServices builder to automatically cancel long-running tool calls.
Yes, enable .executeToolsConcurrently(Executors.newFixedThreadPool(N)) to run independent tool calls concurrently.
Use .toolExecutionErrorHandler() to catch exceptions and return user-friendly error messages without exposing stack traces.
Full instructions (SKILL.md)
Source of truth, from giuseppe-trisciuoglio/developer-kit.
name: langchain4j-tool-function-calling-patterns description: "Provides and generates LangChain4j tool and function calling patterns: annotates methods as tools with @Tool, configures tool executors, registers tools with AiServices, validates tool parameters, and handles tool execution errors. Use when building AI agents that call tools, define function specifications, manage tool responses, or integrate external APIs with LLM-driven applications." allowed-tools: Read, Write, Edit, Bash, Glob, Grep, WebFetch
LangChain4j Tool & Function Calling Patterns
Provides patterns for annotating methods as tools, configuring tool executors, registering tools with AI services, validating parameters, and handling tool execution errors in LangChain4j applications.
Overview
LangChain4j uses the @Tool annotation to expose Java methods as callable functions for AI agents. The AiServices builder registers tools with a chat model, enabling LLMs to perform actions beyond text generation: database queries, API calls, calculations, and business system integrations. Parameters use @P for descriptions that guide the LLM.
When to Use
- Building AI agents that call external tools (weather, stocks, database queries)
- Defining function specifications for LLM tool use (
@Tool,@Pannotations) - Registering and managing tool sets with
AiServices.builder().tools() - Handling tool execution errors, timeouts, and hallucinated tool names
- Implementing context-aware tools that inject user state via
@ToolMemoryId - Configuring dynamic tool providers for large or conditional tool sets
Instructions
1. Annotate Methods with @Tool
Define a tool class with methods annotated @Tool. Provide a description as the first parameter. Use @P for each parameter description.
public class WeatherTools {
private final WeatherService weatherService;
public WeatherTools(WeatherService weatherService) {
this.weatherService = weatherService;
}
@Tool("Get current weather for a city")
public String getWeather(
@P("City name") String city,
@P("Temperature unit: celsius or fahrenheit") String unit) {
return weatherService.getWeather(city, unit);
}
}
Validate: Create an instance and confirm the class loads without errors.
2. Register Tools with AiServices
Use AiServices.builder() to register tool instances with the chat model.
MathAssistant assistant = AiServices.builder(MathAssistant.class)
.chatModel(chatModel)
.tools(new Calculator(), new WeatherTools(weatherService))
.build();
Validate: Call assistant.chat("What is 2 + 2?") and verify the LLM responds without throwing.
3. Test Tool Invocation End-to-End
Send a prompt that triggers tool usage and verify the tool executes and its result is incorporated.
String response = assistant.chat("What is the weather in Rome?");
System.out.println(response);
Validate: Check logs for tool invocation and confirm the response uses the tool output.
4. Handle Tool Execution Errors
Add error handlers to gracefully manage failures without exposing stack traces.
AiServices.builder(Assistant.class)
.chatModel(chatModel)
.tools(new ExternalServiceTools())
.toolExecutionErrorHandler((request, exception) -> {
logger.error("Tool '{}' failed: {}", request.name(), exception.getMessage());
return "An error occurred while processing your request";
})
.hallucinatedToolNameStrategy(request ->
ToolExecutionResultMessage.from(request,
"Error: tool '" + request.name() + "' does not exist"))
.toolArgumentsErrorHandler((error, context) ->
ToolErrorHandlerResult.text("Invalid arguments: " + error.getMessage()))
.build();
Validate: Trigger an error condition and confirm the LLM receives a safe error message.
5. Optimize for Performance and Scale
Enable concurrent tool execution and set timeouts for long-running tools.
AiServices.builder(Assistant.class)
.chatModel(chatModel)
.tools(new DbTools(), new HttpTools())
.executeToolsConcurrently(Executors.newFixedThreadPool(5))
.toolExecutionTimeout(Duration.ofSeconds(30))
.build();
Validate: Run concurrent requests and confirm no thread contention or deadlocks.
Examples
Calculator Tool with Full Class
public class Calculator {
@Tool("Perform basic arithmetic")
public double calculate(
@P("Expression like 2+2 or 10*5") String expression) {
// Parse and evaluate expression
return eval(expression);
}
}
Assistant assistant = AiServices.builder(Assistant.class)
.chatModel(ChatModel.builder()
.apiKey(System.getenv("API_KEY"))
.model("gpt-4o")
.build())
.tools(new Calculator())
.build();
Immediate Return Tool (No LLM Response)
@Tool(value = "Send email notification", returnBehavior = ReturnBehavior.IMMEDIATELY)
public void sendEmail(@P("Recipient email address") String to,
@P("Email subject") String subject,
@P("Email body") String body) {
emailService.send(to, subject, body);
}
Dynamic Tool Provider
ToolProvider provider = request -> {
if (request.userContext().contains("admin")) {
return List.of(new AdminTools());
}
return List.of(new UserTools());
};
AiServices.builder(Assistant.class)
.chatModel(chatModel)
.toolProvider(provider)
.build();
Best Practices
- Descriptive
@Toolnames: Use imperative verbs ("Get", "Send", "Calculate") with clear scope - Precise
@Pdescriptions: Include format, constraints, and valid values — vague descriptions cause incorrect LLM calls - Safe error handling: Never expose stack traces; return user-friendly error strings
- Timeout configuration: Always set
.toolExecutionTimeout()for external service calls - Concurrent execution: Enable
.executeToolsConcurrently()when tools are independent - Input validation: Validate parameters inside the tool method; return descriptive errors
- Permission checks: Perform authorization inside the tool, not at the AI service level
- Audit logging: Log tool name, parameters, and execution result for debugging and compliance
Common Issues and Solutions
| Issue | Solution |
|---|---|
| LLM calls non-existent tool | Add .hallucinatedToolNameStrategy() returning a safe error message |
| Tools receive wrong parameters | Refine @P descriptions; add .toolArgumentsErrorHandler() |
| Tool execution hangs | Set .toolExecutionTimeout(Duration.ofSeconds(N)) |
| Rate limit errors from external API | Add retry logic or rate limiter inside the tool method |
| LLM ignores tool output | Ensure the tool returns a string the LLM can interpret |
See references/error-handling.md for resilience patterns and references/core-patterns.md for parameter and return type details.
Quick Reference
| Annotation / API | Purpose |
|---|---|
@Tool | Marks a method as a callable tool |
@P | Describes a tool parameter for the LLM |
@ToolMemoryId | Injects conversation/user ID into the tool |
AiServices.builder() | Creates AI service with registered tools |
ReturnBehavior.IMMEDIATELY | Execute tool without waiting for LLM response |
ToolProvider | Dynamic tool provisioning based on context |
executeToolsConcurrently() | Run independent tool calls in parallel |
toolExecutionTimeout() | Timeout for individual tool calls |
Constraints and Warnings
- Sensitive data: Never pass API keys, passwords, or credentials in
@Toolor@Pdescriptions - Side effects: Tools that modify data should warn in their description; AI models may call them multiple times
- Large tool sets: Excessive tools confuse LLM models — use
ToolProviderfor conditional registration - Blocking operations: Tools should not perform long synchronous I/O without timeout configuration
- Stack trace exposure: Always route exceptions through error handlers that return safe strings
- Parameter precision: Vague
@Pdescriptions directly cause incorrect tool calls — be specific about formats and constraints - Concurrent safety: Ensure tool classes are stateless or thread-safe when using
executeToolsConcurrently()
Related Skills
langchain4j-ai-services-patterns— High-level AI service configurationlangchain4j-rag-implementation-patterns— RAG retrieval with tool integrationlangchain4j-spring-boot-integration— Tool registration in Spring Boot applications
References
- references/setup-configuration.md — Maven setup, chat model configuration, first tool registration
- references/core-patterns.md — Basic tool definition, complex parameters, return types
- references/advanced-features.md — Memory context, dynamic tool providers, streaming, immediate return
- references/error-handling.md — Error handlers, retry logic, monitoring
- references/integration-examples.md — Database, REST API, and context-aware tool examples
Related skills
More from giuseppe-trisciuoglio/developer-kit and the wider catalog.

langchain4j-vector-stores-configuration
Configure LangChain4J vector stores for RAG applications with PostgreSQL, Pinecone, MongoDB, Milvus, and Neo4j.

learn
Provides autonomous project pattern learning by analyzing the codebase to discover development conventions, architectural patterns, and coding standards, then generates project rule files in .claude/rules/. Use when user asks to "learn from project", "extract project rules", "analyze codebase conventions", "discover project patterns", or wants to auto-generate Claude Code rules for the current project.

memory-md-management
Provides comprehensive memory file management capabilities including auditing, quality assessment, and targeted improvements for files such as CLAUDE.md. Use when user asks to check, audit, update, improve, fix, maintain, or validate project memory files. Also triggers for "project memory optimization", "CLAUDE.md quality check", "documentation review", or when a project memory file needs to be created from scratch. This skill scans memory files, evaluates quality against standardized criteria, outputs detailed quality reports with scores and recommendations, then makes targeted updates with user approval.

nestjs
NestJS framework patterns with Drizzle ORM for building scalable REST/GraphQL APIs and microservices.

nestjs-best-practices
Provides comprehensive NestJS best practices including modular architecture, dependency injection scoping, exception filters, DTO validation with class-validator, and Drizzle ORM integration. Use when designing NestJS modules, implementing providers, creating exception filters, validating DTOs, or integrating Drizzle ORM within NestJS applications.

nestjs-code-review
Provides comprehensive code review capability for NestJS applications, analyzing controllers, services, modules, guards, interceptors, pipes, dependency injection, and database integration patterns. Use when reviewing NestJS code changes, before merging pull requests, after implementing new features, or for architecture validation. Triggers on "review NestJS code", "NestJS code review", "check my NestJS controller/service".