File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
spring-ai-client-chat/src/main/java/org/springframework/ai/chat Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 45
45
46
46
/**
47
47
* Client to perform stateless requests to an AI Model, using a fluent API.
48
- *
48
+ * <p>
49
49
* Use {@link ChatClient#builder(ChatModel)} to prepare an instance.
50
50
*
51
51
* @author Mark Pollack
@@ -203,8 +203,8 @@ interface StreamPromptResponseSpec {
203
203
interface ChatClientRequestSpec {
204
204
205
205
/**
206
- * Return a {@code ChatClient.Builder} to create a new {@code ChatClient} whose
207
- * settings are replicated from this {@code ChatClientRequest}.
206
+ * Return a {@link ChatClient.Builder} to create a new {@link ChatClient} whose
207
+ * settings are replicated from this {@link ChatClientRequest}.
208
208
*/
209
209
Builder mutate ();
210
210
Original file line number Diff line number Diff line change @@ -128,8 +128,8 @@ public ChatClientRequestSpec prompt(Prompt prompt) {
128
128
}
129
129
130
130
/**
131
- * Return a {@code ChatClient2Builder } to create a new {@code ChatClient} whose
132
- * settings are replicated from this {@code ChatClientRequest}.
131
+ * Return a {@link ChatClient.Builder } to create a new {@link ChatClient} whose
132
+ * settings are replicated from this {@link ChatClientRequest}.
133
133
*/
134
134
@ Override
135
135
public Builder mutate () {
@@ -706,8 +706,8 @@ public TemplateRenderer getTemplateRenderer() {
706
706
}
707
707
708
708
/**
709
- * Return a {@code ChatClient2Builder } to create a new {@code ChatClient2 } whose
710
- * settings are replicated from this {@code ChatClientRequest}.
709
+ * Return a {@link ChatClient.Builder } to create a new {@link ChatClient } whose
710
+ * settings are replicated from this {@link ChatClientRequest}.
711
711
*/
712
712
public Builder mutate () {
713
713
DefaultChatClientBuilder builder = (DefaultChatClientBuilder ) ChatClient
Original file line number Diff line number Diff line change 42
42
43
43
/**
44
44
* DefaultChatClientBuilder is a builder class for creating a ChatClient.
45
- *
45
+ * <p>
46
46
* It provides methods to set default values for various properties of the ChatClient.
47
47
*
48
48
* @author Mark Pollack
Original file line number Diff line number Diff line change 19
19
* AI generative model domain. This package extends the core domain defined in
20
20
* org.sf.ai.generative, providing implementations specific to chat-based generative AI
21
21
* interactions.
22
- *
22
+ * <p>
23
23
* In line with Domain-Driven Design principles, this package includes implementations of
24
24
* entities and value objects specific to the chat context, such as ChatPrompt and
25
25
* ChatResponse, adhering to the ubiquitous language of chat interactions in AI models.
26
- *
26
+ * <p>
27
27
* This bounded context is designed to encapsulate all aspects of chat-based AI
28
28
* functionalities, maintaining a clear boundary from other contexts within the AI domain.
29
29
*/
You can’t perform that action at this time.
0 commit comments