mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
[dev] rename operation name
This commit is contained in:
parent
632fa86d48
commit
68b0af8ee3
2 changed files with 3 additions and 2 deletions
|
|
@ -13,8 +13,9 @@ memory_service:
|
|||
class: memory.service.chat_memory_service
|
||||
history_msg_count: 32
|
||||
contextual_msg_count: 6
|
||||
read_memory_key: read_memory
|
||||
memory_operations:
|
||||
read_user_message:
|
||||
contextual_message:
|
||||
class: memory.operation.read_memory
|
||||
workflow: dummy
|
||||
description: "read session messages of the user"
|
||||
|
|
|
|||
|
|
@ -52,5 +52,5 @@ class BaseWorker(metaclass=ABCMeta):
|
|||
else:
|
||||
self.context[key] = value
|
||||
|
||||
def __getattr__(self, key):
|
||||
def __getattr__(self, key: str):
|
||||
return self.kwargs[key]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue