首页 新闻 会员 周边 捐助
0
回答数

待解决问题 30 通义千问开源大模型 Qwen 是否支持 function calling

请问自己部署的通义千问开源大模型 Qwen 是否支持 function calling,目前已知的是阿里云 DashScope + Qwen 不支持 function calling 相关博问 htt
1
回答数

待解决问题 30 Kernel Memory 的 ServiceCollectionPool 配置 HttpClient 问题

下面的代码中使用 ConfigureHttpClientDefaults 遇到问题 var builder = new KernelMemoryBuilder(); // builder.Servic
1
回答数

回答被采纳 30 Kernel Memory: 如何通过 IKernelMemoryBuilder 配置 HttpClient

最近在学习 Kernel Memory,想给 HttpClient 添加一个 DelegatingHandler 看看 OpenAI 的 api 响应内容 var builder = new Kern
1
回答数

回答被采纳 30 阿里巴巴矢量图标库 iconfont 使用问题:添加图标后不生效

在“我的项目”中添加图标后,通过 /api/project/download.zip 下载的文件中没有包含新添加的图标,请问如何解决这个问题?
1
回答数

回答被采纳 30 Semantic Kernel: Semantic Memory 与 Kernel Memory

今天发现 Semantic Kernel 的 Memory 有两种实现,分别是 Semantic Memory 与 Kernel Memory,它们的区别是什么?
3
回答数

待解决问题 30 请问国内有没有支持 function calling 的大模型

目前已知的是通义千问暂不支持 function calling,请问国内有没有其他支持 function calling 的大模型?
1
回答数

回答被采纳 30 Semantic Kernel: AddFromPromptDirectory 与 ImportPluginFromPromptDirectory 的区别

在 Semantic Kernel 中 IKernelBuilder.Plugins 有个方法 AddFromPromptDirectory,Kernel有个扩展方法 ImportPluginFrom
1
回答数

回答被采纳 30 .NET: MongoDB.Bson 反序列化问题 "Element does not match any field or property of class"

用 MongoDB.Bson 反序列化 Newtonsoft.Json.Bson 序列化的内容,出现下面的错误 System.FormatException: Element 'HasBlog' do
1
回答数

回答被采纳 30 .NET: MongoDB.Bson 序列化问题

使用 MongoDB.Bson 序列化对象时遇到了问题,直接对实例序列化正常,转换为 object 实例化失败,示例代码如下 using MongoDB.Bson; TestData dt = new
4
回答数

待解决问题 30 大模型相关概念理解:grounding 与 embedding 的区别

请问在大语言模型(Large Language Model)中 grounding 与 embedding 的区别是什么?
1
回答数

回答被采纳 30 如何通过 EF Core 实现对某个字段进行减一更新

比如博问在删除回答时更新问题的评论数,如果写成 SQL 是下面这样的: UPDATE [dbo].[question_Item] SET [AnswerCount] = AnswerCount - 1
1
回答数

回答被采纳 30 阿里云模型服务灵积 DashScope 是否支持 function calling

在博文 一次失败的尝试:one-api + dashscope + qwen-max 运行 Semantic Kernel 插件 中遇到的问题,不确定 DashScope 是否支持 function
1
回答数

回答被采纳 30 MongoDB.Bson 是否兼容 Newtonsoft.Json.Bson

准备将 EnyimMemcachedCore 中使用的 Newtonsoft.Json.Bson 换成 MongoDB.Bson,请问 Newtonsoft.Json.Bson 序列化的内容是否可以被
2
回答数

回答被采纳 30 如何通过 C# 代码 prompt 对应的 token 数量

想在将 prompt 发给大模型之前用 C# 代码计算对应的 token 数量,请问如何计算?
1
回答数

回答被采纳 30 ASP.NET 应用启动报错:"Unable to resolve service for type 'Microsoft.AspNetCore.Hosting.Server.IServer'"

Progam 中的代码如下: public class Program { public static void Main(string[] args) { CreateHostBuilder(arg
1
回答数

回答被采纳 30 Semantic Kernel Plugin 没有执行 function calling

返回下面的 json,LightPlugin 的 ChangeState 方法却没有执行,请问如何解决? { "id": "39c54775-a5ea-480e-bfa1-6a39768be395",
1
回答数

回答被采纳 30 基于已有 json 定义用于反序列化的 C# 类

下面的 json 是 Semantic Kernel 中请求 OpenAI 的 api 时生成的,想基于这个 json 定义反序列化的 C# 类,请问如何定义? { "messages": [ { "
1
回答数

回答被采纳 30 如何让 Semantic Kernel 中 json 序列化时不对中文进行编码

Semantic Kernel 在 json 序列化时默认会对中文进行编码,比如下面的 json {"content":"\u8BF7\u5F00\u706F","role":"user"} 请问如何
1
回答数

待解决问题 30 Azure.AI.OpenAI.ChatResponseMessage json 序列化问题

下面是序列化 ChatResponseMessage 的代码 var message = AzureOpenAIModelFactory.ChatResponseMessage(ChatRole.As
1
回答数

待解决问题 30 Semantic Kernel 结合通义千问遇到 AutoInvokeKernelFunctions 不能正常工作的问题

按照微软官方帮助文档 What is Semantic Kernel? 中的代码,以阿里云灵积 DashScope 作为 chat completion service 调用通义千问大模型,却没有执行
1
回答数

回答被采纳 30 Semantic Kernel: [KernelFunction] 与 [SKFunction] 的区别是什么

在 What is an agent? 中用到了 [KernelFunction],在 Understanding AI plugins in Semantic Kernel 中用到了 [SKFunc
1
回答数

回答被采纳 30 如何消除 C# 编译警告 CS8425

今天在实现 semantic kernel 的 IChatCompletionService 接口的 GetStreamingChatMessageContentsAsync 方法时,出现下面的 bu
1
回答数

回答被采纳 30 Semantic Kernel: text generation 与 chat completion 的区别是什么

在 Semantic Kernel 中有2个接口,分别是 ITextGenerationService 与 IChatCompletionService,请问它们的区别是什么?
1
回答数

回答被采纳 30 Semantic Kernel: 如何修改所请求的 OpenAI API url 中的 schem 与 hostname

Semantic Kernel 没有提供通义千问 Qwen 的内置支持,通义千问也没有提供对 Semantic Kernel 的支持,但通义提供了兼容 OpenAI api 的 api,已经成功部署通
1
回答数

回答被采纳 30 model checkpoint 是指什么

在通义千问 Qwen 的 README 中的 docker 部署 部分有这样一段文字: Download model checkpoints and codes to your environment