We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7dec37 commit d483d9dCopy full SHA for d483d9d
packages/plugins/robot/src/Main.vue
@@ -494,7 +494,10 @@ export default {
494
495
const search = async (content) => {
496
try {
497
- const res = await getMetaApi(META_SERVICE.Http).post('/app-center/api/ai/search', { content })
+ const res = await getMetaApi(META_SERVICE.Http).post('/app-center/api/vector-storage/search', {
498
+ content,
499
+ collection: 'tinyengine_documents'
500
+ })
501
502
res.forEach((item) => {
503
searchContent.value += item.content
0 commit comments