【LangChain专栏】LangChain 调用Ollama本地大模型

文章目录

随着本地大模型生态逐渐成熟,越来越多开发者开始使用本地部署的模型来构建 AI 应用。相比调用云端 API,本地模型具备:
• 数据隐私可控
• 无需外网依赖
• 成本更低
• 可定制化强

一、什么是Ollama?

Ollama 是一个本地运行大语言模型的工具,支持一键下载并运行模型,如:

• Llama 3

• Mistral

• Qwen

特点:

• 安装简单(支持 macOS / Linux / Windows)

• 支持 REST API

• 支持模型管理与自定义 Modelfile

• 资源占用相对可控

二、环境准备

1.安装Ollama

官网下载安装即可,安装完成后验证:

ollama --version下载模型:

ollama pull llama3 启动模型:

ollama run llama3 若能正常对话,说明模型运行成功。

2.安装Python 依赖

bash 复制代码
pip install langchain langchain-community langchain-core

如果需要 Web API:

bash 复制代码
pip install fastapi uvicorn

三、LangChain 调用 Ollama

1.基础调用示例

bash 复制代码
from langchain_community.llms import Ollama

llm = Ollama(
    model="qwen3:4b"
)

response = llm.invoke("请用一句话介绍人工智能")
print(response)

执行后,LangChain 会调用本地 Ollama 服务,并返回模型生成结果。

2.使用Chat模型方式

bash 复制代码
from langchain_community.chat_models import ChatOllama
from langchain_core.messages import HumanMessage

chat = ChatOllama(
    model="qwen3:4b"
)

response = chat.invoke([
    HumanMessage(content="帮我写一段Java代码实现冒泡排序")
])

print(response.content)

适合多轮对话场景。

四、结合PromptTemplate 使用

bash 复制代码
from langchain_classic.chains.llm import LLMChain
from langchain_community.llms import Ollama
from langchain_core.prompts import PromptTemplate

template = """
你是一名专业程序员,请回答以下问题:
问题:{question}
"""

prompt = PromptTemplate(
    input_variables=["question"],
    template=template
)

llm = Ollama(model="qwen3:4b")

chain = LLMChain(llm=llm, prompt=prompt)

result = chain.invoke({"question": "什么是线程安全?"})
print(result["text"])

五、构建一个简单对话接口(FastAPI)

bash 复制代码
from fastapi import FastAPI
from langchain_community.chat_models import ChatOllama
from langchain_core.messages import HumanMessage

app = FastAPI()

chat = ChatOllama(model="llama3")

@app.post("/chat")
def chat_api(question: str):
    response = chat.invoke([HumanMessage(content=question)])
    return {"answer": response.content}

启动:

bash 复制代码
uvicorn main:app --reload

访问:

bash 复制代码
POST http://localhost:8000/chat

即可调用本地大模型接口。

六、常见问题

1.模型响应慢怎么办?

优化方式:

• 选择参数较小的模型(如 7B)

• 使用量化模型(Q4/Q8)

• 增加内存

• 调整 num_ctx

2.如何查看已安装模型?

bash 复制代码
ollama list

3.mac m1安装ollama安装包dmg失败

当前版本不支持m1架构,可切换到其他版本安装

https://github.com/ollama/ollama/releases

相关推荐
紫洋葱hh1 天前
LangChain 结构化输出详解:彻底告别大模型文本手动解析
人工智能·python·ai·langchain·llm·agent·大模型应用开发
赢乐2 天前
大模型学习笔记:LangChain核心组件-提示词(Prompts)
langchain·提示词工程·结构化输出·提示词(prompts)·系统提示词·身份(identity)·设定角色
swipe2 天前
Agentic RAG:用 LangGraph 构建会路由、会纠错、会收敛的闭环 RAG
后端·langchain·llm
赢乐2 天前
大模型学习笔记:LangChain核心组件-记忆(memory)
数据库·langchain·长短时记忆网络·长期记忆·短期记忆·智能体agent·记忆(memory)
最贪吃的虎2 天前
给 Agent 接入新模型的推理模式:从配置开关到协议适配
人工智能·python·langchain
ftpeak2 天前
LangGraph Agent 开发指南(10~子图 Subgraphs)
python·ai·langchain·ai编程·langgraph
lbb 小魔仙2 天前
工业数据困局的破局者:DolphinDB 如何让海量时序数据真正“跑“出价值
开发语言·人工智能·python·langchain