Refactoring and add semantic cache

This commit is contained in:
shahondin1624
2026-02-15 17:09:55 +01:00
parent a717b21d26
commit a8b82e93c1
9 changed files with 62 additions and 66 deletions

View File

@@ -15,5 +15,5 @@ public interface QueryValidator {
* @param arguments The tool arguments to validate.
* @return A {@link Result} indicating success (Ok(null)) or failure (Err(exception)).
*/
Result<Void, Exception> validate(McpSchema.JsonSchema schema, Map<String, Object> arguments);
Result<Void, Exception> validate(final McpSchema.JsonSchema schema, final Map<String, Object> arguments);
}