| 12345678910111213141516171819 |
- """获取抖音账号粉丝画像。"""
- from __future__ import annotations
- from functools import wraps
- from typing import Any
- from agents.find_agent.support.portrait import (
- get_account_fans_portrait as _get_account_fans_portrait,
- )
- from supply_agent.tools import tool
- @tool
- @wraps(
- _get_account_fans_portrait,
- assigned=("__name__", "__qualname__", "__doc__", "__annotations__"),
- )
- async def get_account_fans_portrait(*args: Any, **kwargs: Any) -> str:
- return await _get_account_fans_portrait(*args, **kwargs)
|