init commit

This commit is contained in:
2025-08-15 19:50:11 +08:00
commit 766b383e52
14 changed files with 653 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import asyncio
from search import search_web
async def test_search_web_output():
query = "曼联最新的英超排名是多少"
result = await search_web(query)
print("搜索结果输出:\n", result)
if __name__ == "__main__":
asyncio.run(test_search_web_output())