19 lines
488 B
Python
19 lines
488 B
Python
from typing import Any
|
|
|
|
from app.tools.base import Tool
|
|
|
|
|
|
class AppleNotesTool(Tool):
|
|
name = "apple_notes"
|
|
description = "Create notes in Apple Notes through AppleScript."
|
|
|
|
async def run(self, payload: dict[str, Any]) -> dict[str, Any]:
|
|
title = str(payload.get("title", "")).strip()
|
|
return {
|
|
"tool": self.name,
|
|
"status": "stub",
|
|
"title": title,
|
|
"message": "Apple Notes integration is not wired yet.",
|
|
}
|
|
|