php+mongodb如何实现RAG向量搜索引擎?
网友回复
2023年6月mongodb新版发布增加了向量检索的功能,全面拥抱ai
创建向量索引
{
"type": "vectorSearch,
"fields": [{
"path": "plot_embedding_hf",
"dimensions": 384,
"similarity": "dotProduct",
"type": "vector"
}]
}
RAG检索
query = "imaginary characters...
点击查看剩余70%


