Fix sample code indent

This commit is contained in:
wellCh4n
2025-01-10 11:24:48 +08:00
committed by Ilayaperumal Gopinathan
parent d66d85bb69
commit cd5684a66e

View File

@@ -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();
}
}