👀 gongke.net
攻壳智能体
探索发现最新、热门的智能体和AI工具
工欲善其事,必先利其器。攻壳智能体是专注于智能体和AI工具的门户网站,我们致力于为用户介绍最新、热门的智能体和AI工具,帮助用户快速找到适合自己的学习、工作、生活的AI利器。
工欲善其事,必先利其器。攻壳智能体是专注于智能体和AI工具的门户网站,我们致力于为用户介绍最新、热门的智能体和AI工具,帮助用户快速找到适合自己的学习、工作、生活的AI利器。

pip install tavily-python用from tavily import TavilyClient
api_key = "your_api_key_here" # 替换为你的API密钥
tavily_client = TavilyClient(api_key)
response = tavily_client.search("Who is Leo Messi?")
print(response)
response = tavily_client.extract("https://example.com")
print(response)
import asyncio
from tavily import TavilyAsyncClient
async def main():
api_key = "your_api_key_here"
tavily_client = TavilyAsyncClient(api_key)
response = await tavily_client.search("Who is Leo Messi?")
print(response)
asyncio.run(main())
npm install @tavily/coreimport Tavily from "@tavily/core";
const tavily = new Tavily("your_api_key_here"); // 替换为你的API密钥
tavily.search("Who is Leo Messi?")
.then(response => {
console.log(response);
})
.catch(error => {
console.error(error);
});
tavily.extract("https://example.com")
.then(response => {
console.log(response);
})
.catch(error => {
console.error(error);
});