文章预览
【1】使用LCEL构建简单的LLM应用程序(Build a Simple LLM Application with LCEL) https://python.langchain.com/docs/tutorials/llm_chain/ 如何使用LangChain构建简单的LLM应用程序。功能:将把文本从英语翻译成另一种语言。 实现:LLM调用加上一些提示。很多功能都可以仅通过一些提示和一个LLM调用来构建! 阅读本教程后,将对以下内容有个高层次的概览: #使用语言模型( U sing language models) #使用PromptTemplates和OutputParsers( Using PromptTemplates and OutputParsers ) #使用LangChain表达式语言(LCEL)将组件链接在一起( Using LangChain Expression Language (LCEL) to chain components together) #使用LangSmith调试和跟踪您的应用程序( Debugging and tracing your application u sing LangSmith) #使用LangServe部署您的应用程序( Deploying your application with LangServe ) 【1.1】 使用语言模型- Using Language Models LangChain支持许多
………………………………