import asyncio from metagpt.roles.di.data_interpreter import DataInterpreter async def main(requirement: str = ""): di = DataInterpreter() await di.run(requirement) if __name__ == "__main__": requirement = "Solve this math problem: The greatest common divisor of positive integers m and n is 6. The least common multiple of m and n is 126. What is the least possible value of m + n?" # answer: 60 (m = 18, n = 42) asyncio.run(main(requirement))