from agno.agent import Agentfrom agno.models.openai import OpenAIChatagent = Agent( model=OpenAIChat(id="gpt-4o-mini"), # Initialize the session state with a variable session_state={"user_name": "John"}, # You can use variables from the session state in the instructions instructions="Users name is {user_name}", show_tool_calls=True, add_state_in_messages=True, markdown=True,)agent.print_response("What is my name?", stream=True)