basic_agent.py
1 """Basic Agent example with consolidated params.""" 2 from praisonaiagents import Agent 3 4 # Minimal agent with memory 5 agent = Agent( 6 instructions="You are a helpful assistant.", 7 memory=True, 8 ) 9 10 if __name__ == "__main__": 11 response = agent.chat("Hello!") 12 print(response)