public interface IAIWebClient
AI Web client interface. This interface enables to substitute different AI language models. Classes that implement this interface are supposed to be used along with `SlidesAIAgent`.
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
callChat(java.lang.String instruction)
Sends a chat instruction to the AI model using a provided `HttpConnection` instance and return response message to the given instruction.
|
IAIConversation |
createConversation()
Creates a conversation instance.
|
java.lang.String callChat(java.lang.String instruction)
Sends a chat instruction to the AI model using a provided `HttpConnection` instance and return response message to the given instruction.
instruction - The instruction or message to be processed by the AI model.IAIConversation createConversation()
Creates a conversation instance. Unlike regular AI calls, conversations retain the entire context.
IAIConversation instance.Copyright © 2004-2025 Aspose Pty Ltd. All Rights Reserved.