mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-09 22:31:05 +00:00
[dev] del profile memory type
This commit is contained in:
parent
b4db19ec59
commit
5a7af480d1
2 changed files with 2 additions and 1 deletions
|
|
@ -105,5 +105,6 @@ vector_store:
|
|||
embedding_model: dashscope_embedding
|
||||
index_name: memory_index
|
||||
es_url: http://localhost:9200
|
||||
use_hybrid: false
|
||||
monitor:
|
||||
class: storage.dummy_monitor
|
||||
|
|
@ -25,7 +25,7 @@ class RetrieveStoreWorker(MemoryBaseWorker):
|
|||
"user_name": self.user_name,
|
||||
"target_name": self.target_name,
|
||||
"status": MemoryNodeStatus.ACTIVE.value,
|
||||
"memory_type": [MemoryTypeEnum.INSIGHT.value, MemoryTypeEnum.PROFILE.value],
|
||||
"memory_type": MemoryTypeEnum.INSIGHT.value,
|
||||
}
|
||||
return await self.vector_store.async_retrieve(query=query,
|
||||
top_k=self.retrieve_ins_pf_top_k,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue