ToolKiti
Home/开发工具/LangChain Framework

LangChain Framework

LangChain 框架

Framework for building LLM-powered applications with chains, agents, RAG, and tool integration.

构建 LLM 应用的框架,支持链、Agent、RAG 和工具集成。

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

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