from praisonaiagents import Agentfrom praisonaiagents.config import TemplateConfigagent = Agent( name="Custom Agent", instructions="You are a helpful assistant", templates=TemplateConfig( system="You are an expert in {domain}.", prompt="User query: {input}", response="Provide a detailed response." ))
from praisonaiagents import Agentfrom praisonaiagents.config import TemplateConfigagent = Agent( name="Legal Expert", instructions="Legal analysis", templates=TemplateConfig( system="""You are an expert legal analyst. Always cite relevant laws and precedents. Be precise and thorough in your analysis.""" ))