![]() |
Raymond Maarloeve
|
Represents a decision that waits for the LLM server to be ready. More...
Public Member Functions | |
| string | DebugInfo () |
| Provides debug information about the decision. | |
| void | Start () |
| Called when the decision starts. Currently, no implementation is provided. | |
| void | Finish () |
| Called when the decision finishes. Currently, no implementation is provided. | |
| bool | Tick () |
| Evaluates the decision logic. | |
| void | Start () |
| Initializes the decision action. Implementation should begin execution of the decision logic. | |
| void | Finish () |
| Finalizes the decision action. Implementation should clean up any resources or state related to the decision. | |
| bool | Tick () |
| Executes the decision logic and determines the outcome. | |
| string | DebugInfo () |
| Provides debugging information for the decision. | |
Properties | |
| string | PrettyName [get] |
| Gets a pretty name for the decision, sourced from IdleDecision. | |
Properties inherited from IDecision | |
| string | PrettyName [get] |
| Gets the human-readable description of the decision. | |
Represents a decision that waits for the LLM server to be ready.
| string WaitForLLMReadyDecision.DebugInfo | ( | ) |
Provides debug information about the decision.
Implements IDecision.
| void WaitForLLMReadyDecision.Finish | ( | ) |
Called when the decision finishes. Currently, no implementation is provided.
Implements IDecision.
| void WaitForLLMReadyDecision.Start | ( | ) |
Called when the decision starts. Currently, no implementation is provided.
Implements IDecision.
| bool WaitForLLMReadyDecision.Tick | ( | ) |
Evaluates the decision logic.
true if the LLM server is not ready; otherwise, false. Implements IDecision.
|
get |
Gets a pretty name for the decision, sourced from IdleDecision.
Implements IDecision.