Currently AgentChat support `Console(team.run(...))` to pretty print a run. Would be REALLY cool to have a similar function `Studio(team)` to pop up a browser window with the team ready to go. ```python agent = AssistantAgent(...) team = RoundRobinGroupChat([agent], termination_condition=...) await Studio(team, port=8080) ```