Update Javadoc in Agent class to reflect changes in the interact method signature, now including an OllamaChatStreamObserver parameter for improved conversation handling.

This commit is contained in:
amithkoujalgi 2025-10-20 22:31:04 +05:30
parent fe43e87e1a
commit 7ce89a3e89
No known key found for this signature in database
GPG Key ID: E29A37746AF94B70

View File

@ -33,7 +33,7 @@ import lombok.*;
* *
* <ul> * <ul>
* <li>Instantiate an Agent via {@link #load(String)} for YAML-based configuration. * <li>Instantiate an Agent via {@link #load(String)} for YAML-based configuration.
* <li>Handle conversation turns via {@link #interact(String)}. * <li>Handle conversation turns via {@link #interact(String, OllamaChatStreamObserver)}.
* <li>Use {@link #runInteractive()} for an interactive console-based session. * <li>Use {@link #runInteractive()} for an interactive console-based session.
* </ul> * </ul>
*/ */