You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(The following patterns are mainly inspired by [Anthropic's Building effective agents][4] and [OpenAI's Orchestrating Agents][5].)
171
+
172
+
### Basic: Augmented LLM
173
+
174
+
**Augmented LLM** is an LLM enhanced with augmentations such as retrieval, tools, and memory. Our current models can actively use these capabilities—generating their own search queries, selecting appropriate tools, and determining what information to retain.
175
+
176
+
<palign="center">
177
+
<imgsrc="assets/patterns-augmented-llm.png">
178
+
</p>
179
+
180
+
**Example** (see [examples/patterns/augmented_llm.py](examples/patterns/augmented_llm.py) for a runnable example):
181
+
182
+
```python
183
+
from coagent.agents import ChatAgent, ModelClient, tool
0 commit comments