Skip to content

Commit d8744d2

Browse files
Enhance tool configuration docstring for clarity
1 parent 170fe6f commit d8744d2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

atomic_agents/lib/tools/base_tool.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@
66

77

88
class BaseToolConfig(BaseModel):
9+
"""
10+
Tool configuration class.
11+
12+
Attributes:
13+
title (Optional[str]): Override the title of the tool.
14+
description (Optional[str]): Override the description of the tool.
15+
"""
16+
917
title: Optional[str] = None
1018
description: Optional[str] = None
1119

0 commit comments

Comments
 (0)