SDK 整合
在 LangChain 應用程式中直接 import 並註冊為 Tool,與 Agent 在同一行程中執行。
- 無需額外部署,開箱即用
- 同一行程內呼叫,延遲最低
- 與應用程式程式碼緊密整合,開發效率更高
- 適合快速驗證與單一服務應用程式
適用於: 個人專案、PoC、單一 Agent 應用程式、本機開發
為 LangChain AI Agent 新增即時搜尋能力,透過一個 API 串接 Google、Bing 等搜尋引擎,幾分鐘即可完成整合。
無需綁定信用卡

SDK 與 MCP 都可用於 LangChain Agent。
在 LangChain 應用程式中直接 import 並註冊為 Tool,與 Agent 在同一行程中執行。
適用於: 個人專案、PoC、單一 Agent 應用程式、本機開發
透過 MCP Server 提供搜尋能力,LangChain 使用 adapter 串接,讓工具與 Agent 解耦。
適用於: 生產環境、多 Agent 架構、企業級系統
從取得 API Token 到完成整合,只需 3 個步驟即可讓你的 LangChain Agent 具備即時搜尋能力。
註冊帳號即可免費取得 API Token,無需綁定信用卡。
自訂開發建議使用 SDK;需要串接現有系統或多個 Agent 工作流程時,可選擇 MCP。
pip install langchain-talordataimport os
os.environ["TALOR_API_KEY"] = "your-token"
from langchain_talordata import TalorDataSerpTool
from langchain_openai import ChatOpenAI
# 1. Initialize the search tool
tool = TalorDataSerpTool.from_env()
# 2. Bind it to your model. The agent decides when to run live web search
llm = ChatOpenAI(model="gpt-4o-mini", temperature=0)
model_with_tools = llm.bind_tools([tool])
# 3. Ask a question. The model triggers real-time search when needed
response = model_with_tools.invoke("Search for coffee")
print(response){
"search_metadata": {
"status": "Success",
"query": "coffee"
},
"organic": [
{
"position": 1,
"title": "Coffee",
"link": "https://en.wikipedia.org/wiki/Coffee",
"snippet": "Coffee is a beverage brewed from roasted, ground coffee beans...",
"source": "Wikipedia"
},
{
"position": 2,
"title": "Craft Coffee Beans Online & In Shops | Stumptown Coffee",
"link": "https://www.stumptowncoffee.com/",
"snippet": "Fresh beans, cold brew, and good vibes...",
"source": "Stumptown Coffee"
},
{
"position": 3,
"title": "Fresh Roasted Coffee | Intelligentsia",
"link": "https://www.intelligentsia.com/",
"snippet": "Experience the freshest roasted coffee shipped for free...",
"source": "Intelligentsia Coffee"
}
]
}SDK 與 MCP 都是標準的 LangChain Tools。兩者可搭配 Calculator、Browser 及其他工具,並回傳相同的結構。SDK 也包含歷程記錄與統計工具,方便進行疑難排解與用量監控。
Agent 會自動判斷何時需要連網搜尋,直接回傳可用的結構化資料。
為 LangChain Agent 提供即時、可靠且結構化的搜尋資料。
只要呼叫一次 API,即可取得 Google、Bing、Yandex、DuckDuckGo 等主流搜尋引擎結果,支援 100+ 個國家和地區及多語言搜尋情境。
讓 LangChain Agent 彈性呼叫搜尋工具,在需要即時資訊時取得最新資料,無需手動處理搜尋工作流程。
自動清理並結構化搜尋結果,只回傳關鍵內容,減少無效 Token 用量,提升 Agent 回應效率。
提供穩定的 API 服務、自動重試機制與技術支援,協助你的 AI Agent 持續穩定執行。

不只提供搜尋 API,更提供完整的 Agent 開發體驗。
只需幾行程式碼即可完成 LangChain Tool 整合。
將搜尋能力作為獨立服務,串接多個 Agent 與工作流程。
內建搜尋記錄與用量統計,方便開發、疑難排解與監控。
專為 LangChain Agent 打造,協助開發者快速建構具備即時搜尋能力的 AI 應用程式。
取得 Google、Bing、Yandex、DuckDuckGo 等搜尋結果。
支援 LangChain Tool、MCP Server、SDK 與 API。
提供 JSON 與 HTML 格式的結果。
支援多語言、地區、分頁與搜尋類型設定。
探索 TalorData 如何協助開發者與團隊建構具備即時搜尋能力的 AI 應用程式。
讓 AI Agent 取得並回答最新網路資訊。
自動檢索並整合多個資訊來源,協助完成研究與分析工作。
結合即時搜尋結果,根據最新資料提供精確回答。
根據最新網路資訊產生文章、摘要與研究內容。