rm unused & format

This commit is contained in:
yzlin 2024-01-30 22:41:30 +08:00
parent 274747e72f
commit 5dde5a8875
2 changed files with 2 additions and 54 deletions

View file

@ -9,7 +9,7 @@ from metagpt.roles.code_interpreter import CodeInterpreter
async def main():
web_url = 'https://pytorch.org/'
web_url = "https://pytorch.org/"
prompt = f"""This is a URL of webpage: '{web_url}' .
Firstly, utilize Selenium and WebDriver for rendering.
Secondly, convert image to a webpage including HTML, CSS and JS in one go.
@ -20,7 +20,7 @@ Note: All required dependencies and environments have been fully installed and c
await ci.run(prompt)
if __name__ == '__main__':
if __name__ == "__main__":
import asyncio
asyncio.run(main())