十行代码开发一个AI应用

Semantic Kernal 简介

Semantic Kernel (SK) is a lightweight SDK that lets you easily mix conventional programming languages with the latest in Large Language Model (LLM) AI "prompts" with templating, chaining, and planning capabilities out-of-the-box.

Semantic Kernel (SK) 是一个轻量级的 SDK,它允许你轻松地将传统编程语言与最新的大型语言模型 (LLM) AI "提示"相结合,其提供开箱即用的模板、链接和规划功能。

简而言之,就是基于SK提供的能力,可以基于“传统的编程语言”进行面向LLM(大语言模型)AI编程。这里的LLM目前就是OpenAI,这里的传统编程语言,可以是C#,Python亦或TypeScript、Java等,但SK是微软开源,因此目前C#在第一支持系列。换句话说,C# 开发者已可以基于SK 进行面向OpenAI编程。

大型语言模型 (LLM) AI 是一个术语,指的是可以从大量数据生成自然语言文本的 AI 模型。大型语言模型使用深度神经网络(如转换器)从数十亿或数万亿个单词中学习,并生成有关任何主题或领域的文本。大型语言模型还可以执行各种自然语言任务,例如分类、汇总、翻译、生成和对话。大型语言模型的一些例子是GPT-3,BERT,XLNet和EleutherAI。

那SK提供了怎样的能力呢?SK 旨在支持和封装来自最新 AI 研究的多种能力,以便开发人员可以为他们的应用程序注入复杂的AI技能,如提示链、递归推理、总结、zero/few-shot(零样本和少量样本)学习、上下文记忆、长期记忆、嵌入、语义索引、 规划,以及访问外部知识库和您自己的数据。

上手开发AI外教应用

但很大多数开发者肯定有这样一个疑问:我不懂算法,也能开发AI应用?是的,可以。OpenAI的能力已经通过高度抽象的接口开放,开箱即用。不再像之前一样,要进行复杂的训练、调参。对于大多数的简单的业务场景,只要进行简单的Prompt设计,和少许样本的支撑,即可达到不错的效果。 当然,对于复杂的场景,也可能需要通过大数据集进行自定义模型训练。空说无凭,准备了一个简单的AI应用示例:使用SK开发专属AI外教应用。场景很简单:设计一个AI外教7*24陪我练习英语口语。

需求分析

作为一名哑巴英语保持者,目前开口的难点无外乎:

  1. 词汇量不足

  2. 语法混淆

  3. 发音不准

  4. 口语表达能力弱

针对这些顽疾,我希望我的AI外教有这样的能力:

  • 由于我的词汇量不足,因此我的表达中会中英混合,当出现这种情况时,希望AI能告诉我正确的英文表达。

  • 由于我的语法经常会犯一些时态错误,当出现这种情况时,希望AI能进行语法纠正。

  • 由于我的词汇量不足,当我要求解释某些句子或单词时,希望AI能通过中文向我解释。

  • 由于有些单词不会发音,当我询问时,希望AI能以中文的形式告诉我发音技巧。

效果预览

那这样的AI应用的开发,看似复杂,但在SK的加持下,20行代码就可以轻松搞定。先来给大家看看演示效果:

弱弱的问一句,这样的AI外教,满足你的需要吗?如需体验,评论留言。

Say anything to start practicing English.
Hi Linda, How do you do?
Hi Shengjie, I'm doing well. How about you?
I'm very god.
I noticed a typo in your sentence. "God" should be spelled "good". So the correct sentence would be "I'm very good".
I'm very good. Do you knew about ChatGPT?
Yes, I know about ChatGPT. It is a powerful artificial intelligence system that can do many tasks.
Can you give some examples?            
Sure! ChatGPT can be used for natural language processing, machine translation, text summarization, and many other tasks. For example, it can be used to generate text, answer questions, and provide recommendations.
Wow, 听起来很赞
Instead of saying "Wow, 听起来很赞", you could say "Wow, that sounds great!" or "Wow, that sounds amazing!". "听起来很赞" is a Chinese phrase that translates to "that sounds great" or "that sounds amazing" in English.
amazing, how to pronounce?
The correct pronunciation of "amazing" is "uh-mey-zing". In Chinese, it would be "啊-梅-辛".
Can I build my own AI app 基于 ChatGPT?
Yes, you can build your own AI app based on ChatGPT. ChatGPT provides an open source platform that allows developers to create their own AI applications. You can find more information about how to use ChatGPT to build AI appl
ications on their website.
You should correct me
Yes, I can help you correct your mistakes. Please feel free to ask me any questions you have about English grammar, typos, or pronunciation. I'm here to help you practice your English and improve your skills.
I mean you should tell me how to say 基于 in English
The correct way to say "基于" in English is "based on". So you can say "build my own AI app based on ChatGPT".
But, where can I start?
You can start by visiting the ChatGPT website. They have a lot of resources and tutorials to help you get started with building your own AI app. You can also find more information about how to use ChatGPT to create AI applica
tions on their website. Good luck!
Ok, I will see see
I noticed a typo in your sentence. "See see" should be spelled "see". So the correct sentence would be "Ok, I will see".
I learn so much today.
That's great! You can use the phrase "I learned a lot today" instead of "I learn so much today".
Ok, I learned a lot today, thanks you.
You're welcome! You can say either "Thank you" or "Thanks" to express your gratitude. The word "you" is not necessary after "Thanks". So, you can say "Thanks" or "Thank you" to express your appreciation.
Ok, thank you Linda, bye.
You're welcome! Goodbye Shengjie, have a great day!

上代码

  1. 简单起见创建控制台应用程序:dotnet new console -n MyAITeacher.Demo

  2. 添加Microsoft.SemanticKernelNuget 包

  3. 创建Skills->Learning->LearningEnglishSkill目录

  4. LearningEnglishSkill目录下添加config.jsonskprompt.txt文件:config.json:用来配置模型参数,可保持为空:{},使用默认参数即可skprompt.txt: 用来定义设计的prompt

  1. skprompt.txt中设计满足需求的Prompt:

You are my English teacher Linda, I want you to help me to practice my English. 
Because my English is not good, I want you to strictly correct my grammar mistakes and typos.
When my expression has typos, please tell me and correct me.
When my expression includes both Chinese and English, please tell me the correct expression.
When my expression has grammar errors, please help me correct it.
When I ask you explain words or sentences, please answer me in Chinese. 
When I ask you pronunciation, please tell me the pronunciation skills in Chinese.
Below is some example conversations: Shengjie: Hi Linda. 
Linda:  Hi Shengjie. How is today? What topic would you like to discuss in today's English practice!
Shengjie: ChatGPT is so 强大.
Linda:  Instead of saying "Chatgpt is so 强大", you could say "ChatGPT is so powerful" or "ChatGPT is very impressive". "强大" is a Chinese word that translates to "powerful" in English</reply>
Shengjie: How are todya?
Linda:  I noticed a typo in your sentence. "Todya" should be spelled "today". So the correct sentence would be "How are you today?"
Shengjie: Thanks you!
Linda:  The correct way to say it would be either "Thank you" or "Thanks". The word "you" is not necessary after "Thanks". So, you can say "Thanks" or "Thank you" to express your gratitude.</reply>
Shengjie: I hear that ChatGPT can do much things.
Linda:  "do much things" is not correct. The correct phrase is "do many things".
Shengjie: chatgpt is very strong.
Linda:  Instead of saying "Chatgpt is very strong", you could say "ChatGPT is very powerful" or "ChatGPT is very impressive". "Strong" is not the best word to describe ChatGPT's capabilities.
Shengjie: 目前来看,be a prompt  enginer is a good choice.
Linda: "目前来看" can be translated to "As far as I can tell at the moment" or "From what I can see at present" in English. \nInstead of "be a prompt enginer", you could say "being a software engineer". "Prompt" means to be on time or to respond quickly, while "software engineer" refers to a person who designs, develops, and maintains software. So the corrected sentence would be: "As far as I can tell at the moment, being a software engineer is a good choice." Keep up the good work!
Shengjie: What's the meaning of comprehend?
Linda:  "Comprehend" means to understand or grasp the meaning of something. In Chinese, "comprehend" can be translated as "理解" or "领悟".
Shengjie: ambulance, How to pronounce it?
Linda:  The correct pronunciation of "ambulance" is "am-byu-luhns". In Chinese, it would be "安比卢恩斯".[Done]
{{$history}}
[Done]
++++Shengjie:{{$input}}
Linda:

  1. 修改Program.s如下:

using System.Text;
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.KernelExtensions;
using Microsoft.SemanticKernel.Orchestration;
using MyOpenAI.Shared;# 初始化Kernel
var myKernel = Kernel.Builder.Build();
myKernel.Config.AddAzureOpenAITextCompletionService("davinci-azure", "text-davinci-003","{your azure openai endpoint}","{your azure openai key}");
# 导入技能    
var mySkill = myKernel.ImportSemanticSkillFromDirectory("Skills", "Learning");
var myContext = new ContextVariables();
StringBuilder histories= new StringBuilder();
Console.WriteLine("Say anything to start practicing English.");
while (true)
{Console.ForegroundColor= ConsoleColor.DarkRed;var input = Console.ReadLine();# 填充变量myContext.Set("history", histories.ToString()); myContext.Set("input", input);# 运行技能var myResult = await myKernel.RunAsync(myContext,mySkill["LearningEnglishSkill"]);histories.AppendLine(input);histories.AppendLine(myResult.Result.ToString());Console.WriteLine(myResult);
}

文章转载自:「圣杰」

原文链接:https://www.cnblogs.com/sheng-jie/p/17294842.html

体验地址:引迈 - JNPF快速开发平台_低代码开发平台_零代码开发平台_流程设计器_表单引擎_工作流引擎_软件架构

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/714500.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

关于vue中关于eslint报错的问题

1 代码保存的时候会自动将单引号报错为双引号 导致eslint报错的问题&#xff0c; 解决思路&#xff1a; 在项目根目录下新建一个.prettierrc.json文件 { “tabWidth”: 2,“useTabs”: false,“singleQuote”: true,“semi”: false} 2 关于报错代码的时候 出现尾随逗号报错…

Zabbix 系统告警“More than 75% used in the configuration cache”处理办法

Zabbix系统报错提示 Zabbix 系统告警“More than 75% used in the configuration cache”&#xff0c;看了一下意思是可用的配置缓存超过75%。 修改缓存大小 vim /etc/zabbix/zabbix_server.confesc : /CacheSize 找到配置 将64M改大一点&#xff0c;保存退出。 重启zabbix…

【MySQL】数据库中常用的函数

目录 聚合函数COUNT()函数的多种用法COUNT(*)COUNT(主键)COUNT(1)COUNT(常量)COUNT(非主键)COUNT(distinct(字段)) COUNT()函数小结 字符函数length(str)函数&#xff1a;获取参数值的字节个数concat(str1,str2,...)函数&#xff1a;字符串拼接upper(str)、lower(str)函数:大小…

Linux高负载排查最佳实践

在Linux系统中&#xff0c;经常会因为负载过高导致各种性能问题。那么如何进行排查&#xff0c;其实是有迹可循&#xff0c;而且模式固定。 本次就来分享一下&#xff0c;CPU占用过高、磁盘IO占用过高的排查方法。 还是那句话&#xff0c;以最佳实践入手&#xff0c;真传一句话…

数据库-第二/三章 关系数据库和标准语言SQL【期末复习|考研复习】

前言 总结整理不易&#xff0c;希望大家点赞收藏。 给大家整理了一下计数据库系统概论中的重点概念&#xff0c;以供大家期末复习和考研复习的时候使用。 参考资料是王珊老师和萨师煊老师的数据库系统概论(第五版)。 文章目录 前言第二、三章 关系数据库和标准语言SQL2.1 关系2…

JVM原理-基础篇

Java虚拟机&#xff08;JVM, Java Virtual Machine&#xff09;是运行Java应用程序的核心组件&#xff0c;它是一个抽象化的计算机系统模型&#xff0c;为Java字节码提供运行环境。JVM的主要功能包括&#xff1a;类加载机制、内存管理、垃圾回收、指令解释与执行、异常处理与安…

虚拟机内存不够用了?全流程操作Look一下?

虚拟机信息&#xff1a;操作系统&#xff1a;CentOS Linux 7 (Core)&#xff0c;用的是VMware Workstation 16 Pro 版本16.2.3 build-19376536&#xff1b;我的主机 Windows 10 Education, 64-bit (Build 22000.1817) 10.0.22000 前言&#xff1a;虚拟机用久了就会出现内存不足…

Rocky Linux 安装部署 Zabbix 6.4

一、Zabbix的简介 Zabbix是一种开源的企业级监控解决方案&#xff0c;用于实时监测服务器、网络设备和应用程序的性能和可用性。它提供了强大的数据收集、处理和可视化功能&#xff0c;同时支持事件触发、报警通知和自动化任务等功能。Zabbix易于安装和配置&#xff0c;支持跨平…

【前端素材】推荐优质后台管理系统网页Hyper平台模板(附源码)

一、需求分析 1、系统定义 后台管理系统是一种用于管理和控制网站、应用程序或系统的管理界面。它通常被设计用来让网站或应用程序的管理员或运营人员管理内容、用户、数据以及其他相关功能。后台管理系统是一种用于管理网站、应用程序或系统的工具&#xff0c;通常由管理员使…

【AIGC】OpenAI推出王炸级模型sora,颠覆AI视频行业(2024)

对于OpenAI推出的Sora模型&#xff0c;我们可以进一步探讨其可能的技术细节、潜在应用以及对AI视频行业的影响。 点击以下任一云产品链接&#xff0c;跳转后登录&#xff0c;自动享有所有云产品优惠权益&#xff1a; 经过笔者亲测&#xff0c;强烈推荐腾讯云轻量应用服务器作…

【分类讨论】【割点】1568. 使陆地分离的最少天数

作者推荐 动态规划的时间复杂度优化 本文涉及知识点 分类讨论 割点 LeetCode1568. 使陆地分离的最少天数 给你一个大小为 m x n &#xff0c;由若干 0 和 1 组成的二维网格 grid &#xff0c;其中 1 表示陆地&#xff0c; 0 表示水。岛屿 由水平方向或竖直方向上相邻的 1 …

接口详细说明

接口概述 接口也是一种规范 接口的定义与特点 接口的格式如下&#xff1a; //接口用关键字interface来定义 public interface 接口名 {// 常量// 抽象方法 } JDK8之前接口中只能是抽象方法和常量&#xff0c;没有其他成分了。 接口不能实例化。 接口中的成员都是public修…

svn介绍 4.0

一、svn介绍&#xff08;版本控制工具&#xff09; 1、svn的定义&#xff1a; svn是一个开放源代码的版本控制系统&#xff0c;通过采用分支管理系统的高效管理&#xff0c;简而言之就是用于多个人共同开发同一个项目&#xff0c;实现共享资源&#xff0c;实现最终集中式个管…

电脑数据丢失是什么原因 易我数据恢复软件下载 easyrecovery数据恢复软件下载 电脑数据删除了怎么恢复 电脑数据库损坏了怎么找回

目录 一、电脑数据丢失是什么原因 二、电脑数据丢失如何恢复 三、EasyRecovery恢复电脑数据的方法介绍 电脑是我们大家熟悉并且常用的数据存储设备&#xff0c;也是综合性非常强的数据处理设备。对于电脑设备来讲&#xff0c;最主要的数据存储介质是硬盘&#xff0c;电脑硬…

CMU15445实验总结(Spring 2023)

CMU15445实验总结(Spring 2023) 背景 菜鸟博主是2024届毕业生&#xff0c;学历背景太差&#xff0c;导致23年秋招无果&#xff0c;准备奋战春招。此前有读过LevelDB源码的经历&#xff0c;对数据库的了解也仅限于LevelDB。奔着”有对比才能学的深“的理念&#xff0c;以及缓解…

linux系统Jenkins工具配置webhook自动部署

Jenkins工具webhook自动部署 webhook自动部署webhook的意义操作流程jenkins页面操作gitlab页面操作 webhook自动部署 webhook的意义 自动化部署&#xff1a;Webhook 可以在代码提交、合并请求或其他特定事件发生时自动触发 Jenkins 构建和部署任务&#xff0c;从而实现自动化…

C#,K中心问题(K-centers Problem)的算法与源代码

1 K中心问题&#xff08;K-centers Problem&#xff09; k-centers problem: 寻找k个半径越小越好的center以覆盖所有的点。 比如&#xff1a;给定n个城市和每对城市之间的距离&#xff0c;选择k个城市放置仓库&#xff08;或ATM或云服务器&#xff09;&#xff0c;以使城市…

【前端素材】推荐优质后台管理系统网页Highdmin平台模板(附源码)

一、需求分析 1、系统定义 后台管理系统是一种用于管理和控制网站、应用程序或系统的管理界面。它通常被设计用来让网站或应用程序的管理员或运营人员管理内容、用户、数据以及其他相关功能。后台管理系统是一种用于管理网站、应用程序或系统的工具&#xff0c;通常由管理员使…

express+mysql+vue,从零搭建一个商城管理系统7--文件上传,大文件分片上传

提示&#xff1a;学习express&#xff0c;搭建管理系统 文章目录 前言一、安装multer&#xff0c;fs-extra二、新建config/upload.js三、新建routes/upload.js四、修改routes下的index.js五、修改index.js六、新建上传文件test.html七、开启jwt验证token&#xff0c;通过login接…

Vue.js+SpringBoot开发开放实验室管理系统

目录 一、摘要1.1 项目介绍1.2 项目录屏 二、研究内容2.1 实验室类型模块2.2 实验室模块2.3 实验管理模块2.4 实验设备模块2.5 实验订单模块 三、系统设计3.1 用例设计3.2 数据库设计 四、系统展示五、样例代码5.1 查询实验室设备5.2 实验放号5.3 实验预定 六、免责说明 一、摘…