github :https://github.com/tavily-ai/tavily-python
安装
pip install tavily-python
获取 API Key
使用
from tavily import TavilyClient
TAVILY_API_KEY = 'tvly-3iO5Ek...3hbCNl'
# Step 1. Instantiating your TavilyClient
tavily_client = TavilyClient(api_key=TAVILY_API_KEY)
# Step 2. Executing a simple search query
response = tavily_client.search("Who is Leo Messi?")
# Step 3. That's it! You've done a Tavily Search!
print(response)
结果:
{
'query': 'Who is Leo Messi?',
'follow_up_questions': None,
'answer': None,
'images': [],
'results': [{
'title': '20 years of Messi: Ranking his seasons from worst to first',
'url': 'https://www.espn.com/soccer/story/_/id/41809892/20-years-lionel-messi-ranking-barcelona-psg-inter-miami-legends-seasons-worst-first',
'content': 'For 20 years, Lionel Messi has flourished from a young rising star to one of the greatest soccer players of all time. Illustration by ESPN 13. 2023-24 | Inter Miami',
'score': 0.9492005,
'raw_content': None
}, {
'title': "Lionel Messi | Biography, Barcelona, PSG, Ballon d'Or, Inter Miami ...",
'url': 'https://www.britannica.com/biography/Lionel-Messi',
'content': 'In early 2009 Messi capped ... course of the campaign, which resulted in his fifth world player of the year honour.',
'score': 0.8749346,
'raw_content': None
}, {
'title': 'Argentina 6-0 Bolivia: Lionel Messi scores hat-trick in World Cup ... - BBC',
'url': 'https://www.bbc.com/sport/football/articles/c62re2n8qq7o',
'content': 'Lionel Messi scored his 10th international hat-trick as Argentina thrashed Bolivia 6-0 in World Cup qualifying. The 37-year-old Inter Miami forward, who also set up two goals at Monumental Stadium',
'score': 0.86373675,
'raw_content': None
}, {
'title': "Lionel Messi: 'I Haven't Set a Goal' to Play in 2026 World Cup with ...",
'url': 'https://bleacherreport.com/articles/10139842-lionel-messi-i-havent-set-a-goal-to-play-in-2026-world-cup-with-argentina',
'content': 'The 37-year-old played a key role in the triumph over France in the final, winning 4-2 on penalties following a 3-3 draw. Messi scored twice and converted his penalty kick to help Argentina secure',
'score': 0.8546422,
'raw_content': None
}, {
'title': 'Lionel Messi - Wikipedia',
'url': 'https://en.wikipedia.org/wiki/Lionel_Messi',
'content': 'He scored ... at the Camp Nou.[164]',
'score': 0.8143483,
'raw_content': None
}],
'response_time': 2.1
}
2024-10-18(五)