pull/498/head
Kye Gomez 7 months ago
parent 09838bd6f9
commit b7011ad553

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

@ -4,26 +4,6 @@ The `ToolAgent` class represents an intelligent agent capable of performing a sp
The primary objective of the `ToolAgent` class is to amplify the efficiency of developers and AI practitioners by simplifying the process of generating meaningful outputs that navigate the complexities of the model and tokenizer.
### Class Definition
The `ToolAgent` class has the following definition:
```python
class ToolAgent(BaseLLM):
def __init__(
self,
name: str,
description: str,
model: Any,
tokenizer: Any,
json_schema: Any,
*args,
**kwargs,
)
def run(self, task: str, *args, **kwargs)
def __call__(self, task: str, *args, **kwargs)
```
### Arguments
The `ToolAgent` class takes the following arguments:

@ -17,17 +17,7 @@ Below are visual graphs illustrating the hierarchical and tree structure of the
#### 1. Foundational Components: Models, Tools, Memory
```mermaid
graph TD;
Models --> Agents
Tools --> Agents
Memory --> Agents
subgraph Foundational_Components
Models
Tools
Memory
end
```
![Diagram](assets/img/agent_def.png)
#### 2. Agents and Their Interactions

Loading…
Cancel
Save