John
John
感谢反馈,我们升级一下
Hi, @vince-fugnitto, I'm @Ricbet, the core developer of [opensumi](https://github.com/opensumi/core). The 3-way merge editor feature has been implemented in our opensumi framework. However, unlike the mode in vscode, it uses a...
**1. service 是否需要接入第三方 AI 平台?** 是的,opensumi 本身并没有内置大模型, 这个文件里的实现只是一个简单实现,用于模拟第三方 AI 的接口交互。 要想真正对接第三方 AI 服务可以在这个方法里实现https://github.com/opensumi/core/blob/84252e2d5e872e08b00b89097eb8ea21e97ae36b/packages/startup/entry/sample-modules/ai-native/ai.back.service.ts#L73 input : 就是 prompt,这个 prompt 通常来自 chat 对话的用户输入内容,或者是来自你前端主动调用该后端方法时传递的 prompt 内容 **2. Contribution 如何配置?** 这里其实就是 AppConfig 里的配置 https://opensumi.com/zh/docs/integrate/universal-integrate-case/custom-config#%E6%B5%8F%E8%A7%88%E5%99%A8%E7%AB%AF%E9%85%8D%E7%BD%AE...