1
helloword001 OP 我顶
|
2
luzemin 2023-10-27 16:01:22 +08:00 1
|
3
Selenium39 2023-10-27 16:06:23 +08:00
现在各种 chatXXX 太多了,能不能弄一个 chatAll 的网站
ChatLaw: https://chatlaw.cloud ChatDoctor: https://github.com/Kent0n-Li/ChatDoctor ChatPPT: http://chatppt.closeai.red ChatDoc: https://chatdoc.com ChatDb: https://www.chatdb.ai |
4
edisonwong 2023-10-27 16:09:27 +08:00
@Selenium39 我写了个有点类似的,参考帖子 https://v2ex.com/t/983404 也许不是很完善,目前在优化中
|
5
helloword001 OP @luzemin 牛逼
|
6
helloword001 OP @edisonwong 你这开源吗,能学习一下吗
|
7
edisonwong 2023-10-27 16:39:05 +08:00
@helloword001 我这个的内核的逻辑跟 quvir 没区别,可以看看 github quvir
|
8
mmdsun 2023-10-27 21:24:04 +08:00
我用 Azure OpenAI GPT-4 ,接口它是支持自定义数据集,调用聊天接口指定数据源就可以了:背后也是向量搜索。
https://learn.microsoft.com/zh-cn/azure/ai-services/openai/concepts/use-your-data#data-formats-and-file-types (——提示用这种认识搜索服务是要额外花钱的,如果考虑成本自建更好,开源向量数据库也很多) ``` { "messages": [ { "role": "user", "content": "who is my manager?" } ], "dataSources": [ { "type": "AzureCognitiveSearch", "parameters": { "endpoint": "'$SearchEndpoint'", "key": "'$SearchKey'", "indexName": "'$SearchIndex'", "filter": "my_group_ids/any(g:search.in(g, 'group_id1, group_id2'))" } } ] } ``` |