diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/functions/openai-chat-functions.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/functions/openai-chat-functions.adoc index 22dbc9e4359..bef52710a89 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/functions/openai-chat-functions.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/functions/openai-chat-functions.adoc @@ -122,11 +122,11 @@ static class Config { @Bean public FunctionCallback weatherFunctionInfo() { - return FunctionCallback.builder() - .function("CurrentWeather", new MockWeatherService()) // (1) function name and instance - .description("Get the weather in location") // (2) function description - .inputType(MockWeatherService.Request.class) // (3) function input type - .build(); + return FunctionCallback.builder() + .function("CurrentWeather", new MockWeatherService()) // (1) function name and instance + .description("Get the weather in location") // (2) function description + .inputType(MockWeatherService.Request.class) // (3) function input type + .build(); } }