海盗语言
这个模板将用户输入转换为海盗语言。
环境设置
设置 OPENAI_API_KEY
环境变量以访问 OpenAI 模型。
使用方法
要使用这个包,你首先需要安装 LangChain CLI:
pip install -U langchain-cli
要创建一个新的 LangChain 项目并将其作为唯一的包安装,可以执行以下操作:
langchain app new my-app --package pirate-speak
如果你想将其添加到现有项目中,只需运行:
langchain app add pirate-speak
然后在你的 server.py
文件中添加以下代码:
from pirate_speak.chain import chain as pirate_speak_chain
add_routes(app, pirate_speak_chain, path="/pirate-speak")
(可选)现在让我们配置 LangSmith。
LangSmith 将帮助我们跟踪、监控和调试 LangChain 应用程序。
你可以在这里注册 LangSmith。
如果你没有访问权限,可以跳过此部分。
export LANGCHAIN_TRACING_V2=true
export LANGCHAIN_API_KEY=<your-api-key>
export LANGCHAIN_PROJECT=<your-project> # 如果未指定,默认为 "default"
如果你在此目录中,可以直接启动 LangServe 实例:
langchain serve
这将在本地启动一个 FastAPI 应用程序,服务器正在运行在 http://localhost:8000
我们可以在 http://127.0.0.1:8000/docs 上查看所有模板。
我们可以在 http://127.0.0.1:8000/pirate-speak/playground 上访问 playground。
我们可以通过以下代码访问模板:
from langserve.client import RemoteRunnable
runnable = RemoteRunnable("http://localhost:8000/pirate-speak")