mirror of
https://github.com/yuruotong1/autoMate.git
synced 2026-03-22 13:07:17 +08:00
13 lines
390 B
Python
13 lines
390 B
Python
import os
|
|
from langchain.tools import BaseTool
|
|
|
|
class FindDesktopPath(BaseTool):
|
|
name = "上传文档到飞书"
|
|
description = "上传文档到飞书"
|
|
|
|
# args_schema = None
|
|
|
|
def _run(self):
|
|
url = "https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal"
|
|
desktop_path = os.path.join(os.path.expanduser("~"), "Desktop")
|
|
return desktop_path |