Skip to content

Commit cd5684a

Browse files
wellCh4nilayaperumalg
authored andcommitted
Fix sample code indent
1 parent d66d85b commit cd5684a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/functions/openai-chat-functions.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)