We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b78006d commit e0d6aa3Copy full SHA for e0d6aa3
sandbox/main.py
@@ -25,10 +25,11 @@
25
26
load_dotenv()
27
28
+
29
@sandbox(
- cloud_profile_id=os.getenv('CLOUD_PROFILE_ID'),
30
- cloud_proxy_country_code=os.getenv('CLOUD_PROXY_COUNTRY_CODE'),
31
- cloud_timeout=int(os.getenv('CLOUD_TIMEOUT', 60)),
+ cloud_profile_id=os.getenv("CLOUD_PROFILE_ID"),
+ cloud_proxy_country_code=os.getenv("CLOUD_PROXY_COUNTRY_CODE"),
32
+ cloud_timeout=int(os.getenv("CLOUD_TIMEOUT", 60)),
33
)
34
async def main(browser: Browser):
35
llm = ChatBrowserUse()
@@ -43,5 +44,6 @@ async def main(browser: Browser):
43
44
45
await agent.run()
46
47
48
if __name__ == "__main__":
49
asyncio.run(main())
0 commit comments