| 12345678910111213141516171819 |
- """创建视频发现运行。"""
- from __future__ import annotations
- from functools import wraps
- from typing import Any
- from agents.find_agent.support.video_discovery import (
- create_video_discovery_run as _create_video_discovery_run,
- )
- from supply_agent.tools import tool
- @tool
- @wraps(
- _create_video_discovery_run,
- assigned=("__name__", "__qualname__", "__doc__", "__annotations__"),
- )
- def create_video_discovery_run(*args: Any, **kwargs: Any) -> str:
- return _create_video_discovery_run(*args, **kwargs)
|