Charlie

Results 4 issues of Charlie

当使用 io.rong.methods.user.Update 方法刷新用户信息时,提示 portrait 参数必须提供。但是根据融云官网,refresh user api 中,portrait 则时可选的。 ![image](https://user-images.githubusercontent.com/6631727/76182453-f00a8f00-61ff-11ea-8d49-236c062b9538.png)

原来的 dotnet sdk 只支持 .net framework,无法适用于 .net core 项目。另外原先的项目中的 json 文件必须随 dll 一起被使用方引用,否则会出现找不到对应 json 的问题。 通过本次改动,将项目变成 .net standard 2.0 项目,使其可同时被 .net framework 及 .net core 使用。另外,将 json 资源作为 嵌入的资源,这样使用方只需要引用 dll...

we have a self hosted weaviate vector db in production env that dosen't require authenticiton. And the url of the weaviate is something like 'http://weaviate.weaviate.svc.cluster.local' which dosen't have 'localhost' ....

从 reporter 的代码看,会把所有 researcher 的结果(observations) 作为 reporter 上下文的一部分,如果 LLM 支持的上下文长度有限,可能会超过允许的限制,有什么处理方案吗?