19 lines
472 B
Python
19 lines
472 B
Python
from typing import Any
|
|
|
|
from app.tools.base import Tool
|
|
|
|
|
|
class WebFetchTool(Tool):
|
|
name = "web_fetch"
|
|
description = "Fetch a webpage and return simplified content."
|
|
|
|
async def run(self, payload: dict[str, Any]) -> dict[str, Any]:
|
|
url = str(payload.get("url", "")).strip()
|
|
return {
|
|
"tool": self.name,
|
|
"status": "stub",
|
|
"url": url,
|
|
"message": "Web fetch integration is not wired yet.",
|
|
}
|
|
|