File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/functions Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -122,11 +122,11 @@ static class Config {
122122 @Bean
123123 public FunctionCallback weatherFunctionInfo() {
124124
125- return FunctionCallback.builder()
126- .function("CurrentWeather", new MockWeatherService()) // (1) function name and instance
127- .description("Get the weather in location") // (2) function description
128- .inputType(MockWeatherService.Request.class) // (3) function input type
129- .build();
125+ return FunctionCallback.builder()
126+ .function("CurrentWeather", new MockWeatherService()) // (1) function name and instance
127+ .description("Get the weather in location") // (2) function description
128+ .inputType(MockWeatherService.Request.class) // (3) function input type
129+ .build();
130130 }
131131
132132}
You can’t perform that action at this time.
0 commit comments