17 lines
390 B
Python
17 lines
390 B
Python
"""data_analytics 插件本地工具集。
|
|
|
|
agent 看到这些工具时不带凭证参数,凭证由 organization 通过 ContextVar 注入。
|
|
"""
|
|
|
|
from .s3_list_objects import s3_list_objects
|
|
from .s3_peek import s3_peek
|
|
from .s3_get_object import s3_get_object
|
|
from .ray_submit import ray_submit
|
|
|
|
__all__ = [
|
|
"s3_list_objects",
|
|
"s3_peek",
|
|
"s3_get_object",
|
|
"ray_submit",
|
|
]
|