记忆体基类 (BaseMemory)¶
BaseMemory ¶
Bases: TFNeuralModel, ABC
Base class for memory.
记忆内目前主要有以下几种内容:
- 聊天记录
- 文档记录
针对以上两种内容,提供三种存储方式: 1. 纯文本存储(可以是基于内存的,也可以是基于PG) 2. 向量存储(向量模型可以自定义,存储数据库可以自定义) 3. 知识图谱存储(基于owl2的知识图谱存储,多种存储模式可选择)
记忆类的主要任务如下:
- 提供从记忆中获取内容的方法(依据自然语言输入,返回既定要求大小的内容) a. 对于交互而言,尽量使用query相关接口,基于message进行查询与召回 b. 与此同时,Memory也提供一系列Get方法,可以程序化的查询,方便实现一些管理接口,但与用户日常交互时尽量避免这种结构化接口的使用。
- 提供记忆的持久化与加载方法(这部分由基类TFBaseModel实现) a. 使用基于Message的Commit方法将信息持久化 b. 与此同时,也提供 add/update/delete 方法,可以允许通过结构化的数据调用来维护Memory内容,这些方法作为手动维护memory的补充,而不应该是主流方式。
recall
abstractmethod
¶
recall(current_input: UserAndAssMsg, chunk_size: int | Annotated[list[int], Len(4, 4)], length_function: Callable[[str], int], exclude_str: Optional[str] = None) -> Tuple[Optional[list[UserAndAssMsg]], Optional[list[DocElement]], Optional[str]]
Recalls the content from memory based on the given natural language input.
根据给定的自然语言输入从内存中检索内容。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
current_input
|
str
|
The message user input. This is used to recall the content from memory. It is usually 用户输入的消息。用这个来从内存中回忆内容。通常由聊天输入历史记录格式化。 |
required |
chunk_size
|
Union[int, List[int]]
|
The size of the content to recall. It can be a single number or a list of numbers. If it is a list, the first number is the size of the conversation content to recall, the second number is the size of the memo content to recall, the third number is the size of the knowledge content to recall, and the fourth number is the size of the keyword content to recall. If it is a single number, it will be converted into four equal numbers. 要回忆的内容的大小。可以是单个数字或数字列表。如果是列表,第一个数字是要回忆的对话内容的大小,第二个数字是要回忆的备忘内容的大小, 第三个数字是要回忆的知识内容的大小,第四个数字是要回忆的关键字内容的大小。如果是单个数字,将被转换为四个相等的数字。 |
required |
length_function
|
Callable
|
A function to calculate the length of the content to recall. 用于计算所回忆内容长度的函数。 |
required |
exclude_str
|
Optional[str]
|
The string to exclude from the recall. 从回忆中排除的字符串。 |
None
|
Returns: Tuple[Optional[list[BaseMessage]], Optional[list[DocElement]], Optional[str]]: The content recalled from memory.
分别是代表对话、文档元素和知识的内容。
Source code in tfrobot/brain/memory/base.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | |
async_recall
abstractmethod
async
¶
async_recall(current_input: UserAndAssMsg, chunk_size: int | Annotated[list[int], Len(4, 4)], length_function: Callable[[str], int], exclude_str: Optional[str] = None) -> Tuple[Optional[list[UserAndAssMsg]], Optional[list[DocElement]], Optional[str]]
Async Recalls the content from memory based on the given natural language input.
根据给定的自然语言输入从内存中使用Asycn模式检索内容。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
current_input
|
str
|
The message user input. This is used to recall the content from memory. It is usually 用户输入的消息。用这个来从内存中回忆内容。通常由聊天输入历史记录格式化。 |
required |
chunk_size
|
Union[int, List[int]]
|
The size of the content to recall. It can be a single number or a list of numbers. If it is a list, the first number is the size of the conversation content to recall, the second number is the size of the memo content to recall, and the third number is the size of the knowledge content to recall. If it is a single number, it will be converted into three equal numbers. 要回忆的内容的大小。可以是单个数字或数字列表。如果是列表,第一个数字是要回忆的 对话内容的大小,第二个数字是要回忆的备忘内容的大小,第三个数字是要回忆的知识内容的大小。如果是单个数字,将被转换为三个相等的数字。 |
required |
length_function
|
Callable
|
A function to calculate the length of the content to recall. 用于计算所回忆内容长度的函数。 |
required |
exclude_str
|
Optional[str]
|
The string to exclude from the recall. 从回忆中排除的字符串。 |
None
|
Returns: Tuple[Optional[list[BaseMessage]], Optional[list[DocElement]], Optional[str]]: The content recalled from memory.
分别是代表对话、文档元素和知识的内容。
Source code in tfrobot/brain/memory/base.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |
commit
abstractmethod
¶
commit(msg: UserAndAssMsg) -> None
Commits the chain result to memory.
将链结果提交到记忆中。
一般可以在此进行比如知识更新,或者文档更新相关操作。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
msg
|
UserAndAssMsg
|
The chain result to commit. | 要提交的链结果。 |
required |
Source code in tfrobot/brain/memory/base.py
199 200 201 202 203 204 205 206 207 208 209 210 211 | |
acommit
abstractmethod
async
¶
acommit(msg: UserAndAssMsg) -> None
Commits the chain result to memory asynchronously.
Default call self.commit()
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
msg
|
UserAndAssMsg
|
The chain result to commit. | 要提交的链结果。 |
required |
Source code in tfrobot/brain/memory/base.py
213 214 215 216 217 218 219 220 221 222 223 | |
get_platforms
abstractmethod
¶
get_platforms() -> Sequence[tuple[PLATFORM_ID, str]] | None
获取当前会话平台列表,返回一个 list[tuple] tuple第一个元素为ID,第二个元素为platform可读标识
但注意,有的ConversationManager,如 DictBaseConversationManger 无Platform概念,因此可能返回None
Notes
返回值如果为None,表示当前Memory不支持Platform。 返回值如果为List,表示当前Memory支持Platform模式,即使为空,也支持创建。 这种表征方法并不是非常明确,更好的做法是添加一个 is_support_platform bool字段,但未来开发新的Memory建议都需要实现platform管理 返回None仅仅是为了向前兼容 AIMemory+DictBaseConversationManager这种极简情况,考虑到Memory中的接口寸土寸金,因此不添加专门用于表征是否支持Platform的字段
Returns:
| Type | Description |
|---|---|
Sequence[tuple[PLATFORM_ID, str]] | None
|
list[tuple[int, str]] | None: 注意返回值可空 |
Source code in tfrobot/brain/memory/base.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | |
aget_platforms
abstractmethod
async
¶
aget_platforms() -> Sequence[tuple[PLATFORM_ID, str]] | None
获取当前会话平台列表,返回一个 list[tuple] tuple第一个元素为ID,第二个元素为platform可读标识
但注意,有的ConversationManager,如 DictBaseConversationManger 无Platform概念,因此可能返回None
Notes
返回值如果为None,表示当前Memory不支持Platform。 返回值如果为List,表示当前Memory支持Platform模式,即使为空,也支持创建。 这种表征方法并不是非常明确,更好的做法是添加一个 is_support_platform bool字段,但未来开发新的Memory建议都需要实现platform管理 返回None仅仅是为了向前兼容 AIMemory+DictBaseConversationManager这种极简情况,考虑到Memory中的接口寸土寸金,因此不添加专门用于表征是否支持Platform的字段
Returns:
| Type | Description |
|---|---|
Sequence[tuple[PLATFORM_ID, str]] | None
|
list[tuple[int, str]] | None: 注意返回值可空 |
Source code in tfrobot/brain/memory/base.py
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | |
add_platform
abstractmethod
¶
add_platform(platform_name: str) -> PLATFORM_ID
添加Platform,返回值为PlatformID
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
platform_name
|
str
|
Platform名称,但需要注意,有些Memory可能会对PlatformName做Reformat |
required |
Returns:
| Name | Type | Description |
|---|---|---|
PLATFORM_ID |
PLATFORM_ID
|
PlatformID |
Source code in tfrobot/brain/memory/base.py
261 262 263 264 265 266 267 268 269 270 271 272 | |
aadd_platform
abstractmethod
async
¶
aadd_platform(platform_name: str) -> PLATFORM_ID
添加Platform,返回值为PlatformID
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
platform_name
|
str
|
Platform名称,但需要注意,有些Memory可能会对PlatformName做Reformat |
required |
Returns:
| Name | Type | Description |
|---|---|---|
PLATFORM_ID |
PLATFORM_ID
|
PlatformID |
Source code in tfrobot/brain/memory/base.py
274 275 276 277 278 279 280 281 282 283 284 285 | |
update_platform
abstractmethod
¶
update_platform(platform_id: PLATFORM_ID, platform_name: str) -> None
更新Platform名称 | Update platform name
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
platform_id
|
PLATFORM_ID
|
Platform的ID | Platform ID |
required |
platform_name
|
str
|
新的Platform名称 | New platform name |
required |
Source code in tfrobot/brain/memory/base.py
287 288 289 290 291 292 293 294 295 296 | |
aupdate_platform
abstractmethod
async
¶
aupdate_platform(platform_id: PLATFORM_ID, platform_name: str) -> None
更新Platform名称 | Update platform name
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
platform_id
|
PLATFORM_ID
|
Platform的ID | Platform ID |
required |
platform_name
|
str
|
新的Platform名称 | New platform name |
required |
Source code in tfrobot/brain/memory/base.py
298 299 300 301 302 303 304 305 306 307 | |
delete_platform
abstractmethod
¶
delete_platform(platform_id: PLATFORM_ID) -> None
删除Platform | Delete platform
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
platform_id
|
PLATFORM_ID
|
要删除的Platform的ID | Platform ID to delete |
required |
Source code in tfrobot/brain/memory/base.py
309 310 311 312 313 314 315 316 317 | |
adelete_platform
abstractmethod
async
¶
adelete_platform(platform_id: PLATFORM_ID) -> None
删除Platform | Delete platform
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
platform_id
|
PLATFORM_ID
|
要删除的Platform的ID | Platform ID to delete |
required |
Source code in tfrobot/brain/memory/base.py
319 320 321 322 323 324 325 326 327 | |
get_conversations
abstractmethod
¶
get_conversations(cursor: Optional[str] = None, count: Optional[int] = None, platform_id: Optional[PLATFORM_ID] = None) -> tuple[list[tuple[CONVERSATION_KEY, str]], str]
Get all conversations from memory.
从记忆中获取所有对话。
因为会话排序随时有可能打乱,因此每次请求的时候指定一个初始位置是很有必要的。如此一来,前台可以获取到最新并且没有重复的对话。这里的最佳实践本来应该 使用游标,比如使用 update_timestamp * 1000 + id % 1000 生成游标。但我们系统并非专业的会话管理系统,其数据压力和数据量都不会过大,因此这里 不单独维护游标字段,而是直接让前台动态使用当前最后一个对话的ID作为游标。这样可以保证前台获取到的对话是最新的,且不会重复。如果有问题,刷新页面即可解决。
count支持负值,表示从后向前取数。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cursor
|
int | str | None
|
The id/index of the conversation to start from. | 要从哪个对话开始。 |
None
|
count
|
Optional[int]
|
The number of conversations to get. | 要获取的对话数量。 |
None
|
platform_id
|
Optional[int]
|
The platform id of the conversation. | 对话的平台ID。 |
None
|
Returns:
| Type | Description |
|---|---|
tuple[list[tuple[CONVERSATION_KEY, str]], str]
|
tuple[list[tuple[CONVERSATION_KEY, str]], str]: The list of conversations and the next cursor. | 对话列表和下一个游标。 |
Source code in tfrobot/brain/memory/base.py
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 | |
aget_conversations
abstractmethod
async
¶
aget_conversations(cursor: Optional[str] = None, count: Optional[int] = None, platform_id: Optional[PLATFORM_ID] = None) -> tuple[list[tuple[CONVERSATION_KEY, str]], str]
Get all conversations from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
354 355 356 357 358 359 | |
get_conversation
abstractmethod
¶
get_conversation(conversation_id: CONVERSATION_KEY) -> Optional[BaseBufferStore]
Get a conversation from memory.
从记忆中获取一段对话。
注意页码可以是负数,表示从后向前取第几页。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conversation_id
|
int | str
|
The id/index of the conversation. | 对话的索引。 |
required |
Returns:
| Type | Description |
|---|---|
Optional[BaseBufferStore]
|
list[BaseMessage]: The conversation. | 对话。 |
Source code in tfrobot/brain/memory/base.py
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | |
aget_conversation
abstractmethod
async
¶
aget_conversation(conversation_id: CONVERSATION_KEY) -> Optional[BaseBufferStore]
Get a conversation from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
378 379 380 381 | |
get_conversation_messages
abstractmethod
¶
get_conversation_messages(conversation_id: CONVERSATION_KEY, page: int, size: int, type_include: Optional[list[str]] = None, type_exclude: Optional[list[str]] = None, role_include: Optional[list[str]] = None, role_exclude: Optional[list[str]] = None, filter_meta: Optional[Callable[[Attributes], bool]] = None) -> list[UserAndAssMsg]
Get messages from a conversation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conversation_id
|
int | str
|
The id/index of the conversation. | 对话的索引。 |
required |
page
|
int
|
The page number. | 页码。 |
required |
size
|
int
|
The size of the page. | 页的大小。 |
required |
type_include
|
Optional[list[str]]
|
The message types to include. | 要包含的消息类型。 |
None
|
type_exclude
|
Optional[list[str]]
|
The message types to exclude. | 要排除的消息类型。 |
None
|
role_include
|
Optional[list[str]]
|
The message roles to include. | 要包含的消息角色。 |
None
|
role_exclude
|
Optional[list[str]]
|
The message roles to exclude. | 要排除的消息角色。 |
None
|
filter_meta
|
Optional[Callable[[Attributes], bool]]
|
The function to filter messages by metadata. | 用于根据 元数据过滤消息的函数。 |
None
|
Returns:
| Type | Description |
|---|---|
list[UserAndAssMsg]
|
list[UserAndAssMsg]: The messages from the conversation. | 对话中的消息。 |
Source code in tfrobot/brain/memory/base.py
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | |
aget_conversation_messages
abstractmethod
async
¶
aget_conversation_messages(conversation_id: CONVERSATION_KEY, page: int, size: int, type_include: Optional[list[str]] = None, type_exclude: Optional[list[str]] = None, role_include: Optional[list[str]] = None, role_exclude: Optional[list[str]] = None, filter_meta: Optional[Callable[[Attributes], bool]] = None) -> list[UserAndAssMsg]
Get messages from a conversation asynchronously.
Source code in tfrobot/brain/memory/base.py
414 415 416 417 418 419 420 421 422 423 424 425 426 427 | |
get_latest_msg_from_conversation
abstractmethod
¶
get_latest_msg_from_conversation(conversation_id: CONVERSATION_KEY) -> Optional[UserAndAssMsg]
Get the latest message from a conversation.
Source code in tfrobot/brain/memory/base.py
429 430 431 432 | |
aget_latest_msg_from_conversation
abstractmethod
async
¶
aget_latest_msg_from_conversation(conversation_id: CONVERSATION_KEY) -> Optional[UserAndAssMsg]
Get the latest message from a conversation asynchronously.
Source code in tfrobot/brain/memory/base.py
434 435 436 437 | |
get_conversation_messages_by_cursor
abstractmethod
¶
get_conversation_messages_by_cursor(conversation_id: CONVERSATION_KEY, count: int, cursor: Optional[str] = None, type_include: Optional[list[str]] = None, type_exclude: Optional[list[str]] = None, role_include: Optional[list[str]] = None, role_exclude: Optional[list[str]] = None, filter_meta: Optional[Callable[[Attributes], bool]] = None) -> tuple[list[UserAndAssMsg], str]
Get messages from a conversation by cursor.
Count可以是负数,如果是负数,表示从后向前取。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conversation_id
|
int | str
|
The id/index of the conversation. | 对话的索引。 |
required |
cursor
|
str
|
The cursor to get messages. | 获取消息的游标。 |
None
|
count
|
int
|
The number of messages to get. | 要获取的消息数量。 |
required |
type_include
|
Optional[list[str]]
|
The message types to include. | 要包含的消息类型。 |
None
|
type_exclude
|
Optional[list[str]]
|
The message types to exclude. | 要排除的消息类型。 |
None
|
role_include
|
Optional[list[str]]
|
The message roles to include. | 要包含的消息角色。 |
None
|
role_exclude
|
Optional[list[str]]
|
The message roles to exclude. | 要排除的消息角色。 |
None
|
filter_meta
|
Optional[Callable[[Attributes], bool]]
|
The function to filter messages by metadata. | 用于根据 |
None
|
Returns:
| Type | Description |
|---|---|
tuple[list[UserAndAssMsg], str]
|
tuple[list[UserAndAssMsg], str]: The messages from the conversation and the cursor. | 对话中的消息和游标。 |
Source code in tfrobot/brain/memory/base.py
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 | |
aget_conversation_messages_by_cursor
abstractmethod
async
¶
aget_conversation_messages_by_cursor(conversation_id: CONVERSATION_KEY, count: int, cursor: Optional[str] = None, type_include: Optional[list[str]] = None, type_exclude: Optional[list[str]] = None, role_include: Optional[list[str]] = None, role_exclude: Optional[list[str]] = None, filter_meta: Optional[Callable[[Attributes], bool]] = None) -> tuple[list[UserAndAssMsg], str]
Get messages from a conversation asynchronously.
Source code in tfrobot/brain/memory/base.py
471 472 473 474 475 476 477 478 479 480 481 482 483 484 | |
add_conversation
abstractmethod
¶
add_conversation(name: str, platform_id: Optional[PLATFORM_ID] = None) -> CONVERSATION_KEY
Add a conversation to memory.
是否需要传递平台ID,取决不同的实现。但建议尽量传递。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The name of the conversation. | 对话的名称。 |
required |
platform_id
|
Optional[int]
|
The platform id of the conversation. | 对话的平台ID。 |
None
|
Returns:
| Type | Description |
|---|---|
CONVERSATION_KEY
|
int | str: The id of the added conversation. | 添加的对话的ID。 |
Source code in tfrobot/brain/memory/base.py
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 | |
aadd_conversation
abstractmethod
async
¶
aadd_conversation(name: str, platform_id: Optional[PLATFORM_ID] = None) -> CONVERSATION_KEY
Add a conversation asynchronously.
Source code in tfrobot/brain/memory/base.py
502 503 504 505 | |
update_conversation
abstractmethod
¶
update_conversation(conversation_id: CONVERSATION_KEY, name: str) -> None
Update a conversation in memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conversation_id
|
int | str
|
The id/index of the conversation. | 对话的索引。 |
required |
name
|
str
|
The name of the conversation. | 对话的名称。 |
required |
Source code in tfrobot/brain/memory/base.py
507 508 509 510 511 512 513 514 515 516 | |
aupdate_conversation
abstractmethod
async
¶
aupdate_conversation(conversation_id: CONVERSATION_KEY, name: str) -> None
Update a conversation asynchronously.
Source code in tfrobot/brain/memory/base.py
518 519 520 521 | |
delete_conversation
abstractmethod
¶
delete_conversation(conversation_id: CONVERSATION_KEY) -> None
Delete a conversation from memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
conversation_id
|
int | str
|
The id/index of the conversation. | 对话的索引。 |
required |
Source code in tfrobot/brain/memory/base.py
523 524 525 526 527 528 529 530 531 | |
adelete_conversation
abstractmethod
async
¶
adelete_conversation(conversation_id: CONVERSATION_KEY) -> None
Delete a conversation from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
533 534 535 536 | |
get_docs
abstractmethod
¶
get_docs(page: Optional[int] = None, size: Optional[int] = None, keywords: Optional[list[str]] = None) -> list[Document]
Get all documents from memory.
从记忆中获取所有文档。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
page
|
Optional[int]
|
The page number. | 页码。 |
None
|
size
|
Optional[int]
|
The size of the page. | 页的大小。 |
None
|
keywords
|
Optional[list[str]]
|
The keywords to search for. | 要搜索的关键字 |
None
|
Returns:
| Type | Description |
|---|---|
list[Document]
|
list[DocElement]: The list of all documents. |
Source code in tfrobot/brain/memory/base.py
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 | |
aget_docs
abstractmethod
async
¶
aget_docs(page: Optional[int] = None, size: Optional[int] = None) -> list[Document]
Get all documents from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
557 558 559 560 | |
get_doc
abstractmethod
¶
get_doc(doc_id: int) -> Document
Get a document from memory.
从记忆中获取文档。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc_id
|
int
|
The id of the document to get. | 要获取的文档的ID。 |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Document |
Document
|
The document. | 文档。 |
Source code in tfrobot/brain/memory/base.py
562 563 564 565 566 567 568 569 570 571 572 573 574 575 | |
aget_doc
abstractmethod
async
¶
aget_doc(doc_id: int) -> Document
Get a document from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
577 578 579 580 | |
add_doc
abstractmethod
¶
add_doc(doc: Document) -> DocId
Add a document to memory.
添加文档到记忆中。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc
|
Document
|
The document to add. | 要添加的文档。 |
required |
Returns:
| Name | Type | Description |
|---|---|---|
DocId |
DocId
|
The id of the added document. |
Source code in tfrobot/brain/memory/base.py
582 583 584 585 586 587 588 589 590 591 592 593 594 595 | |
aadd_doc
abstractmethod
async
¶
aadd_doc(doc: Document) -> DocId
Add a document asynchronously.
Source code in tfrobot/brain/memory/base.py
597 598 599 600 | |
update_doc
abstractmethod
¶
update_doc(doc: Document) -> None
Update a document in memory.
更新记忆中的文档。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc
|
Document
|
The document to update. | 要更新的文档。 |
required |
Source code in tfrobot/brain/memory/base.py
602 603 604 605 606 607 608 609 610 611 612 | |
aupdate_doc
abstractmethod
async
¶
aupdate_doc(doc: Document) -> None
Update a document in memory asynchronously.
Source code in tfrobot/brain/memory/base.py
614 615 616 617 | |
delete_doc
abstractmethod
¶
delete_doc(doc_id: int) -> None
Delete a document from memory.
从记忆中删除文档。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
doc_id
|
int
|
The id of the document to delete. | 要删除的文档的ID。 |
required |
Source code in tfrobot/brain/memory/base.py
619 620 621 622 623 624 625 626 627 628 629 | |
adelete_doc
abstractmethod
async
¶
adelete_doc(doc_id: int) -> None
Delete a document from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
631 632 633 634 | |
get_pages
abstractmethod
¶
get_pages(page: Optional[int], size: Optional[int], keywords: Optional[list[str]], doc_ids: Optional[list[int]]) -> list[DocPage]
Get all pages from memory.
从记忆中获取所有页面。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
page
|
Optional[int]
|
The page number. |
required |
size
|
Optional[int]
|
The size of the page. |
required |
keywords
|
Optional[list[str]]
|
The keywords to search for. |
required |
doc_ids
|
Optional[list[int]]
|
The document ids to search for. |
required |
Returns:
| Type | Description |
|---|---|
list[DocPage]
|
list[DocElement]: The list of all pages. |
Source code in tfrobot/brain/memory/base.py
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 | |
aget_pages
abstractmethod
async
¶
aget_pages(page: Optional[int], size: Optional[int], keywords: Optional[list[str]], doc_ids: Optional[list[int]]) -> list[DocPage]
Get all pages from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
656 657 658 659 660 661 | |
get_page
abstractmethod
¶
get_page(page_id: int) -> DocPage
Get a page from memory.
从记忆中获取页面。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
page_id
|
int
|
The id of the page to get. | 要获取的页面的ID。 |
required |
Returns:
| Name | Type | Description |
|---|---|---|
DocPage |
DocPage
|
The page. | 页面。 |
Source code in tfrobot/brain/memory/base.py
663 664 665 666 667 668 669 670 671 672 673 674 675 676 | |
aget_page
abstractmethod
async
¶
aget_page(page_id: int) -> DocPage
Get a page from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
678 679 680 681 | |
add_page
abstractmethod
¶
add_page(page: DocPage) -> PageId
Add a page to memory.
添加页面到记忆中。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
page
|
DocPage
|
The page to add. | 要添加的页面。 |
required |
Returns:
| Name | Type | Description |
|---|---|---|
PageId |
PageId
|
The id of the added page. |
Source code in tfrobot/brain/memory/base.py
683 684 685 686 687 688 689 690 691 692 693 694 695 696 | |
aadd_page
abstractmethod
async
¶
aadd_page(page: DocPage) -> PageId
Add a page to memory asynchronously.
Source code in tfrobot/brain/memory/base.py
698 699 700 701 | |
update_page
abstractmethod
¶
update_page(page: DocPage) -> None
Update a page in memory.
更新记忆中的页面。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
page
|
DocPage
|
The page to update. | 要更新的页面。 |
required |
Source code in tfrobot/brain/memory/base.py
703 704 705 706 707 708 709 710 711 712 713 | |
aupdate_page
abstractmethod
async
¶
aupdate_page(page: DocPage) -> None
Update a page in memory asynchronously.
Source code in tfrobot/brain/memory/base.py
715 716 717 718 | |
delete_page
abstractmethod
¶
delete_page(page_id: int) -> None
Delete a page from memory.
从记忆中删除页面。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
page_id
|
int
|
The id of the page to delete. | 要删除的页面的ID。 |
required |
Source code in tfrobot/brain/memory/base.py
720 721 722 723 724 725 726 727 728 729 730 | |
adelete_page
abstractmethod
async
¶
adelete_page(page_id: int) -> None
Delete a page from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
732 733 734 735 | |
get_elements
abstractmethod
¶
get_elements(page: Optional[int], size: Optional[int], keywords: Optional[list[str]], page_ids: Optional[list[int]]) -> list[DocElement]
Get all elements from memory.
从记忆中获取所有元素。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
page
|
Optional[int]
|
The page number. |
required |
size
|
Optional[int]
|
The size of the page. |
required |
keywords
|
Optional[list[str]]
|
The keywords to search for. |
required |
page_ids
|
Optional[list[int]]
|
The page ids to search for. |
required |
Returns:
| Type | Description |
|---|---|
list[DocElement]
|
list[DocElement]: The list of all elements. |
Source code in tfrobot/brain/memory/base.py
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 | |
aget_elements
abstractmethod
async
¶
aget_elements(page: Optional[int], size: Optional[int], keywords: Optional[list[str]], page_ids: Optional[list[int]]) -> list[DocElement]
Get all elements from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
757 758 759 760 761 762 | |
get_element
abstractmethod
¶
get_element(element_id: int) -> DocElement
Get an element from memory.
从记忆中获取元素。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
element_id
|
int
|
The id of the element to get. | 要获取文档元素的ID。 |
required |
Returns:
| Name | Type | Description |
|---|---|---|
DocElement |
DocElement
|
The element. | 元素。 |
Source code in tfrobot/brain/memory/base.py
764 765 766 767 768 769 770 771 772 773 774 775 776 777 | |
aget_element
abstractmethod
async
¶
aget_element(element_id: int) -> DocElement
Get an element from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
779 780 781 782 | |
add_element
abstractmethod
¶
add_element(element: DocElement) -> EleId
Add an element to memory.
添加元素到记忆中。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
element
|
DocElement
|
The element to add. | 要添加的元素。 |
required |
Returns:
| Type | Description |
|---|---|
EleId
|
EleId |
Source code in tfrobot/brain/memory/base.py
784 785 786 787 788 789 790 791 792 793 794 795 796 797 | |
aadd_element
abstractmethod
async
¶
aadd_element(element: DocElement) -> EleId
Add an element from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
799 800 801 802 | |
update_element
abstractmethod
¶
update_element(element: DocElement) -> None
Update an element in memory.
更新记忆中的元素。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
element
|
DocElement
|
The element to update. | 要更新的元素。 |
required |
Source code in tfrobot/brain/memory/base.py
804 805 806 807 808 809 810 811 812 813 814 | |
aupdate_element
abstractmethod
async
¶
aupdate_element(element: DocElement) -> None
Update an element in memory asynchronously.
Source code in tfrobot/brain/memory/base.py
816 817 818 819 | |
delete_element
abstractmethod
¶
delete_element(element_id: int) -> None
Delete an element from memory.
从记忆中删除元素。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
element_id
|
int
|
The id of the element to delete. | 要删除文档元素的ID。 |
required |
Source code in tfrobot/brain/memory/base.py
821 822 823 824 825 826 827 828 829 830 831 | |
adelete_element
abstractmethod
async
¶
adelete_element(element_id: int) -> None
Delete an element from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
833 834 835 836 | |
get_graph_cls
abstractmethod
¶
get_graph_cls(class_iri: CLS_IRI) -> Optional[ThingClass]
Get a graph class from memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
class_iri
|
CLS_IRI
|
The class iri. | 类的IRI。 |
required |
Returns:
| Type | Description |
|---|---|
Optional[ThingClass]
|
Optional[ThingClass]: The class information |
Source code in tfrobot/brain/memory/base.py
838 839 840 841 842 843 844 845 846 847 848 849 | |
aget_graph_cls
abstractmethod
async
¶
aget_graph_cls(class_iri: CLS_IRI) -> ThingClass
Get a graph class from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
851 852 853 854 | |
get_all_graph_clses
abstractmethod
¶
get_all_graph_clses() -> list[ThingClass]
Get all graph classes from memory.
从记忆中获取所有图类。
Returns:
| Type | Description |
|---|---|
list[ThingClass]
|
list[ThingClass]: The list of all graph classes. | 所有图类的列表。 |
Source code in tfrobot/brain/memory/base.py
856 857 858 859 860 861 862 863 864 865 866 | |
aget_all_graph_clses
abstractmethod
async
¶
aget_all_graph_clses() -> list[ThingClass]
Get all graph classes from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
868 869 870 871 | |
add_graph_cls
abstractmethod
¶
add_graph_cls(class_iri: CLS_IRI, super_classes: Optional[list[str]] = None, annotations: Optional[dict] = None) -> CLS_IRI
Add a graph class to memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
class_iri
|
CLS_IRI
|
The class iri. | 类的IRI。 |
required |
super_classes
|
Optional[list[str]]
|
The super classes of the class. | 类的超类。 |
None
|
annotations
|
Optional[dict]
|
The annotations of the class. | 类的注解。 |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
CLS_IRI |
CLS_IRI
|
The class iri. | 类的IRI。 |
Source code in tfrobot/brain/memory/base.py
873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 | |
aadd_graph_cls
abstractmethod
async
¶
aadd_graph_cls(class_iri: CLS_IRI, super_classes: Optional[list[str]] = None, annotations: Optional[dict] = None) -> CLS_IRI
Add a graph class from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
890 891 892 893 894 895 | |
update_graph_cls
abstractmethod
¶
update_graph_cls(class_iri: CLS_IRI, new_super_classes: Optional[list[str]] = None, new_annotations: Optional[dict] = None) -> None
Update a graph class in memory
需要注意new_annotations 会对原属性先清空后添加,如果需要删除,则使用空列表或者空值即可。
另外需要注意,更新时 pos 与 name_properties 需要全部提供,建议使用类似http中put的更新方式(即提供所有信息),而不是patch的方式(即只提供需要更新的信息)。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
class_iri
|
CLS_IRI
|
The class iri. | 类的IRI。 |
required |
new_super_classes
|
Optional[list[str]]
|
The new super classes of the class. | 类的新超类。 |
None
|
new_annotations
|
Optional[dict]
|
The new annotations of the class. | 类的新注解。 |
None
|
Source code in tfrobot/brain/memory/base.py
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 | |
aupdate_graph_cls
abstractmethod
async
¶
aupdate_graph_cls(class_iri: CLS_IRI, new_super_classes: Optional[list[str]] = None, new_annotations: Optional[dict] = None) -> None
Update a graph class from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
915 916 917 918 919 920 | |
delete_graph_cls
abstractmethod
¶
delete_graph_cls(class_iri: CLS_IRI) -> None
Delete a graph class from memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
class_iri
|
CLS_IRI
|
The class iri. | 类的IRI。 |
required |
Source code in tfrobot/brain/memory/base.py
922 923 924 925 926 927 928 929 930 | |
adelete_graph_cls
abstractmethod
async
¶
adelete_graph_cls(class_iri: CLS_IRI) -> None
Delete a graph class from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
932 933 934 935 | |
get_graph_property
abstractmethod
¶
get_graph_property(property_iri: PROP_IRI) -> Optional[PropertyClass]
Get a graph property from memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
property_iri
|
PROP_IRI
|
The property iri. | 属性的IRI。 |
required |
Returns:
| Type | Description |
|---|---|
Optional[PropertyClass]
|
Optional[PropertyClass]: The property information. | 属性的信息。 |
Source code in tfrobot/brain/memory/base.py
937 938 939 940 941 942 943 944 945 946 947 948 | |
aget_graph_property
abstractmethod
async
¶
aget_graph_property(property_iri: PROP_IRI) -> PropertyClass
Get a graph property from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
950 951 952 953 | |
get_all_graph_properties
abstractmethod
¶
get_all_graph_properties(prop_type: Optional[Literal['object', 'data', 'annotation']] = None) -> list[PropertyClass]
Get all graph properties from memory.
从记忆中获取所有图属性。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prop_type
|
Optional[Literal['object', 'data', 'annotation']]
|
The type of the property. | 属性类型 |
None
|
Returns:
| Type | Description |
|---|---|
list[PropertyClass]
|
list[PropertyClass]: The list of all graph properties. | 所有图属性的列表。 |
Source code in tfrobot/brain/memory/base.py
955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 | |
aget_all_graph_properties
abstractmethod
async
¶
aget_all_graph_properties(prop_type: Optional[Literal['object', 'data', 'annotation']] = None) -> list[PropertyClass]
Get all graph properties from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
972 973 974 975 976 977 | |
add_graph_property
abstractmethod
¶
add_graph_property(property_iri: PROP_IRI, property_type: Literal['object', 'data'], domain: Optional[list[CLS_IRI]] = None, o_range: Optional[list] = None, is_functional: bool = False, is_inverse_functional: bool = False, is_symmetric: bool = False, is_transitive: bool = False, is_asymmetric: bool = False, is_reflexive: bool = False, is_irreflexive: bool = False, trigger_words: Optional[list[str]] = None) -> PROP_IRI
Add a graph property to memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
property_iri
|
PROP_IRI
|
The property iri. | 属性的IRI。 |
required |
property_type
|
Literal['object', 'data']
|
The property type. | 属性类型。 |
required |
domain
|
Optional[list[CLS_IRI]]
|
The domain of the property. | 属性的域。 |
None
|
o_range
|
Optional[list]
|
The range of the property. | 属性的范围。 |
None
|
is_functional
|
bool
|
Whether the property is functional. | 属性是否功能性。 |
False
|
is_inverse_functional
|
bool
|
Whether the property is inverse functional. | 属性是否反功能性。 |
False
|
is_symmetric
|
bool
|
Whether the property is symmetric. | 属性是否对称。 |
False
|
is_transitive
|
bool
|
Whether the property is transitive. | 属性是否传递。 |
False
|
is_asymmetric
|
bool
|
Whether the property is asymmetric. | 属性是否反对称。 |
False
|
is_reflexive
|
bool
|
Whether the property is reflexive. | 属性是否自反。 |
False
|
is_irreflexive
|
bool
|
Whether the property is irreflexive. | 属性是否非自反。 |
False
|
trigger_words
|
Optional[list[str]]
|
The trigger words of the property. | 属性的触发词。 |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
PROP_IRI |
PROP_IRI
|
The property iri. | 属性的IRI。 |
Source code in tfrobot/brain/memory/base.py
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 | |
aadd_graph_property
abstractmethod
async
¶
aadd_graph_property(property_iri: PROP_IRI, property_type: Literal['object', 'data'], domain: Optional[list[CLS_IRI]] = None, o_range: Optional[list] = None, is_functional: bool = False, is_inverse_functional: bool = False, is_symmetric: bool = False, is_transitive: bool = False, is_asymmetric: bool = False, is_reflexive: bool = False, is_irreflexive: bool = False, trigger_words: Optional[list[str]] = None) -> PROP_IRI
Add a graph property from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 | |
update_graph_property
abstractmethod
¶
update_graph_property(property_iri: PROP_IRI, domain: Optional[list[CLS_IRI]] = None, o_range: Optional[list] = None, is_functional: Optional[bool] = None, is_inverse_functional: Optional[bool] = None, is_symmetric: Optional[bool] = None, is_transitive: Optional[bool] = None, is_asymmetric: Optional[bool] = None, is_reflexive: Optional[bool] = None, is_irreflexive: Optional[bool] = None, trigger_words: Optional[list[str]] = None) -> None
Update a graph property in memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
property_iri
|
PROP_IRI
|
The property iri. | 属性的IRI。 |
required |
domain
|
Optional[list[CLS_IRI]]
|
The new domain of the property. | 新属性的域。 |
None
|
o_range
|
Optional[list]
|
The new range of the property. | 新属性的范围。 |
None
|
is_functional
|
Optional[bool]
|
Whether the property is functional. | 新属性是否功能性。 |
None
|
is_inverse_functional
|
Optional[bool]
|
Whether the property is inverse functional. | 新属性是否反功能性。 |
None
|
is_symmetric
|
Optional[bool]
|
Whether the property is symmetric. | 新属性是否对称。 |
None
|
is_transitive
|
Optional[bool]
|
Whether |
None
|
is_asymmetric
|
Optional[bool]
|
Whether the property is asymmetric. | 新属性是否反对称。 |
None
|
is_reflexive
|
Optional[bool]
|
Whether the property is reflexive. | 新属性���否自反。 |
None
|
is_irreflexive
|
Optional[bool]
|
Whether the property is irreflexive. | 新属性是否非自反。 |
None
|
trigger_words
|
Optional[list[str]]
|
The new trigger words of the property. | 新属性的触发词。 |
None
|
Source code in tfrobot/brain/memory/base.py
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 | |
aupdate_graph_property
abstractmethod
async
¶
aupdate_graph_property(property_iri: PROP_IRI, domain: Optional[list[CLS_IRI]] = None, o_range: Optional[list] = None, is_functional: Optional[bool] = None, is_inverse_functional: Optional[bool] = None, is_symmetric: Optional[bool] = None, is_transitive: Optional[bool] = None, is_asymmetric: Optional[bool] = None, is_reflexive: Optional[bool] = None, is_irreflexive: Optional[bool] = None, trigger_words: Optional[list[str]] = None) -> None
Update a graph property in memory asynchronously.
Source code in tfrobot/brain/memory/base.py
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 | |
get_graph_entity
abstractmethod
¶
get_graph_entity(entity_iri: IND_IRI) -> Optional[Thing]
Get a graph entity from memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_iri
|
IND_IRI
|
The entity iri. | 实体的IRI。 |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Thing |
Optional[Thing]
|
The entity |
Source code in tfrobot/brain/memory/base.py
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 | |
aget_graph_entity
abstractmethod
async
¶
aget_graph_entity(entity_iri: IND_IRI) -> Thing
Get a graph entity from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
1100 1101 1102 1103 | |
get_graph_entities_by_cls
abstractmethod
¶
get_graph_entities_by_cls(cls_iri: CLS_IRI) -> list[Thing]
Get all graph entities from memory.
从记忆中获取所有图实体。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cls_iri
|
CLS_IRI
|
The class iri. | 类的IRI。 |
required |
Returns:
| Type | Description |
|---|---|
list[Thing]
|
list[Thing]: The list of all graph entities. | 所有图实体的列表。 |
Source code in tfrobot/brain/memory/base.py
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 | |
aget_graph_entities_by_cls
abstractmethod
async
¶
aget_graph_entities_by_cls(cls_iri: CLS_IRI) -> Thing
Get all graph entities from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
1120 1121 1122 1123 | |
get_all_graph_entities
abstractmethod
¶
get_all_graph_entities() -> list[Thing]
Get all graph entities from memory.
从记忆中获取所有图实体。
Returns:
| Type | Description |
|---|---|
list[Thing]
|
list[Thing]: The list of all graph entities. | 所有图实体的列表。 |
Source code in tfrobot/brain/memory/base.py
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 | |
aget_all_graph_entities
abstractmethod
async
¶
aget_all_graph_entities() -> list[Thing]
Get all graph entities from memory.
Source code in tfrobot/brain/memory/base.py
1137 1138 1139 1140 | |
add_graph_entity
abstractmethod
¶
add_graph_entity(cls_iri: CLS_IRI, info: dict) -> IND_IRI
Add a graph entity to memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cls_iri
|
str
|
The entity iri. | 实体的IRI。 |
required |
info
|
str
|
The entity information. | 实体的信息。 |
required |
Returns:
| Name | Type | Description |
|---|---|---|
IND_IRI |
IND_IRI
|
The entity iri. | 实体的IRI。 |
Source code in tfrobot/brain/memory/base.py
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 | |
aadd_graph_entity
abstractmethod
async
¶
aadd_graph_entity(cls_iri: CLS_IRI, info: dict) -> IND_IRI
Add a graph entity to memory asynchronously.
Source code in tfrobot/brain/memory/base.py
1156 1157 1158 1159 | |
update_graph_entity
abstractmethod
¶
update_graph_entity(entity_iri: IND_IRI, info: dict) -> None
Update a graph entity in memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_iri
|
IND_IRI
|
The entity iri. | 实体的IRI。 |
required |
info
|
str
|
The entity information. | 实体的信息。 |
required |
Source code in tfrobot/brain/memory/base.py
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 | |
aupdate_graph_entity
abstractmethod
async
¶
aupdate_graph_entity(entity_iri: IND_IRI, info: dict) -> None
Update a graph entity in memory asynchronously.
Source code in tfrobot/brain/memory/base.py
1172 1173 1174 1175 | |
delete_graph_entity
abstractmethod
¶
delete_graph_entity(entity_iri: IND_IRI) -> None
Delete a graph entity from memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_iri
|
IND_IRI
|
The entity iri. | 实体的IRI。 |
required |
Source code in tfrobot/brain/memory/base.py
1177 1178 1179 1180 1181 1182 1183 1184 1185 | |
adelete_graph_entity
abstractmethod
async
¶
adelete_graph_entity(entity_iri: IND_IRI) -> None
Delete a graph entity from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
1187 1188 1189 1190 | |
delete_graph_property
abstractmethod
¶
delete_graph_property(property_iri: PROP_IRI) -> None
Delete a graph property from memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
property_iri
|
PROP_IRI
|
The property iri. | 属性的IRI。 |
required |
Source code in tfrobot/brain/memory/base.py
1192 1193 1194 1195 1196 1197 1198 1199 1200 | |
adelete_graph_property
abstractmethod
async
¶
adelete_graph_property(property_iri: PROP_IRI) -> None
Delete a graph property from memory asynchronously.
Source code in tfrobot/brain/memory/base.py
1202 1203 1204 1205 | |
get_save_config
classmethod
¶
get_save_config() -> Tuple[BaseSaverConfig, set]
Generates configuration for save_to_dir function.
As all messages need to be stored in one file, using 'is_independent_storage' for split storage is not feasible because it would result in a large IO burden as each message would generate a file. Therefore, we use 'mode="json"' for serializing and deserializing, and incorporate it into the main file.
生成用于 save_to_dir 函数的配置信息。因为所有的消息都需要存储在一个文件中,所以使用 'is_independent_storage' 进行分裂存储是不可行的, 因为这将导致每条消息生成一个文件,造成大的 IO 负担。所以我们使用 'mode="json"' 进行序列化和反序列化,并将其纳入主文件。
Returns:
| Name | Type | Description |
|---|---|---|
Dict |
Tuple[BaseSaverConfig, set]
|
A dictionary containing the generated configuration. 包含生成的配置的字典。 |
Source code in tfrobot/brain/memory/base.py
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 | |
recall_in_neural ¶
recall_in_neural(sender: str, query: str, chunk_size: int | Annotated[list[int], Len(3, 3)], length_function: Callable[[str], int], exclude_str: Optional[str] = None) -> Tuple[Optional[list[UserAndAssMsg]], Optional[list[DocElement]], Optional[str]]
Recalls the content from memory based on the given natural language input.
根据给定的自然语言输入从内存中检索内容。
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sender
|
str
|
The sender of the message. 消息的发送者。 |
required |
query
|
str
|
The natural language input. This is used to recall the content from memory. It is usually formatted by chat input history. 自然语言输入。用这个来从内存中回忆内容。通常由聊天输入历史记录格式化。 |
required |
chunk_size
|
Union[int, List[int]]
|
The size of the content to recall. It can be a single number or a list of numbers. If it is a list, the first number is the size of the conversation content to recall, the second number is the size of the memo content to recall, and the third number is the size of the knowledge content to recall. If it is a single number, it will be converted into three equal numbers. 要回忆的内容的大小。可以是单个数字或数字列表。如果是列表,第一个数字是要回忆的 对话内容的大小,第二个数字是要回忆的备忘内容的大小,第三个数字是要回忆的知识内容的大小。如果是单个数字,将被转换为三个相等的数字。 |
required |
length_function
|
Callable
|
A function to calculate the length of the content to recall. 用于计算所回忆内容长度的函数。 |
required |
exclude_str
|
Optional[str]
|
The string to exclude from the recall. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Any |
Tuple[Optional[list[UserAndAssMsg]], Optional[list[DocElement]], Optional[str]]
|
The content recalled from memory. 从内存中回忆的内容。 |
Source code in tfrobot/brain/memory/base.py
1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 | |
connect_to_neural ¶
connect_to_neural(neural: Neural) -> None
实现NeuralProtocol协议,向Neural注册自己
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
neural
|
Neural
|
Neural实例 |
required |
Returns:
| Type | Description |
|---|---|
None
|
None |
Source code in tfrobot/brain/memory/base.py
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 | |
disconnect_from_neural ¶
disconnect_from_neural(neural: Neural) -> None
实现NeuralProtocol协议,从Neural注销自己
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
neural
|
Neural
|
Neural实例 |
required |
Returns:
| Type | Description |
|---|---|
None
|
None |
Source code in tfrobot/brain/memory/base.py
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 | |