Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	File size: 328 Bytes
			
			fe5c39d  | 
								1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20  | 
								#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@Time    : 2023/5/7 18:32
@Author  : alexanderwu
@File    : search_google.py
"""
import asyncio
from metagpt.roles import Searcher
async def main():
    await Searcher().run("What are some good sun protection products?")
if __name__ == "__main__":
    asyncio.run(main())
 |