memory_validate_tool
Validate stored memories by adjusting confidence scores based on application success, promoting reliable ones to golden rules for improved AI assistant performance.
Instructions
Validate a memory and adjust its confidence score.
Adjusts confidence based on whether the memory was useful:
Success: confidence += adjustment (max 1.0)
Failure: confidence -= adjustment * 1.5 (min 0.0)
Automatically promotes to GOLDEN_RULE when confidence reaches 0.9.
Args: memory_id: ID of the memory to validate success: Whether the memory application was successful adjustment: Base confidence adjustment (default: 0.1)
Returns: Result with old/new confidence, promotion status, or error
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| memory_id | Yes | ||
| success | Yes | ||
| adjustment | No |