def react_agent_step(agent_output, available_tools):
"""
Parses agent_output for Action: <name> and Action Input: <input>.
Executes function from available_tools dict if present.
Return dict {"status": "continue"|"finished"|"error", "observation": str, "final_answer": str|None}
"""
# Your implementation here
pass