mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-18 18:10:37 +08:00
Move the openai-agents SDK integration from core/agent/runners/openai_agents to _internal/agents/openai_agents to follow the internal implementation pattern.
13 lines
278 B
Python
13 lines
278 B
Python
"""AstrBot internal agents module.
|
|
|
|
This module contains internal agent implementations.
|
|
For public API, use astrbot.api.
|
|
"""
|
|
|
|
from .openai_agents import OpenAIAgentsRunner, astrbot_tool_to_agents_tool
|
|
|
|
__all__ = [
|
|
"OpenAIAgentsRunner",
|
|
"astrbot_tool_to_agents_tool",
|
|
]
|