当前位置: 首页 > news >正文

山东学生做自我评价的网站有没有做字的网站

山东学生做自我评价的网站,有没有做字的网站,天门网站建设,o2o网站开发相关技术#x1f517; LangChain for LLM Application Development - DeepLearning.AI 学习目标 1、使用Langchain实例化一个LLM的接口 2、 使用Langchain的模板功能#xff0c;将需要改动的部分抽象成变量#xff0c;在具体的情况下替换成需要的内容#xff0c;来达到模板复用效… LangChain for LLM Application Development - DeepLearning.AI 学习目标  1、使用Langchain实例化一个LLM的接口 2、 使用Langchain的模板功能将需要改动的部分抽象成变量在具体的情况下替换成需要的内容来达到模板复用效果。 3、使用Langchain提供的解析功能将LLM的输出解析成你需要的格式如字典。 模型实例化 import os from dotenv import load_dotenv ,find_dotenv from langchain.chat_models import ChatOpenAI from langchain.prompts import ChatPromptTemplate_ load_dotenv((find_dotenv())) //使用dotenv来管理你的环境变量 我们选用智谱的API【智谱AI开放平台】来作为我们的基座大模型通过langchain的chatOpenAI接口来实例化我们的模型。 chat ChatOpenAI(api_keyos.environ.get(ZHIPUAI_API_KEY),base_urlos.environ.get(ZHIPUAI_API_URL),modelglm-4,temperature0.98) 这里我们选用的一个例子通过prompt来转换表达的风格 提示模板化 我们定义一个prompt template_string Translate the text \ that is delimited by triple backticks \ into a style that is {style}.\ text:{text}使用langchain的模板功能函数实例化一个模板从输出可以看到这里是需要两个参数style和text prompt_template ChatPromptTemplate.from_template(template_string) ChatPromptTemplate(input_variables[style, text], messages[HumanMessagePromptTemplate(promptPromptTemplate( input_variables[style, text], templateTranslate the text that is delimited by triple backticks into a style that is {style}.text:{text}\n))])设置我们想要转化的风格和想要转化的内容 #style customer_style American English in a clam and respectful tone #text customer_email Arrr,I be fuming that me blender lid \ flew off and splattered me kitchen walls \ with smoothie! And to make matters worse, \ the warranty dont cover the cost of \ cleaning up me kitchen. I need yer help \ right now,matey!这里我们实例化出我们的prompt customer_messages prompt_template.format_messages(style customer_style,text customer_email) [HumanMessage(contentTranslate the text that is delimited by triple backticks into a style that is American English in a clam and respectful tone. text: \n Arrr,I be fuming that me blender lid flew off and splattered me kitchen walls with smoothie! And to make matters worse, the warranty dont cover the cost of cleaning up me kitchen. I need yer help right now,matey! \n\n)]这里我们给出一个回复的内容和转化的格式 service_reply Hey there customer,the warranty does not cover cleaning expenses for your kitchen because its your fault that you misused your blender by forgetting to put the lid on before starting the blender. Tough luck! see ya! service_style a polite tone that speaks in English pirate实例化 service_messages prompt_template.format_messages(style service_style , text service_reply) 调用LLM查看结果 service_response chat(service_messages) print(service_response.content) Avast there, dear customer! Ye be knowin that the warranty be not stretchin to cover the cleanin costs of yer kitchen, for tis a matter of misadventure on yer part. Ye did forget to secure the lid upon the blender before engagement, leading to a spot o trouble. Aar, such be the ways of the sea! No hard feelings, and may the wind be at yer back on the next journey. Fare thee well!回复结构化 我们现在获得了某个商品的用户评价我们想要提取其中的关键信息下面这种形式 customer_review \ This leaf blower is pretty amazing. It has four settings:\ candle blower, gentle breeze, windy city, and tornado. \ It arrived in two days, just in time for my wifes \ anniversary present. \ I think my wife liked it so much she was speechless. \ So far Ive been the only one using it, and Ive been \ using it every other morning to clear the leaves on our lawn. \ Its slightly more expensive than the other leaf blowers \ out there, but I think its worth it for the extra features. {gift: False,delivery_days: 5,price_value: pretty affordable! } 构建一个prompt 模板  review_template \ For the following text, extract the following information:gift: Was the item purchased as a gift for someone else? \ Answer True if yes, False if not or unknown.delivery_days: How many days did it take for the product \ to arrive? If this information is not found, output -1.price_value: Extract any sentences about the value or price,\ and output them as a comma separated Python list.Format the output as JSON with the following keys: gift delivery_days price_valuetext: {text}prompt_template ChatPromptTemplate.from_template(review_template) message prompt_template.format_messages(text customer_review) reponse chat(message) 下面是模型的回复看起来好像一样 {gift: true,delivery_days: 2,price_value: [Its slightly more expensive than the other leaf blowers out there, but I think its worth it for the extra features.] } 我们打印他的类型的时候发现这其实是一个字符串类型这是不能根据key来获取value值的。 引入Langchain的ResponseSchema from langchain.output_parsers import ResponseSchema from langchain.output_parsers import StructuredOutputParsergift_schema ResponseSchema(namegift,descriptionWas the item purchased as a gift for someone else? Answer True if yes,False if not or unknown.) delivery_days_schema ResponseSchema(namedelivery_days, descriptionHow many days did it take for the product to arrive? If this information is not found,output -1.) price_value_schema ResponseSchema(nameprice_value, descriptionExtract any sentences about the value or price, and output them as a comma separated Python list.) response_schemas [gift_schema,delivery_days_schema,price_value_schema] output_parser StructuredOutputParser.from_response_schemas(response_schemas) format_instructions output_parser.get_format_instructions() 查看一下我们构建的这个结构 重新构建prompt模板并进行实例 review_template_2 \ For the following text, extract the following information:gift: Was the item purchased as a gift for someone else? \ Answer True if yes, False if not or unknown.delivery_days: How many days did it take for the product\ to arrive? If this information is not found, output -1.price_value: Extract any sentences about the value or price,\ and output them as a comma separated Python list.text: {text}{format_instructions} prompt ChatPromptTemplate.from_template(templatereview_template_2)messages prompt.format_messages(textcustomer_review,format_instructionsformat_instructions) 我们将结果进行解析 output_dict output_parser.parse(reponse.content){gift: True,delivery_days: 2,price_value: Its slightly more expensive than the other leaf blowers out there, but I think its worth it for the extra features. } 我们再次查看其类型发现已经变成了字典类型并可以通过key去获取value值。
http://www.hkea.cn/news/14320910/

相关文章:

  • linux 什么做网站好网页搜索框下记录删不掉
  • 浙江建筑网站西宁专业网站建设公司
  • 如何建立购物网站南宁网站建设 超博网络
  • php 企业网站模板 想1北京搬家公司哪家服务最好
  • 企业如何做网站建站榆林市建设局网站
  • 网站推广营销策划国家企业信息公示网查询官网网址
  • 一个完整网站制作的实例郑州网站建设企业
  • 官方网站改版建议网站建设经典文章
  • 深圳集团网站建设专业手机网站菜单代码
  • 电脑自助建站php 小企业网站 cms
  • 互站源码交易平台莱州网络公司
  • 访问国外网站速度慢网站seo计划书
  • 建商城网站的平台专业微网站电话
  • 官方网站查询高考分数台州做鞋子网站
  • 虚拟主机 多个网站微商货源网站源码
  • 广州番禺网站建设公司推荐汕头市建设网
  • 用齐博cms建网站个人建一个网站多少钱
  • 我想给网站网站做代理鞍山诺亚人才网
  • 建设视频网站的视频源沈阳做微网站的公司
  • 自己网站的登录api怎么做php网站开发几技术难点
  • 购物网站建设工作流程直播视频网站
  • 浅谈旅游网站的规划与建设网站访问对应二级域名
  • 在县城做商城网站家在深圳论坛业主论坛
  • 在百度云上做网站如何做一名合格的网站人
  • 学校网站建设团队品牌线上营销策划
  • 沈阳网站模板建站wordpress comments.php
  • 自己建立网站多少钱欧美风格网站特点
  • 门户网站php源码外国人学做中国菜 网站
  • .net 电子商务网站源码如何分析一个网站
  • 免费创建网站建设手机银行app下载安装最新版