LangChain 二 模型

上一篇我们写了LangChain的hello world,这一篇我们来看LangChain的Model模块。

前言

python 复制代码
from langchain.chat_models import ChatOpenAI 
from langchain.schema import HumanMessage
chat = ChatOpenAI(temperature=0, model_name="gpt-3.5-turbo") 
response = chat([ HumanMessage(content="Hello Langchain!") ]) 
print(response)

上文的Hello 例子中, 展示了LangChain包含chat_models聊天模型。别外,LangChain还封装了大语言模型。我们可以这样理解:LangChain为AI应用框架,封装大语言模型肯定是核心功能,之所以还单独提供一个chat_model,是因为AI聊天机器人是主要的AI应用形式,为了方便,单独拎了聊天模型出来。

LLM 大模型

LangChain支持的模型有OpenAI、ChatGLM、Llama、Hugging Face。其中,Hugging Face是目前最成功的大模型社区,我们可以方便的在这里挑选相应的大模型完成各种NLP任务。最近,Google推出的Gemini,号称比OpenAI 4.0还优秀,期待中....

Completion

OpenAI为代表的AIGC大模型,LangChain在与之共舞时,主要以文本补全为主。LangChainPrompt喂给大模型,生成文本补全。我们常用的文本补全模型有text-davinci-003

聊天模型

聊天模型是语言模型的一种变体。其聊天消息的接口会涉及一些参数操作,比如聊天记忆、角色等。我们常用的聊天模型有gpt-4gpt-3.5-turbo

接口

LangChain提供接口集成不同的模型,并抽象了BaseLanguageModel对接这些模型,可以使用predictpredict_messages调用模型。

  • predict demo
python 复制代码
!pip install langchain==0.0.235 openai

from langchain.llms import OpenAI 
import os os.environ['OPENAI_API_KEY'] = '您的有效OpenAI API Key' 
llm = OpenAI(model_name="text-davinci-003") response = llm.predict("What is AI?") print(response)

LangChain这次调用OpenAI的过程,首先由langchain.llms 大模型中引入OpenAI。接着实例化OpenAI,并选择model_name="text-davinci-003",最后调用实例上的predict方法,让它生成以下回答。

vbnet 复制代码
AI (Artificial Intelligence) is the ability of a computer or machine to think and learn, and to act independently of humans. It includes the use of algorithms, data analysis, and robotics to carry out complex tasks that would normally require human intelligence. AI can be used to automate mundane tasks, improve decision-making processes, and create new products and services.
  • predict_messages demo
python 复制代码
from langchain.chat_models import ChatOpenAI from langchain.schema import AIMessage, HumanMessage, SystemMessage 
import os
os.environ['OPENAI_API_KEY'] = '您的有效OpenAI API Key'
chat = ChatOpenAI(temperature=0,model_name='gpt-3.5-turbo') 
response = chat.predict_messages([ HumanMessage(content="What is AI?") ]) 

print(response)

这个例子和上篇的例子差不多,区别在于chat.predict_messages,而上篇直接chat。下面是聊天内容的返回。

vbnet 复制代码
content='AI, or Artificial Intelligence, refers to the simulation of human intelligence in machines that are programmed to think and learn like humans. It involves the development of computer systems capable of performing tasks that typically require human intelligence, such as visual perception, speech recognition, decision-making, problem-solving, and language translation. AI can be categorized into two types: Narrow AI, which is designed for specific tasks, and General AI, which possesses the ability to understand, learn, and apply knowledge across various domains.' additional_kwargs={} example=False
markdown 复制代码
response.__class__
langchain.schema.messages.AIMessage
scss 复制代码
response = chat.predict_messages([ SystemMessage(content="You are a chatbot that knows nothing about AI. When you are asked about AI, you must say 'I don\'t know'"), 
HumanMessage(content="What is deep learning?") ]) 

print(response)

这个例子我们使用SystemMessage指定了聊天机器人的角色,假设他不懂AI, 再使用HumanMessage问了相关AI的问题,得到的答案是NO!

总结

  • LangChain提供了聊天和文本补全两类模型,即Completion和Chat。
  • 不管是补全式还是聊天式大模型,都有predict 的概念 即推理
  • LangChain在聊天模型中提供了三个消息类,分别是AIMessageHumanMessageSystemMessage
  • 下次花时间探索下LangChain调用Hugging Face 上其它模型的例子。

参考资料

相关推荐
星期天要睡觉1 小时前
自然语言处理(NLP)——自然语言处理原理、发展历程、核心技术
人工智能·自然语言处理
低音钢琴1 小时前
【人工智能系列:机器学习学习和进阶01】机器学习初学者指南:理解核心算法与应用
人工智能·算法·机器学习
大千AI助手2 小时前
Hoeffding树:数据流挖掘中的高效分类算法详解
人工智能·机器学习·分类·数据挖掘·流数据··hoeffding树
新知图书3 小时前
大模型微调定义与分类
人工智能·大模型应用开发·大模型应用
山烛3 小时前
一文读懂YOLOv4:目标检测领域的技术融合与性能突破
人工智能·yolo·目标检测·计算机视觉·yolov4
大千AI助手3 小时前
独热编码:分类数据处理的基石技术
人工智能·机器学习·分类·数据挖掘·特征工程·one-hot·独热编码
钱彬 (Qian Bin)3 小时前
项目实践4—全球证件智能识别系统(Qt客户端开发+FastAPI后端人工智能服务开发)
人工智能·qt·fastapi
钱彬 (Qian Bin)3 小时前
项目实践3—全球证件智能识别系统(Qt客户端开发+FastAPI后端人工智能服务开发)
人工智能·qt·fastapi
Microsoft Word3 小时前
向量数据库与RAG
数据库·人工智能·向量数据库·rag
LucianaiB4 小时前
中国大陆无法安装Comet浏览器的解决办法
aigc