import osfrom agno.agent import Agentfrom agno.tools.slack import SlackToolsslack_tools = SlackTools()agent = Agent(tools=[slack_tools], show_tool_calls=True)# 示例 1:向 Slack 频道发送消息agent.print_response("Send a message 'Hello from Agno!' to the channel #general", markdown=True)# 示例 2:列出 Slack 工作区中的所有频道agent.print_response("List all channels in our Slack workspace", markdown=True)# 示例 3:通过频道 ID 获取特定频道的消息历史记录agent.print_response("Get the last 10 messages from the channel 1231241", markdown=True)