9ab652641d
* feat: 支持配置工具调用超时时间并适配 ModelScope 的 MCP Server 配置。 closes: #2939 * fix: Remove unnecessary blank lines in _quick_test_mcp_connection function
13 lines
375 B
Python
13 lines
375 B
Python
from dataclasses import dataclass
|
|
from astrbot.core.provider import Provider
|
|
from astrbot.core.provider.entities import ProviderRequest
|
|
|
|
|
|
@dataclass
|
|
class AstrAgentContext:
|
|
provider: Provider
|
|
first_provider_request: ProviderRequest
|
|
curr_provider_request: ProviderRequest
|
|
streaming: bool
|
|
tool_call_timeout: int = 60 # Default tool call timeout in seconds
|