klyn.llm.LLMToolCallObserver.afterToolCall
method
public afterToolCall(call as ToolCall, result as String) as Void
Description

Called after a tool executed successfully.

Parameters
  • call Tool call requested by the provider.
  • result Text returned to the provider. ```klyn public override afterToolCall(call as ToolCall, result as String) as Void: print("done " + call.name) ```