LangChain Framework
LangChain 框架
Framework for building LLM-powered applications with chains, agents, RAG, and tool integration.
构建 LLM 应用的框架,支持链、Agent、RAG 和工具集成。
Website
Documentation
Pricing
open-source (free), LangSmith/LangGraph Cloud have paid tiers
Authentication
- API Key (for cloud services)
Popularity
55/100
Endpoints
N/A (Framework, not API)
SDKs
PythonTypeScript/JavaScriptJava (LangChain4j)
Key Features
- ◆Chain composition framework
- ◆Agent & tool integration
- ◆RAG building blocks
- ◆LangSmith observability
- ◆Multi-provider support
Code Examples
Simple Chainpython
from langchain_core.prompts import ChatPromptTemplate
from langchain_openai import ChatOpenAI
prompt = ChatPromptTemplate.from_template("Tell me a {topic} joke")
model = ChatOpenAI(model="gpt-4o")
chain = prompt | model
result = chain.invoke({"topic": "programming"})
print(result.content)Tags
frameworkllmagentrag
Last updated: 2026-07-27
Similar APIs
OpenAI API
★100Access GPT-4o, GPT-4, GPT-3.5, embeddings, DALL-E, Whisper, and TTS models via REST API.
Replit AI Agent
★88Browser-based IDE with AI Agent that builds full apps from prompts. Supports Python, JS, Go and 50+ languages.
Pinecone API
★88Managed vector database for AI. Serverless, with metadata filtering and hybrid search.
Anthropic Claude API
★87Access Claude 3.5 Sonnet, Haiku, and Opus models for chat, analysis, and code generation.
Something wrong or missing? Open an issue on GitHub →
Pricing Comparison
| API | Pricing | Auth | Popularity |
|---|---|---|---|
| GitHub REST API | free tier (5000 req/hr) + paid plans | Personal Access Token | 96 |
| GitHub REST & GraphQL API | free (5000 req/hr for authenticated), unlimited for public repos | Personal Access Token | 92 |
| Bolt.new - AI Web App Builder | free tier, Starter $20/mo, Pro $100/mo (includes Bolt AI credits) | OAuth (GitHub/Google) | 90 |
| Replit AI Agent | free tier, Hacker $25/mo, Pro $200/mo | OAuth (GitHub/Google) | 88 |
Discussion
Questions, feedback, or suggestions? Start a discussion.
Discuss on GitHub