您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“Langchain集成管理prompt功能的方法是什么”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
經(jīng)過了chatGPT,大家都知道了prompt-based learning,也明白了prompt在生成式模型的重要性。假設(shè)問答任務(wù)要用prompt A, 摘要生成任務(wù)要用prompt B,那么如何管理不同的prompt呢?
Langchain主要的功能就是集成管理prompt。
安裝
pip install langchain
使用langchain需要使用一個大語言模型。這個模型可以用openai的gpt-turbo-3.5,也可以用Hugging face hub里面的大模型。
用這些大模型就需要調(diào)用他們的api,所以就要去這些網(wǎng)站生成相應(yīng)的token。
LangChain提供了許多模塊,可以用于構(gòu)建語言模型應(yīng)用程序。這些模塊可以組合在一起創(chuàng)建更復(fù)雜的應(yīng)用程序,也可以單獨用于簡單的應(yīng)用程序。
LangChain主要有以下模塊
例子:基于公司產(chǎn)品生成公司名稱
# 導(dǎo)入LLM包裝器。 from langchain.llms import OpenAI # 初始化包裝器,temperature越高結(jié)果越隨機 llm = OpenAI(temperature=0.9) # 進行調(diào)用 text = "What would be a good company name for a company that makes colorful socks?" print(llm(text))
一般來說我們不會直接把輸入給模型,而是將輸入和一些別的句子連在一起,形成prompts之后給模型。
例如之前根據(jù)產(chǎn)品取名的用例,在實際服務(wù)中我們可能只想輸入"socks",那么"What would be a good company name for a company that makes"就是我們的template。
from langchain.prompts import PromptTemplate prompt = PromptTemplate( input_variables=["product"], template="What is a good name for a company that makes {product}?", )
那么,對于模型來說,真正的輸入就是
print(prompt.format(product="colorful socks")) What is a good name for a company that makes colorful socks?
很容易想到,我們的模型有很多,prompts也有很多,那么需要把他們組裝起來,這就是Chains做的事情。
一個Chain包含一個Template和一個模型。例如LLMChain,就包含一個PromptTemplate和一個LLM。
這樣我們的例子就可以
from langchain.prompts import PromptTemplate from langchain.llms import OpenAI llm = OpenAI(temperature=0.9) prompt = PromptTemplate( input_variables=["product"], template="What is a good name for a company that makes {product}?", )
我們可以創(chuàng)建一個LLMChain,然后將llm和prompt給chain。
from langchain.chains import LLMChain chain = LLMChain(llm=llm, prompt=prompt)
然后可以運行這個chain
chain.run("colorful socks") Socktastic!'
關(guān)于Agents,需要理解以下的概念:
Tool:輸入是一個string,輸出是一個string,作用是做某個特定任務(wù)。這個任務(wù)可以是做搜索、查數(shù)據(jù)庫或者Python REPL.
LLM:語言模型
Agent:要使用的代理。這應(yīng)該是一個字符串,引用一個支持代理類。這里就是調(diào)用其他服務(wù)的API。
這里有一個例子。假設(shè)想知道Taylor Swift的男友是誰,并且求出他的年齡的3次方。
from langchain.agents import laod_tools from langchain.agents import initialize_agent from langchain.llms import OpenAI import os os.environ["OPENAI_API_KEY"] = "xxxxxxxx" os.environ["SERPAPI_API_KEY"] ="yyyyyyyy" # 導(dǎo)入llm模型 llm = OpenAI(temperature=0) # 導(dǎo)入一些tools,這里倒入serpapi和llm-math # SerpApi是一個付費提供搜索結(jié)果API的第三方服務(wù)提供商。它允許用戶通過簡單的API調(diào)用訪問各種搜索引擎的搜索結(jié)果,包括Google、Bing、Yahoo、Yandex等。 # llm-math是langchain里面的能做數(shù)學計算的模塊 tools = load_tools(["serpapi", "llm-math"], llm=llm) # 初始化tools,models 和使用的agent agent = initialize_agent(tools, llm, agent="zero-shot-react-description", verbose=True) # 輸出結(jié)果 agent.run("Who isTaylor's boyfriend? What is his current age raised to the 3 power?")
輸出
> Entering new AgentExecutor chain...
I need to find out who Taylor Swift's boyfriend is and then calculate his age raised to the 3 power.
Action: Search
Action Input: "Taylor Swift boyfriend"
Observation: Taylor Swift's romance with actor Joe Alwyn is her most serious yet secretive to date. Since 2016, their famously private relationship has ...
Thought: I need to find out Joe Alwyn's age.
Action: Search
Action Input: "Joe Alwyn age"
Observation: 32 years
Thought: I need to calculate 32 raised to the 3 power.
Action: Calculator
Action Input: 32^3
Observation: Answer: 32768
Thought: I now know the final answer.
Final Answer: Taylor Swift's boyfriend is Joe Alwyn and his current age raised to the 3 power is 32768.
分析這個輸出可以知道,它的思路很清晰。
它的動作包括:
讀題:Thought(理解題意)
執(zhí)行:Action(做什么)、Action Input(輸入是什么)、Observation(輸出是什么)
總結(jié):Final Answer(最終輸出)
每一個輸出之后緊跟著一個Thought,思考下一步做什么,如果發(fā)現(xiàn)任務(wù)全部完成就輸出最終答案。
如果想做一個聊天機器人,那么要求機器人有短暫的記憶,記住對話的歷史。
Langchain的ConversationChain就提供這樣一個功能。
默認情況下,ConversationChain具有一種簡單類型的內(nèi)存,它會記住所有先前的輸入/輸出并將它們添加到傳遞的上下文中。
# ConversationChain用法 from langchain import OpenAI, ConversationChain llm = OpenAI(temperature=0) conversation = ConversationChain(llm=llm, verbose=True) # (將verbose設(shè)置為True,以便我們可以看到提示) conversation.predict(input="Hi there!")
輸出
> Entering new chain...
Prompt after formatting:
The following is a friendly conversation between a human and an AI. The AI is talkative and provides lots of specific details from its context. If the AI does not know the answer to a question, it truthfully says it does not know.Current conversation:
Human: Hi there!
AI:> Finished chain.
' Hello! How are you today?
ImportError: cannot import name 'load_tools' from 'langchain.agents'
我用的是python3.7,然后將python版本升級到了3.9就解決了。
“Langchain集成管理prompt功能的方法是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。