We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a155f15 commit c04335cCopy full SHA for c04335c
agentrun/integration/utils/tool.py
@@ -35,6 +35,7 @@
35
Set,
36
Tuple,
37
Type,
38
+ TYPE_CHECKING,
39
)
40
41
from pydantic import (
@@ -45,7 +46,9 @@
45
46
ValidationError,
47
48
-from agentrun.toolset import ToolSet
49
+if TYPE_CHECKING:
50
+ from agentrun.toolset import ToolSet
51
+
52
from agentrun.utils.log import logger
53
54
# Tool name constraints for external providers like OpenAI
agentrun/toolset/toolset.py
@@ -22,7 +22,6 @@
22
23
from agentrun.utils.model import BaseModel
24
25
-from .api.openapi import OpenAPI
26
from .model import (
27
MCPServerConfig,
28
SchemaType,
0 commit comments