Skip to content

Commit 944715a

Browse files
authored
better docstring to match book text (#114)
1 parent 1caed0d commit 944715a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/llm_agents_from_scratch/agent/llm_agent.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ class LLMAgent:
3232
3333
Attributes:
3434
llm: The backbone LLM
35-
tools_registry: The tools the LLM agent can use represented as a dict.
35+
tools_registry: The tools the LLM agent can equip the LLM with,
36+
represented as a dict.
3637
logger: LLMAgent logger.
3738
"""
3839

@@ -45,8 +46,8 @@ def __init__(
4546
4647
Args:
4748
llm (BaseLLM): The backbone LLM of the LLM agent.
48-
tools (list[BaseTool], optional): The set of tools for the LLM
49-
agent. Defaults to None.
49+
tools (list[BaseTool], optional): The set of tools with which the
50+
LLM can be equipped. Defaults to None.
5051
5152
"""
5253
self.llm = llm

0 commit comments

Comments
 (0)