Skip to content

Commit 806f5c4

Browse files
committed
Resolve javadoc issues
1 parent 6a72956 commit 806f5c4

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

spring-ai-core/src/main/java/org/springframework/ai/document/Document.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
/**
3434
* A document is a container for the content and metadata of a document. It also contains
3535
* the document's unique ID and an optional embedding.
36-
* <p>
3736
*/
3837
@JsonIgnoreProperties({ "contentFormatter" })
3938
public class Document {

spring-ai-spring-boot-autoconfigure/src/main/java/org/springframework/ai/autoconfigure/common/function/SpringAiFunctionAnnotationManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void setApplicationContext(@NonNull ApplicationContext applicationContext
4747
}
4848

4949
/**
50-
* @return a list of all the {@link java.util.Function}s annotated with
50+
* @return a list of all the java.util.Functions annotated with
5151
* {@link SpringAiFunction}.
5252
*/
5353
public List<ToolFunctionCallback> getAnnotatedToolFunctionCallbacks() {
@@ -79,8 +79,8 @@ public List<ToolFunctionCallback> getAnnotatedToolFunctionCallbacks() {
7979
/**
8080
* Note that the underlying function is responsible for converting the output into
8181
* format that can be consumed by the Model. The default implementation converts the
82-
* output into String before sending it to the Model. Provide a custom Function<O,
83-
* String> responseConverter implementation to override this.
82+
* output into String before sending it to the Model. Provide a custom function
83+
* responseConverter implementation to override this.
8484
*
8585
*/
8686
public static class SpringAiFunctionToolFunctionCallback<I, O> extends AbstractToolFunctionCallback<I, O> {

0 commit comments

Comments
 (0)