From 160851355c1ef3f2a2ed8345fd36728c49f884e3 Mon Sep 17 00:00:00 2001 From: James Braza Date: Thu, 2 Jan 2025 15:49:20 -0800 Subject: [PATCH] Removed incorrect `SimpleAgent` description in docstring (#193) --- ldp/agent/simple_agent.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ldp/agent/simple_agent.py b/ldp/agent/simple_agent.py index cfeeede..6856888 100644 --- a/ldp/agent/simple_agent.py +++ b/ldp/agent/simple_agent.py @@ -73,10 +73,7 @@ def get_next_state( class SimpleAgent(BaseModel, Agent[SimpleAgentState]): - """Simple agent that can pick and invoke tools with a language model. - - It does not have a system prompt because it's meant to be lightweight. - """ + """Simple agent that can pick and invoke tools with a language model.""" # Freeze to ensure the only mutation happens in either the agent state (which is # passed around) or in the internal Ops