Skip to content

Commit 88aa9de

Browse files
committed
checkstyle
1 parent c06c2e6 commit 88aa9de

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

foundation-models/openai/src/main/java/com/sap/ai/sdk/foundationmodels/openai/OpenAiFunctionCall.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ public Map<String, Object> getArgumentsAsMap() throws IllegalArgumentException {
4646
* tool.
4747
*
4848
* @param tool the function tool the arguments are for
49-
* @param <T> the type of the class
5049
* @return the parsed arguments as an object
51-
* @throws IllegalArgumentException if parsing fails
50+
* @param <T> the type of object accepted by the function tool
51+
* @throws IllegalArgumentException if parsing arguments fails
5252
* @since 1.7.0
5353
*/
5454
@Nonnull

foundation-models/openai/src/main/java/com/sap/ai/sdk/foundationmodels/openai/OpenAiFunctionTool.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public class OpenAiFunctionTool implements OpenAiTool {
5252
*
5353
* @param name the name of the function
5454
* @param requestModel the model class for the function request
55+
* @param <T> the type of the request model
5556
*/
5657
public <T> OpenAiFunctionTool(@Nonnull final String name, @Nonnull final Class<T> requestModel) {
5758
this(name, requestModel, null, null);

0 commit comments

Comments
 (0)