fix javadoc erros

This commit is contained in:
Christian Tzolov
2024-09-05 21:58:09 +02:00
parent 28276d14a4
commit da5ad96d57
3 changed files with 7 additions and 6 deletions

View File

@@ -424,7 +424,7 @@
<overview>${project.basedir}/spring-ai-docs/src/main/javadoc/overview.html</overview>
<detectJavaApiLink>false</detectJavaApiLink>
<doclint>none</doclint>
<!-- <doclint>all,-missing</doclint>-->
<doclint>all,-missing</doclint>
<quiet>true</quiet>
</configuration>
<executions>

View File

@@ -15,15 +15,16 @@
*/
package org.springframework.ai.chat.client.advisor.api;
import org.springframework.ai.chat.client.advisor.DefaultAroundAdvisorChain;
/**
* Parent advisor interface for all advisors.
*
* @author Christian Tzolov
* @since 1.0.0
* @see {@link RequestAdvisor}, {@link ResponseAdvisor}, {@link CallAroundAdvisor},
* {@link StreamAroundAdvisor}, {@link DefaultAroundAdvisorChain}
* @see RequestAdvisor
* @see ResponseAdvisor
* @see CallAroundAdvisor
* @see StreamAroundAdvisor
* @see AroundAdvisorChain
*/
public interface Advisor {

View File

@@ -28,7 +28,7 @@ import org.springframework.ai.chat.model.ChatResponse;
public interface CallAroundAdvisor extends Advisor {
/**
* Around advice that wraps the {@link ChatModel#call(Prompt)} method.
* Around advice that wraps the ChatModel#call(Prompt) method.
* @param advisedRequest the advised request
* @param adviceContext the advice context
* @param chain the advisor chain