Package org.eclnt.ccee.prompting
Interface IPromptingTool
- All Known Implementing Classes:
PromptingTool,PromptingToolsAggregation
public interface IPromptingTool
Tool that cab be added to the LLM processing. The tool on the one hand has to
define its meta data (which functions, which parameters, ...) and on the
other hand has to provide the runtime interface to process tool calls.
-
Method Summary
Modifier and TypeMethodDescriptionGet actual runtime tool processor for call backs.Get meta data for the tool.
-
Method Details
-
getToolDef
PromptingToolDef getToolDef()Get meta data for the tool. -
getToolCallBack
IPromptingToolCallBack getToolCallBack()Get actual runtime tool processor for call backs.
-