fix code formatting

This commit is contained in:
Christian Tzolov
2024-03-15 12:27:55 +01:00
parent 7c6bbef3ec
commit 6638efe285
2 changed files with 4 additions and 3 deletions

View File

@@ -16,7 +16,8 @@
package org.springframework.ai.document;
/**
* Converts the Document text and metadata into an AI, prompt-friendly text representation.
* Converts the Document text and metadata into an AI, prompt-friendly text
* representation.
*
* @author Christian Tzolov
*/

View File

@@ -18,8 +18,8 @@ package org.springframework.ai.model;
import reactor.core.publisher.Flux;
/**
* The StreamingModelClient interface provides a generic API for invoking an AI models with
* streaming response. It abstracts the process of sending requests and receiving a
* The StreamingModelClient interface provides a generic API for invoking an AI models
* with streaming response. It abstracts the process of sending requests and receiving a
* streaming responses. The interface uses Java generics to accommodate different types of
* requests and responses, enhancing flexibility and adaptability across different AI
* model implementations.