Prompt Condition
data class PromptCondition(val name: String, val prompt: (context: OperationContext) -> String, val llm: LlmCall) : Condition
Prompt an LLM to evaluate a condition. Evaluating prompt conditions is expensive, so we need to consider efficiency here.
Parameters
name
name of the condition
prompt
the prompt to evaluate. Typically created from Blackboard state from the ProcessContext.