fix javadoc erros
This commit is contained in:
2
pom.xml
2
pom.xml
@@ -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>
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user