Semantic Kernel Cookbook Note:The content of this book is based on Semantic Kernel dotnet-1.16.2 and python-1.3.0 and java-1.2.0 With the rise of LLM, AI has entered the 2.0 era. Compared with previous AI techn
Using the Semantic Kernel Cookbook, you can define plugins that can be chained together in just a few lines of code.What makes Semantic Kernel special, however, is its ability to automatically orchestrate plugins with AI.With Semantic Kernel planners, you can ask ...
Planner is an important component of the Semantic Kernel. It can receive task instructions and then correspond to the built-in plug-ins or custom plug-ins that have been defined in the Kernel, so that the task instructions can work step by step. As mentioned at the beginning, in fact, fo...
本章介绍了 Semantic Kernel 的特点、核心概念以及与 OneApi 的对接方式,算是我们SK学习的 HelloWorld,展示了如何利用 Semantic Kernel 构建智能应用并与在线大模型进行集成。 参考文献 Semantic Kernel Cookbook[1] Prompting AI models with Semantic Kernel[2] What is Semantic Kernel[3] 本文示例源代码 本文源代码...
地址:github.com/microsoft/SemanticKernelCookBookSemantic Kernel 是一个轻量级的开源框架,通过 Semantic Kernel 您可以快速使用不同编程语言(C#/Python/Java)结合 LLMs(OpenAI、Azure OpenAI、Hugging Face 等模型) 构建智能应用。“随着大模型兴起,人工智能进入到 2.0 时代,与过往人工智能技术相比门槛降低了,可应用性...
专注在云原生、人工智能、大数据、物联网等领域。在 GenAI 领域著有围绕小模型的《Phi-3 Cookbook》(阅读量超过40万)和 Copilot 应用框架《Semantic Kernel Cookbook》,并为不同客户提供基于 LLMOps 和 SLMOps 的一体化解决方案。 分享主题:工作坊:动手实践 Semantic Kernel...
卢建晖专注于云原生、人工智能、大数据及物联网等前沿技术,并在GenAI领域有深厚造诣,曾撰写《Phi-3 Cookbook》和《Semantic Kernel Cookbook》等专著,为众多客户提供基于LLMOps和SLMOps的一体化解决方案。此次分享会,他将带领大家深入探讨Semantic Kernel的实践应用。衣明志,基普智能科技(山东)有限公司创始人,微软最...
这里的feiyun0112.SemanticKernel.Connectors.OnnxRuntimeGenAI.DirectML是可选的,因为最后咱将会自己编写所有对接代码,不需要使用大佬写好的现有组件 先给大家演示使用feiyun0112.SemanticKernel.Connectors.OnnxRuntimeGenAI.DirectML提供的简单版本。此版本代码大量从https://github.com/microsoft/Phi-3CookBook/blob/0a167...
Semantic Kernel中的函数 Semantic Function是用自然语言编写的提示(Prompt)模板,发送给AI服务;而Native Function是用C#或Python编写的传统函数,可以通过规划器和函数调用被AI服务调用。 返回顶部 记忆(Memories) Memories是用于存储数据的专用插件,它们在执行过程中为你的内核提供必要的上下文,以便你的AI服务能够正常运行。
另外当涉及到上下文的管理,插件参数的传递时,Kernel也能发挥重要的作用。 接下来我们就以开始着手上手SK应用开发的学习。 准备阶段 首先准备一个应用环境,Console 可以,ASP.NET 也可以,Notebooks 也可以。使用Notebooks的话推荐参考官方的Notebooks合集和Semantic Kernel CookBook。 应用环境准备好之后,和所有的.Net 库一...