diff --git a/spring-ai-core/src/main/java/org/springframework/ai/document/Document.java b/spring-ai-core/src/main/java/org/springframework/ai/document/Document.java index 078750af1..0db6f29ac 100644 --- a/spring-ai-core/src/main/java/org/springframework/ai/document/Document.java +++ b/spring-ai-core/src/main/java/org/springframework/ai/document/Document.java @@ -33,7 +33,6 @@ import org.springframework.util.Assert; /** * A document is a container for the content and metadata of a document. It also contains * the document's unique ID and an optional embedding. - *

*/ @JsonIgnoreProperties({ "contentFormatter" }) public class Document { diff --git a/spring-ai-spring-boot-autoconfigure/src/main/java/org/springframework/ai/autoconfigure/common/function/SpringAiFunctionAnnotationManager.java b/spring-ai-spring-boot-autoconfigure/src/main/java/org/springframework/ai/autoconfigure/common/function/SpringAiFunctionAnnotationManager.java index c85e297d6..a8f89fb8c 100644 --- a/spring-ai-spring-boot-autoconfigure/src/main/java/org/springframework/ai/autoconfigure/common/function/SpringAiFunctionAnnotationManager.java +++ b/spring-ai-spring-boot-autoconfigure/src/main/java/org/springframework/ai/autoconfigure/common/function/SpringAiFunctionAnnotationManager.java @@ -47,7 +47,7 @@ public class SpringAiFunctionAnnotationManager implements ApplicationContextAwar } /** - * @return a list of all the {@link java.util.Function}s annotated with + * @return a list of all the java.util.Functions annotated with * {@link SpringAiFunction}. */ public List getAnnotatedToolFunctionCallbacks() { @@ -79,8 +79,8 @@ public class SpringAiFunctionAnnotationManager implements ApplicationContextAwar /** * Note that the underlying function is responsible for converting the output into * format that can be consumed by the Model. The default implementation converts the - * output into String before sending it to the Model. Provide a custom Function responseConverter implementation to override this. + * output into String before sending it to the Model. Provide a custom function + * responseConverter implementation to override this. * */ public static class SpringAiFunctionToolFunctionCallback extends AbstractToolFunctionCallback {