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 1caed0d commit 944715aCopy full SHA for 944715a
src/llm_agents_from_scratch/agent/llm_agent.py
@@ -32,7 +32,8 @@ class LLMAgent:
32
33
Attributes:
34
llm: The backbone LLM
35
- tools_registry: The tools the LLM agent can use represented as a dict.
+ tools_registry: The tools the LLM agent can equip the LLM with,
36
+ represented as a dict.
37
logger: LLMAgent logger.
38
"""
39
@@ -45,8 +46,8 @@ def __init__(
45
46
47
Args:
48
llm (BaseLLM): The backbone LLM of the LLM agent.
- tools (list[BaseTool], optional): The set of tools for the LLM
49
- agent. Defaults to None.
+ tools (list[BaseTool], optional): The set of tools with which the
50
+ LLM can be equipped. Defaults to None.
51
52
53
self.llm = llm
0 commit comments