Interface IExecutePromptQueryParams
public interface IExecutePromptQueryParams
Describes the parameters needed to execute a prompt query, see
IPromptTypeService.executeQuery(IPromptServiceType, IExecutePromptQueryParams, Object, Object). .- Since:
- 8.5.0
-
Method Summary
Modifier and TypeMethodDescriptioncontext()Gets the context used during execution of a prompt query.Gets the data needed to execute the prompt query.
-
Method Details
-
context
IPromptExecutionContext context()Gets the context used during execution of a prompt query. Provides access to needed functionality such as storing binary data or replacing placeholders.- Returns:
- The execution context.
-
requestObject
IPromptQueryRequestObject requestObject()Gets the data needed to execute the prompt query. Will conform to the structure defined byhandler.computeQueryInput.- Returns:
- A map of request objects, with ony entry for each input parameter defined in the input descriptor.
-