AI-powered support
Ask me anything about SettleGrid
Integrate Wikipedia into your LangChain agent with SettleGrid's per-call billing. No subscriptions, no minimums — pay only for what you use.
Wikipedia. Article summaries, search, and random articles from the world's encyclopedia.
LangChain is the leading framework for building applications powered by language models. It provides modular abstractions for chains, agents, and tool use.
pip install langchain langchain-communityPurchase credits for Wikipedia, then generate an API key from your Consumer Dashboard.
from langchain.tools import StructuredTool
from langchain.agents import AgentExecutor, create_openai_tools_agent
import requests
def call_wikipedia_tool(**kwargs) -> str:
"""Call Wikipedia via SettleGrid."""
resp = requests.post(
"https://proxy.settlegrid.ai/v1/wikipedia",
headers={
"x-api-key": "sg_live_your_key_here",
"Content-Type": "application/json",
},
json=kwargs,
)
resp.raise_for_status()
return resp.json()
# Wrap as a LangChain tool
wikipedia_tool = StructuredTool.from_function(
func=call_wikipedia_tool,
name="wikipedia",
description="Wikipedia — call via SettleGrid",
)
# Use in an agent
agent = create_openai_tools_agent(llm, [wikipedia_tool], prompt)
executor = AgentExecutor(agent=agent, tools=[wikipedia_tool])
result = executor.invoke({"input": "your query here"})Execute your LangChain agent. SettleGrid automatically meters each call to Wikipedia and deducts from your credit balance. No rate limits beyond your purchased credits.
No subscriptions or minimums. Credits never expire. See full pricing details.
Purchase credits and start using Wikipedia in your LangChain agent today.
View Wikipedia →Use Wikipedia with other agent frameworks: