diff --git a/en/.doctrees/docs/api.doctree b/en/.doctrees/docs/api.doctree index c524e51c..a91c6e2b 100644 Binary files a/en/.doctrees/docs/api.doctree and b/en/.doctrees/docs/api.doctree differ diff --git a/en/.doctrees/environment.pickle b/en/.doctrees/environment.pickle index 9e1ae4c9..774db87c 100644 Binary files a/en/.doctrees/environment.pickle and b/en/.doctrees/environment.pickle differ diff --git a/en/.doctrees/index.doctree b/en/.doctrees/index.doctree index a25d71ac..278cb63b 100644 Binary files a/en/.doctrees/index.doctree and b/en/.doctrees/index.doctree differ diff --git a/en/.doctrees/memoryscope.constants.common_constants.doctree b/en/.doctrees/memoryscope.constants.common_constants.doctree index 8596ab50..3545e2ac 100644 Binary files a/en/.doctrees/memoryscope.constants.common_constants.doctree and b/en/.doctrees/memoryscope.constants.common_constants.doctree differ diff --git a/en/.doctrees/memoryscope.constants.doctree b/en/.doctrees/memoryscope.constants.doctree index 0c255212..575eb27a 100644 Binary files a/en/.doctrees/memoryscope.constants.doctree and b/en/.doctrees/memoryscope.constants.doctree differ diff --git a/en/.doctrees/memoryscope.constants.language_constants.doctree b/en/.doctrees/memoryscope.constants.language_constants.doctree index fb7ab191..719004d8 100644 Binary files a/en/.doctrees/memoryscope.constants.language_constants.doctree and b/en/.doctrees/memoryscope.constants.language_constants.doctree differ diff --git a/en/.doctrees/memoryscope.enumeration.action_status_enum.doctree b/en/.doctrees/memoryscope.enumeration.action_status_enum.doctree index f3607c82..22a12181 100644 Binary files a/en/.doctrees/memoryscope.enumeration.action_status_enum.doctree and b/en/.doctrees/memoryscope.enumeration.action_status_enum.doctree differ diff --git a/en/.doctrees/memoryscope.enumeration.doctree b/en/.doctrees/memoryscope.enumeration.doctree index 02517bfa..cd89d878 100644 Binary files a/en/.doctrees/memoryscope.enumeration.doctree and b/en/.doctrees/memoryscope.enumeration.doctree differ diff --git a/en/.doctrees/memoryscope.enumeration.language_enum.doctree b/en/.doctrees/memoryscope.enumeration.language_enum.doctree index da8daca3..8b83080c 100644 Binary files a/en/.doctrees/memoryscope.enumeration.language_enum.doctree and b/en/.doctrees/memoryscope.enumeration.language_enum.doctree differ diff --git a/en/.doctrees/memoryscope.enumeration.memory_type_enum.doctree b/en/.doctrees/memoryscope.enumeration.memory_type_enum.doctree index 27688556..2d59095f 100644 Binary files a/en/.doctrees/memoryscope.enumeration.memory_type_enum.doctree and b/en/.doctrees/memoryscope.enumeration.memory_type_enum.doctree differ diff --git a/en/.doctrees/memoryscope.enumeration.message_role_enum.doctree b/en/.doctrees/memoryscope.enumeration.message_role_enum.doctree index e5d84fd0..7da33140 100644 Binary files a/en/.doctrees/memoryscope.enumeration.message_role_enum.doctree and b/en/.doctrees/memoryscope.enumeration.message_role_enum.doctree differ diff --git a/en/.doctrees/memoryscope.enumeration.model_enum.doctree b/en/.doctrees/memoryscope.enumeration.model_enum.doctree index c9cd6d18..aefce610 100644 Binary files a/en/.doctrees/memoryscope.enumeration.model_enum.doctree and b/en/.doctrees/memoryscope.enumeration.model_enum.doctree differ diff --git a/en/.doctrees/memoryscope.enumeration.store_status_enum.doctree b/en/.doctrees/memoryscope.enumeration.store_status_enum.doctree index f050062f..709f9c4f 100644 Binary files a/en/.doctrees/memoryscope.enumeration.store_status_enum.doctree and b/en/.doctrees/memoryscope.enumeration.store_status_enum.doctree differ diff --git a/en/README.html b/en/README.html index 01e5d64b..ee18bc3e 100644 --- a/en/README.html +++ b/en/README.html @@ -77,7 +77,15 @@

MemoryScope API Reference

diff --git a/en/_modules/index.html b/en/_modules/index.html new file mode 100644 index 00000000..acf273e4 --- /dev/null +++ b/en/_modules/index.html @@ -0,0 +1,135 @@ + + + + + + + Overview: module code — MemoryScope documentation + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + +
  • +
  • +
+
+
+ + +
+
+
+
+ + + + \ No newline at end of file diff --git a/en/_modules/memoryscope/enumeration/action_status_enum.html b/en/_modules/memoryscope/enumeration/action_status_enum.html new file mode 100644 index 00000000..bc2d77cf --- /dev/null +++ b/en/_modules/memoryscope/enumeration/action_status_enum.html @@ -0,0 +1,153 @@ + + + + + + + memoryscope.enumeration.action_status_enum — MemoryScope documentation + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for memoryscope.enumeration.action_status_enum

+from enum import Enum
+
+
+
[docs]class ActionStatusEnum(str, Enum): + """ + Enumeration representing various statuses of a memory node. + + Each status reflects a different state of the node in terms of its lifecycle or content: + - NEW: Indicates a newly created node. + - MODIFIED: Signifies that the node has been altered. + - CONTENT_MODIFIED: Specifies changes in the actual content of the node. + - NONE: do nothing. + - DELETE: delete memories. + """ + NEW = "new" + + MODIFIED = "modified" + + CONTENT_MODIFIED = "content_modified" + + NONE = "none" + + DELETE = "delete"
+
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/en/_modules/memoryscope/enumeration/language_enum.html b/en/_modules/memoryscope/enumeration/language_enum.html new file mode 100644 index 00000000..4372df43 --- /dev/null +++ b/en/_modules/memoryscope/enumeration/language_enum.html @@ -0,0 +1,144 @@ + + + + + + + memoryscope.enumeration.language_enum — MemoryScope documentation + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for memoryscope.enumeration.language_enum

+from enum import Enum
+
+
+
[docs]class LanguageEnum(str, Enum): + """ + An enumeration representing supported languages. + + Members: + - CN: Represents the Chinese language. + - EN: Represents the English language. + """ + CN = "cn" + + EN = "en"
+
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/en/_modules/memoryscope/enumeration/memory_type_enum.html b/en/_modules/memoryscope/enumeration/memory_type_enum.html new file mode 100644 index 00000000..72463aa8 --- /dev/null +++ b/en/_modules/memoryscope/enumeration/memory_type_enum.html @@ -0,0 +1,150 @@ + + + + + + + memoryscope.enumeration.memory_type_enum — MemoryScope documentation + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for memoryscope.enumeration.memory_type_enum

+from enum import Enum
+
+
+
[docs]class MemoryTypeEnum(str, Enum): + """ + Defines an enumeration for different types of memory categories. + + Each member represents a distinct type of memory content: + - CONVERSATION: Represents conversation-based memories. + - OBSERVATION: Denotes observational memories. + - INSIGHT: Indicates insightful memories derived from analysis. + - OBS_CUSTOMIZED: Customized observational memories. + """ + CONVERSATION = "conversation" + + OBSERVATION = "observation" + + INSIGHT = "insight" + + OBS_CUSTOMIZED = "obs_customized"
+
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/en/_modules/memoryscope/enumeration/message_role_enum.html b/en/_modules/memoryscope/enumeration/message_role_enum.html new file mode 100644 index 00000000..eb1a583f --- /dev/null +++ b/en/_modules/memoryscope/enumeration/message_role_enum.html @@ -0,0 +1,146 @@ + + + + + + + memoryscope.enumeration.message_role_enum — MemoryScope documentation + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for memoryscope.enumeration.message_role_enum

+from enum import Enum
+
+
+
[docs]class MessageRoleEnum(str, Enum): + """ + Enumeration for different message roles within a conversation context. + + This enumeration includes predefined roles such as User, Assistant, and System, + which can be used to categorize messages in chat interfaces, AI interactions, or + any system that involves distinct participant roles. + """ + USER = "user" # Represents a message sent by the user. + + ASSISTANT = "assistant" # Represents a response or action performed by an assistant. + + SYSTEM = "system" # Represents system-level messages or actions.
+
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/en/_modules/memoryscope/enumeration/model_enum.html b/en/_modules/memoryscope/enumeration/model_enum.html new file mode 100644 index 00000000..db536977 --- /dev/null +++ b/en/_modules/memoryscope/enumeration/model_enum.html @@ -0,0 +1,148 @@ + + + + + + + memoryscope.enumeration.model_enum — MemoryScope documentation + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for memoryscope.enumeration.model_enum

+from enum import Enum
+
+
+
[docs]class ModelEnum(str, Enum): + """ + An enumeration representing different types of models used within the system. + + Members: + GENERATION_MODEL: Represents a model responsible for generating content. + EMBEDDING_MODEL: Represents a model tasked with creating embeddings, typically used for transforming data into a + numerical form suitable for machine learning tasks. + RANK_MODEL: Denotes a model that specializes in ranking, often used to order items based on relevance. + """ + GENERATION_MODEL = "generation_model" + + EMBEDDING_MODEL = "embedding_model" + + RANK_MODEL = "rank_model"
+
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/en/_modules/memoryscope/enumeration/store_status_enum.html b/en/_modules/memoryscope/enumeration/store_status_enum.html new file mode 100644 index 00000000..ca850db3 --- /dev/null +++ b/en/_modules/memoryscope/enumeration/store_status_enum.html @@ -0,0 +1,137 @@ + + + + + + + memoryscope.enumeration.store_status_enum — MemoryScope documentation + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+
    +
  • + + +
  • +
  • +
+
+
+
+
+ +

Source code for memoryscope.enumeration.store_status_enum

+from enum import Enum
+
+
+
[docs]class StoreStatusEnum(str, Enum): + VALID = "valid" + + EXPIRED = "expired"
+
+ +
+
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/en/_sources/index.rst.txt b/en/_sources/index.rst.txt index b870d0c3..825b4c4e 100644 --- a/en/_sources/index.rst.txt +++ b/en/_sources/index.rst.txt @@ -54,4 +54,4 @@ among memory pieces are properly handled. :maxdepth: 6 :caption: MemoryScope API Reference - memoryscope + API diff --git a/en/docs/api.html b/en/docs/api.html index 4784eda1..693c632d 100644 --- a/en/docs/api.html +++ b/en/docs/api.html @@ -24,7 +24,8 @@ - + + @@ -60,8 +61,29 @@
  • Contribution
  • MemoryScope API Reference

    -

    MemoryScope API Reference

    @@ -170,7 +178,7 @@

    Code Review - +
    diff --git a/en/docs/installation.html b/en/docs/installation.html index 97ddec9e..0b4e7ae7 100644 --- a/en/docs/installation.html +++ b/en/docs/installation.html @@ -69,7 +69,15 @@

    MemoryScope API Reference

    diff --git a/en/examples/advance/custom_operator.html b/en/examples/advance/custom_operator.html index 465a4822..7403ced9 100644 --- a/en/examples/advance/custom_operator.html +++ b/en/examples/advance/custom_operator.html @@ -63,7 +63,15 @@

    MemoryScope API Reference

    diff --git a/en/examples/advance/custom_operator_zh.html b/en/examples/advance/custom_operator_zh.html index 8d5efbcc..aca60294 100644 --- a/en/examples/advance/custom_operator_zh.html +++ b/en/examples/advance/custom_operator_zh.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/examples/api/agentscope_example.html b/en/examples/api/agentscope_example.html index fb51d453..5b33fae7 100644 --- a/en/examples/api/agentscope_example.html +++ b/en/examples/api/agentscope_example.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/examples/api/autogen_example.html b/en/examples/api/autogen_example.html index ae2498f9..42357b2a 100644 --- a/en/examples/api/autogen_example.html +++ b/en/examples/api/autogen_example.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/examples/api/simple_usages.html b/en/examples/api/simple_usages.html index d3d8753e..26bf136a 100644 --- a/en/examples/api/simple_usages.html +++ b/en/examples/api/simple_usages.html @@ -74,7 +74,15 @@

    MemoryScope API Reference

    diff --git a/en/examples/api/simple_usages_zh.html b/en/examples/api/simple_usages_zh.html index 3dcc1430..237b30a9 100644 --- a/en/examples/api/simple_usages_zh.html +++ b/en/examples/api/simple_usages_zh.html @@ -64,7 +64,15 @@

    MemoryScope API Reference

    diff --git a/en/examples/cli/CLI_README.html b/en/examples/cli/CLI_README.html index c895647d..4e3b4e1e 100644 --- a/en/examples/cli/CLI_README.html +++ b/en/examples/cli/CLI_README.html @@ -70,7 +70,15 @@

    MemoryScope API Reference

    diff --git a/en/examples/cli/CLI_README_ZH.html b/en/examples/cli/CLI_README_ZH.html index b87d8161..54e1ecd0 100644 --- a/en/examples/cli/CLI_README_ZH.html +++ b/en/examples/cli/CLI_README_ZH.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/genindex.html b/en/genindex.html index 99c98b69..0e8f07b9 100644 --- a/en/genindex.html +++ b/en/genindex.html @@ -62,7 +62,15 @@

    MemoryScope API Reference

    @@ -92,8 +100,365 @@

    Index

    + A + | C + | D + | E + | G + | I + | L + | M + | N + | O + | R + | S + | U + | V
    +

    A

    + + + +
    + +

    C

    + + + +
    + +

    D

    + + +
    + +

    E

    + + + +
    + +

    G

    + + +
    + +

    I

    + + +
    + +

    L

    + + +
    + +

    M

    + + + +
      +
    • + memoryscope.constants + +
    • +
    • + memoryscope.constants.common_constants + +
    • +
    • + memoryscope.constants.language_constants + +
    • +
    • + memoryscope.enumeration + +
    • +
    • + memoryscope.enumeration.action_status_enum + +
    • +
    • + memoryscope.enumeration.language_enum + +
    • +
    • + memoryscope.enumeration.memory_type_enum + +
    • +
    • + memoryscope.enumeration.message_role_enum + +
    • +
    • + memoryscope.enumeration.model_enum + +
    • +
    • + memoryscope.enumeration.store_status_enum + +
    • +
    + +

    N

    + + + +
    + +

    O

    + + + +
    + +

    R

    + + +
    + +

    S

    + + + +
    + +

    U

    + + +
    + +

    V

    + + +
    + diff --git a/en/index.html b/en/index.html index a90a2693..5df5b976 100644 --- a/en/index.html +++ b/en/index.html @@ -62,7 +62,15 @@

    MemoryScope API Reference

    @@ -157,7 +165,28 @@

    Framework

    MemoryScope API Reference

    diff --git a/en/memoryscope.constants.common_constants.html b/en/memoryscope.constants.common_constants.html index e61581ce..efaab30f 100644 --- a/en/memoryscope.constants.common_constants.html +++ b/en/memoryscope.constants.common_constants.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,8 @@
    -
    -

    memoryscope.constants.common_constants

    +
    +

    memoryscope.constants.common_constants

    diff --git a/en/memoryscope.constants.html b/en/memoryscope.constants.html index 71c107d6..2053e136 100644 --- a/en/memoryscope.constants.html +++ b/en/memoryscope.constants.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,8 @@
    -
    -

    memoryscope.constants

    +
    +

    memoryscope.constants

    diff --git a/en/memoryscope.constants.language_constants.html b/en/memoryscope.constants.language_constants.html index da9d74a3..d15f3c16 100644 --- a/en/memoryscope.constants.language_constants.html +++ b/en/memoryscope.constants.language_constants.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,8 @@
    -
    -

    memoryscope.constants.language_constants

    +
    +

    memoryscope.constants.language_constants

    diff --git a/en/memoryscope.core.chat.api_memory_chat.html b/en/memoryscope.core.chat.api_memory_chat.html index 4f612c55..2c49b9ea 100644 --- a/en/memoryscope.core.chat.api_memory_chat.html +++ b/en/memoryscope.core.chat.api_memory_chat.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.chat.base_memory_chat.html b/en/memoryscope.core.chat.base_memory_chat.html index 7b389bd3..760dded4 100644 --- a/en/memoryscope.core.chat.base_memory_chat.html +++ b/en/memoryscope.core.chat.base_memory_chat.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.chat.cli_memory_chat.html b/en/memoryscope.core.chat.cli_memory_chat.html index e1f1934e..ee196bed 100644 --- a/en/memoryscope.core.chat.cli_memory_chat.html +++ b/en/memoryscope.core.chat.cli_memory_chat.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.chat.html b/en/memoryscope.core.chat.html index 60c092c2..251f4ced 100644 --- a/en/memoryscope.core.chat.html +++ b/en/memoryscope.core.chat.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.config.arguments.html b/en/memoryscope.core.config.arguments.html index 63d5a81d..1a6a8917 100644 --- a/en/memoryscope.core.config.arguments.html +++ b/en/memoryscope.core.config.arguments.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.config.config_manager.html b/en/memoryscope.core.config.config_manager.html index 17958cf3..353cd949 100644 --- a/en/memoryscope.core.config.config_manager.html +++ b/en/memoryscope.core.config.config_manager.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.config.html b/en/memoryscope.core.config.html index e6fb3c36..bab71796 100644 --- a/en/memoryscope.core.config.html +++ b/en/memoryscope.core.config.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.html b/en/memoryscope.core.html index 7357f0be..aff2c3f1 100644 --- a/en/memoryscope.core.html +++ b/en/memoryscope.core.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.memoryscope.html b/en/memoryscope.core.memoryscope.html index 0447efd9..b6166a05 100644 --- a/en/memoryscope.core.memoryscope.html +++ b/en/memoryscope.core.memoryscope.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.memoryscope_context.html b/en/memoryscope.core.memoryscope_context.html index fcdad7d6..50db7348 100644 --- a/en/memoryscope.core.memoryscope_context.html +++ b/en/memoryscope.core.memoryscope_context.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.models.base_model.html b/en/memoryscope.core.models.base_model.html index a5e2c54d..9347d608 100644 --- a/en/memoryscope.core.models.base_model.html +++ b/en/memoryscope.core.models.base_model.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.models.dummy_generation_model.html b/en/memoryscope.core.models.dummy_generation_model.html index 806e5c1e..099d9932 100644 --- a/en/memoryscope.core.models.dummy_generation_model.html +++ b/en/memoryscope.core.models.dummy_generation_model.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.models.html b/en/memoryscope.core.models.html index 32950b8a..85db11d3 100644 --- a/en/memoryscope.core.models.html +++ b/en/memoryscope.core.models.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.models.llama_index_embedding_model.html b/en/memoryscope.core.models.llama_index_embedding_model.html index be4edf73..cdcd96c5 100644 --- a/en/memoryscope.core.models.llama_index_embedding_model.html +++ b/en/memoryscope.core.models.llama_index_embedding_model.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.models.llama_index_generation_model.html b/en/memoryscope.core.models.llama_index_generation_model.html index 2ed3dda5..96b0b930 100644 --- a/en/memoryscope.core.models.llama_index_generation_model.html +++ b/en/memoryscope.core.models.llama_index_generation_model.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.models.llama_index_rank_model.html b/en/memoryscope.core.models.llama_index_rank_model.html index e542f458..3aa28fdf 100644 --- a/en/memoryscope.core.models.llama_index_rank_model.html +++ b/en/memoryscope.core.models.llama_index_rank_model.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.operation.backend_operation.html b/en/memoryscope.core.operation.backend_operation.html index 0cbd6e2d..9fc5a5a0 100644 --- a/en/memoryscope.core.operation.backend_operation.html +++ b/en/memoryscope.core.operation.backend_operation.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.operation.base_operation.html b/en/memoryscope.core.operation.base_operation.html index 0674eec3..6cbc48d5 100644 --- a/en/memoryscope.core.operation.base_operation.html +++ b/en/memoryscope.core.operation.base_operation.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.operation.base_workflow.html b/en/memoryscope.core.operation.base_workflow.html index 45ef2142..da3f228c 100644 --- a/en/memoryscope.core.operation.base_workflow.html +++ b/en/memoryscope.core.operation.base_workflow.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.operation.consolidate_memory_op.html b/en/memoryscope.core.operation.consolidate_memory_op.html index 8aa23686..e892846d 100644 --- a/en/memoryscope.core.operation.consolidate_memory_op.html +++ b/en/memoryscope.core.operation.consolidate_memory_op.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.operation.frontend_operation.html b/en/memoryscope.core.operation.frontend_operation.html index 21679ba3..64814f4b 100644 --- a/en/memoryscope.core.operation.frontend_operation.html +++ b/en/memoryscope.core.operation.frontend_operation.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.operation.html b/en/memoryscope.core.operation.html index 8f1a365a..7536ab70 100644 --- a/en/memoryscope.core.operation.html +++ b/en/memoryscope.core.operation.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.service.base_memory_service.html b/en/memoryscope.core.service.base_memory_service.html index a45ceedc..5573306c 100644 --- a/en/memoryscope.core.service.base_memory_service.html +++ b/en/memoryscope.core.service.base_memory_service.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.service.html b/en/memoryscope.core.service.html index 904b4ffa..5694f745 100644 --- a/en/memoryscope.core.service.html +++ b/en/memoryscope.core.service.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.service.memory_scope_service.html b/en/memoryscope.core.service.memory_scope_service.html index 9b3bf541..2e7484c2 100644 --- a/en/memoryscope.core.service.memory_scope_service.html +++ b/en/memoryscope.core.service.memory_scope_service.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.storage.base_memory_store.html b/en/memoryscope.core.storage.base_memory_store.html index 41ec6bc3..21286364 100644 --- a/en/memoryscope.core.storage.base_memory_store.html +++ b/en/memoryscope.core.storage.base_memory_store.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.storage.base_monitor.html b/en/memoryscope.core.storage.base_monitor.html index d8735472..bce3c21c 100644 --- a/en/memoryscope.core.storage.base_monitor.html +++ b/en/memoryscope.core.storage.base_monitor.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.storage.dummy_memory_store.html b/en/memoryscope.core.storage.dummy_memory_store.html index 28ab1289..8f7a70d0 100644 --- a/en/memoryscope.core.storage.dummy_memory_store.html +++ b/en/memoryscope.core.storage.dummy_memory_store.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.storage.dummy_monitor.html b/en/memoryscope.core.storage.dummy_monitor.html index b5ae342a..d77fc313 100644 --- a/en/memoryscope.core.storage.dummy_monitor.html +++ b/en/memoryscope.core.storage.dummy_monitor.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.storage.html b/en/memoryscope.core.storage.html index a13afc13..3b1b9760 100644 --- a/en/memoryscope.core.storage.html +++ b/en/memoryscope.core.storage.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.storage.llama_index_es_memory_store.html b/en/memoryscope.core.storage.llama_index_es_memory_store.html index f42371d2..e2434457 100644 --- a/en/memoryscope.core.storage.llama_index_es_memory_store.html +++ b/en/memoryscope.core.storage.llama_index_es_memory_store.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.storage.llama_index_sync_elasticsearch.html b/en/memoryscope.core.storage.llama_index_sync_elasticsearch.html index 7b36d782..fd38e3c7 100644 --- a/en/memoryscope.core.storage.llama_index_sync_elasticsearch.html +++ b/en/memoryscope.core.storage.llama_index_sync_elasticsearch.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.utils.datetime_handler.html b/en/memoryscope.core.utils.datetime_handler.html index 5e51c6b1..08f59cbb 100644 --- a/en/memoryscope.core.utils.datetime_handler.html +++ b/en/memoryscope.core.utils.datetime_handler.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.utils.html b/en/memoryscope.core.utils.html index e760844e..28d6fe47 100644 --- a/en/memoryscope.core.utils.html +++ b/en/memoryscope.core.utils.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.utils.logger.html b/en/memoryscope.core.utils.logger.html index 777dbcb7..4a0c570e 100644 --- a/en/memoryscope.core.utils.logger.html +++ b/en/memoryscope.core.utils.logger.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.utils.prompt_handler.html b/en/memoryscope.core.utils.prompt_handler.html index b1f386ea..c5876c25 100644 --- a/en/memoryscope.core.utils.prompt_handler.html +++ b/en/memoryscope.core.utils.prompt_handler.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.utils.registry.html b/en/memoryscope.core.utils.registry.html index 54a75108..0f53976b 100644 --- a/en/memoryscope.core.utils.registry.html +++ b/en/memoryscope.core.utils.registry.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.utils.response_text_parser.html b/en/memoryscope.core.utils.response_text_parser.html index 5f997ec9..826bf353 100644 --- a/en/memoryscope.core.utils.response_text_parser.html +++ b/en/memoryscope.core.utils.response_text_parser.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.utils.singleton.html b/en/memoryscope.core.utils.singleton.html index beb77e0f..6674f601 100644 --- a/en/memoryscope.core.utils.singleton.html +++ b/en/memoryscope.core.utils.singleton.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.utils.timer.html b/en/memoryscope.core.utils.timer.html index bd36ee4f..b7d2d70b 100644 --- a/en/memoryscope.core.utils.timer.html +++ b/en/memoryscope.core.utils.timer.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.utils.tool_functions.html b/en/memoryscope.core.utils.tool_functions.html index 50838b25..15c60f2a 100644 --- a/en/memoryscope.core.utils.tool_functions.html +++ b/en/memoryscope.core.utils.tool_functions.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.contra_repeat_worker.html b/en/memoryscope.core.worker.backend.contra_repeat_worker.html index 98667902..fce104c1 100644 --- a/en/memoryscope.core.worker.backend.contra_repeat_worker.html +++ b/en/memoryscope.core.worker.backend.contra_repeat_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.get_observation_with_time_worker.html b/en/memoryscope.core.worker.backend.get_observation_with_time_worker.html index fd7f700b..5328538f 100644 --- a/en/memoryscope.core.worker.backend.get_observation_with_time_worker.html +++ b/en/memoryscope.core.worker.backend.get_observation_with_time_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.get_observation_worker.html b/en/memoryscope.core.worker.backend.get_observation_worker.html index 9cd6bcb4..d45155ed 100644 --- a/en/memoryscope.core.worker.backend.get_observation_worker.html +++ b/en/memoryscope.core.worker.backend.get_observation_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.get_reflection_subject_worker.html b/en/memoryscope.core.worker.backend.get_reflection_subject_worker.html index 458db88d..70c5a02f 100644 --- a/en/memoryscope.core.worker.backend.get_reflection_subject_worker.html +++ b/en/memoryscope.core.worker.backend.get_reflection_subject_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.html b/en/memoryscope.core.worker.backend.html index 6f586d64..cd248199 100644 --- a/en/memoryscope.core.worker.backend.html +++ b/en/memoryscope.core.worker.backend.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.info_filter_worker.html b/en/memoryscope.core.worker.backend.info_filter_worker.html index 0904d8fc..f310c0d4 100644 --- a/en/memoryscope.core.worker.backend.info_filter_worker.html +++ b/en/memoryscope.core.worker.backend.info_filter_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.load_memory_worker.html b/en/memoryscope.core.worker.backend.load_memory_worker.html index 34c27e55..3f1e595c 100644 --- a/en/memoryscope.core.worker.backend.load_memory_worker.html +++ b/en/memoryscope.core.worker.backend.load_memory_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.long_contra_repeat_worker.html b/en/memoryscope.core.worker.backend.long_contra_repeat_worker.html index ef227ff3..ee069ce3 100644 --- a/en/memoryscope.core.worker.backend.long_contra_repeat_worker.html +++ b/en/memoryscope.core.worker.backend.long_contra_repeat_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.update_insight_worker.html b/en/memoryscope.core.worker.backend.update_insight_worker.html index 62a2c2a8..b260b70f 100644 --- a/en/memoryscope.core.worker.backend.update_insight_worker.html +++ b/en/memoryscope.core.worker.backend.update_insight_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.backend.update_memory_worker.html b/en/memoryscope.core.worker.backend.update_memory_worker.html index bab31e71..3ef30d01 100644 --- a/en/memoryscope.core.worker.backend.update_memory_worker.html +++ b/en/memoryscope.core.worker.backend.update_memory_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.base_worker.html b/en/memoryscope.core.worker.base_worker.html index 98f45a5f..f877f759 100644 --- a/en/memoryscope.core.worker.base_worker.html +++ b/en/memoryscope.core.worker.base_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.dummy_worker.html b/en/memoryscope.core.worker.dummy_worker.html index 44a5a85c..14c3d63a 100644 --- a/en/memoryscope.core.worker.dummy_worker.html +++ b/en/memoryscope.core.worker.dummy_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.frontend.extract_time_worker.html b/en/memoryscope.core.worker.frontend.extract_time_worker.html index 153abd4e..26b9713d 100644 --- a/en/memoryscope.core.worker.frontend.extract_time_worker.html +++ b/en/memoryscope.core.worker.frontend.extract_time_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.frontend.fuse_rerank_worker.html b/en/memoryscope.core.worker.frontend.fuse_rerank_worker.html index 3568c0bd..67ade83a 100644 --- a/en/memoryscope.core.worker.frontend.fuse_rerank_worker.html +++ b/en/memoryscope.core.worker.frontend.fuse_rerank_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.frontend.html b/en/memoryscope.core.worker.frontend.html index 561434e6..b9820d2d 100644 --- a/en/memoryscope.core.worker.frontend.html +++ b/en/memoryscope.core.worker.frontend.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.frontend.print_memory_worker.html b/en/memoryscope.core.worker.frontend.print_memory_worker.html index 65da9c85..319906c2 100644 --- a/en/memoryscope.core.worker.frontend.print_memory_worker.html +++ b/en/memoryscope.core.worker.frontend.print_memory_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.frontend.read_message_worker.html b/en/memoryscope.core.worker.frontend.read_message_worker.html index a66d8b8f..5a1414fd 100644 --- a/en/memoryscope.core.worker.frontend.read_message_worker.html +++ b/en/memoryscope.core.worker.frontend.read_message_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.frontend.retrieve_memory_worker.html b/en/memoryscope.core.worker.frontend.retrieve_memory_worker.html index 9b3a5d73..c3bc4d85 100644 --- a/en/memoryscope.core.worker.frontend.retrieve_memory_worker.html +++ b/en/memoryscope.core.worker.frontend.retrieve_memory_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.frontend.semantic_rank_worker.html b/en/memoryscope.core.worker.frontend.semantic_rank_worker.html index b946128c..241210ca 100644 --- a/en/memoryscope.core.worker.frontend.semantic_rank_worker.html +++ b/en/memoryscope.core.worker.frontend.semantic_rank_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.frontend.set_query_worker.html b/en/memoryscope.core.worker.frontend.set_query_worker.html index 297e9481..1e4fe01a 100644 --- a/en/memoryscope.core.worker.frontend.set_query_worker.html +++ b/en/memoryscope.core.worker.frontend.set_query_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.html b/en/memoryscope.core.worker.html index 986bbc7a..8127b67d 100644 --- a/en/memoryscope.core.worker.html +++ b/en/memoryscope.core.worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.memory_base_worker.html b/en/memoryscope.core.worker.memory_base_worker.html index 752672c1..12e1dbfa 100644 --- a/en/memoryscope.core.worker.memory_base_worker.html +++ b/en/memoryscope.core.worker.memory_base_worker.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.core.worker.memory_manager.html b/en/memoryscope.core.worker.memory_manager.html index 17752855..0472adb9 100644 --- a/en/memoryscope.core.worker.memory_manager.html +++ b/en/memoryscope.core.worker.memory_manager.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.enumeration.action_status_enum.html b/en/memoryscope.enumeration.action_status_enum.html index 9580d671..bb30ee6c 100644 --- a/en/memoryscope.enumeration.action_status_enum.html +++ b/en/memoryscope.enumeration.action_status_enum.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,46 @@
    -
    -

    memoryscope.enumeration.action_status_enum

    +
    +

    memoryscope.enumeration.action_status_enum

    +
    +
    +class memoryscope.enumeration.action_status_enum.ActionStatusEnum(value)[source]
    +

    Bases: str, Enum

    +

    Enumeration representing various statuses of a memory node.

    +

    Each status reflects a different state of the node in terms of its lifecycle or content: +- NEW: Indicates a newly created node. +- MODIFIED: Signifies that the node has been altered. +- CONTENT_MODIFIED: Specifies changes in the actual content of the node. +- NONE: do nothing. +- DELETE: delete memories.

    +
    +
    +NEW = 'new'
    +
    + +
    +
    +MODIFIED = 'modified'
    +
    + +
    +
    +CONTENT_MODIFIED = 'content_modified'
    +
    + +
    +
    +NONE = 'none'
    +
    + +
    +
    +DELETE = 'delete'
    +
    + +
    +
    diff --git a/en/memoryscope.enumeration.html b/en/memoryscope.enumeration.html index e4e14fb7..2b7fd00d 100644 --- a/en/memoryscope.enumeration.html +++ b/en/memoryscope.enumeration.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,175 @@
    -
    -

    memoryscope.enumeration

    +
    +

    memoryscope.enumeration

    +
    +
    +class memoryscope.enumeration.ActionStatusEnum(value)[source]
    +

    Bases: str, Enum

    +

    Enumeration representing various statuses of a memory node.

    +

    Each status reflects a different state of the node in terms of its lifecycle or content: +- NEW: Indicates a newly created node. +- MODIFIED: Signifies that the node has been altered. +- CONTENT_MODIFIED: Specifies changes in the actual content of the node. +- NONE: do nothing. +- DELETE: delete memories.

    +
    +
    +NEW = 'new'
    +
    + +
    +
    +MODIFIED = 'modified'
    +
    + +
    +
    +CONTENT_MODIFIED = 'content_modified'
    +
    + +
    +
    +NONE = 'none'
    +
    + +
    +
    +DELETE = 'delete'
    +
    + +
    + +
    +
    +class memoryscope.enumeration.LanguageEnum(value)[source]
    +

    Bases: str, Enum

    +

    An enumeration representing supported languages.

    +
    +
    Members:
      +
    • CN: Represents the Chinese language.

    • +
    • EN: Represents the English language.

    • +
    +
    +
    +
    +
    +CN = 'cn'
    +
    + +
    +
    +EN = 'en'
    +
    + +
    + +
    +
    +class memoryscope.enumeration.MemoryTypeEnum(value)[source]
    +

    Bases: str, Enum

    +

    Defines an enumeration for different types of memory categories.

    +

    Each member represents a distinct type of memory content: +- CONVERSATION: Represents conversation-based memories. +- OBSERVATION: Denotes observational memories. +- INSIGHT: Indicates insightful memories derived from analysis. +- OBS_CUSTOMIZED: Customized observational memories.

    +
    +
    +CONVERSATION = 'conversation'
    +
    + +
    +
    +OBSERVATION = 'observation'
    +
    + +
    +
    +INSIGHT = 'insight'
    +
    + +
    +
    +OBS_CUSTOMIZED = 'obs_customized'
    +
    + +
    + +
    +
    +class memoryscope.enumeration.MessageRoleEnum(value)[source]
    +

    Bases: str, Enum

    +

    Enumeration for different message roles within a conversation context.

    +

    This enumeration includes predefined roles such as User, Assistant, and System, +which can be used to categorize messages in chat interfaces, AI interactions, or +any system that involves distinct participant roles.

    +
    +
    +USER = 'user'
    +
    + +
    +
    +ASSISTANT = 'assistant'
    +
    + +
    +
    +SYSTEM = 'system'
    +
    + +
    + +
    +
    +class memoryscope.enumeration.ModelEnum(value)[source]
    +

    Bases: str, Enum

    +

    An enumeration representing different types of models used within the system.

    +
    +
    Members:

    GENERATION_MODEL: Represents a model responsible for generating content. +EMBEDDING_MODEL: Represents a model tasked with creating embeddings, typically used for transforming data into a

    +
    +

    numerical form suitable for machine learning tasks.

    +
    +

    RANK_MODEL: Denotes a model that specializes in ranking, often used to order items based on relevance.

    +
    +
    +
    +
    +GENERATION_MODEL = 'generation_model'
    +
    + +
    +
    +EMBEDDING_MODEL = 'embedding_model'
    +
    + +
    +
    +RANK_MODEL = 'rank_model'
    +
    + +
    + +
    +
    +class memoryscope.enumeration.StoreStatusEnum(value)[source]
    +

    Bases: str, Enum

    +

    An enumeration.

    +
    +
    +VALID = 'valid'
    +
    + +
    +
    +EXPIRED = 'expired'
    +
    + +
    +
    diff --git a/en/memoryscope.enumeration.language_enum.html b/en/memoryscope.enumeration.language_enum.html index 5ff31a54..292a8a25 100644 --- a/en/memoryscope.enumeration.language_enum.html +++ b/en/memoryscope.enumeration.language_enum.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,32 @@
    -
    -

    memoryscope.enumeration.language_enum

    +
    +

    memoryscope.enumeration.language_enum

    +
    +
    +class memoryscope.enumeration.language_enum.LanguageEnum(value)[source]
    +

    Bases: str, Enum

    +

    An enumeration representing supported languages.

    +
    +
    Members:
      +
    • CN: Represents the Chinese language.

    • +
    • EN: Represents the English language.

    • +
    +
    +
    +
    +
    +CN = 'cn'
    +
    + +
    +
    +EN = 'en'
    +
    + +
    +
    diff --git a/en/memoryscope.enumeration.memory_type_enum.html b/en/memoryscope.enumeration.memory_type_enum.html index 157400aa..a9364261 100644 --- a/en/memoryscope.enumeration.memory_type_enum.html +++ b/en/memoryscope.enumeration.memory_type_enum.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,40 @@
    -
    -

    memoryscope.enumeration.memory_type_enum

    +
    +

    memoryscope.enumeration.memory_type_enum

    +
    +
    +class memoryscope.enumeration.memory_type_enum.MemoryTypeEnum(value)[source]
    +

    Bases: str, Enum

    +

    Defines an enumeration for different types of memory categories.

    +

    Each member represents a distinct type of memory content: +- CONVERSATION: Represents conversation-based memories. +- OBSERVATION: Denotes observational memories. +- INSIGHT: Indicates insightful memories derived from analysis. +- OBS_CUSTOMIZED: Customized observational memories.

    +
    +
    +CONVERSATION = 'conversation'
    +
    + +
    +
    +OBSERVATION = 'observation'
    +
    + +
    +
    +INSIGHT = 'insight'
    +
    + +
    +
    +OBS_CUSTOMIZED = 'obs_customized'
    +
    + +
    +
    diff --git a/en/memoryscope.enumeration.message_role_enum.html b/en/memoryscope.enumeration.message_role_enum.html index c52660e6..8b7066b3 100644 --- a/en/memoryscope.enumeration.message_role_enum.html +++ b/en/memoryscope.enumeration.message_role_enum.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,33 @@
    -
    -

    memoryscope.enumeration.message_role_enum

    +
    +

    memoryscope.enumeration.message_role_enum

    +
    +
    +class memoryscope.enumeration.message_role_enum.MessageRoleEnum(value)[source]
    +

    Bases: str, Enum

    +

    Enumeration for different message roles within a conversation context.

    +

    This enumeration includes predefined roles such as User, Assistant, and System, +which can be used to categorize messages in chat interfaces, AI interactions, or +any system that involves distinct participant roles.

    +
    +
    +USER = 'user'
    +
    + +
    +
    +ASSISTANT = 'assistant'
    +
    + +
    +
    +SYSTEM = 'system'
    +
    + +
    +
    diff --git a/en/memoryscope.enumeration.model_enum.html b/en/memoryscope.enumeration.model_enum.html index 7e531bab..15b64adb 100644 --- a/en/memoryscope.enumeration.model_enum.html +++ b/en/memoryscope.enumeration.model_enum.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,39 @@
    -
    -

    memoryscope.enumeration.model_enum

    +
    +

    memoryscope.enumeration.model_enum

    +
    +
    +class memoryscope.enumeration.model_enum.ModelEnum(value)[source]
    +

    Bases: str, Enum

    +

    An enumeration representing different types of models used within the system.

    +
    +
    Members:

    GENERATION_MODEL: Represents a model responsible for generating content. +EMBEDDING_MODEL: Represents a model tasked with creating embeddings, typically used for transforming data into a

    +
    +

    numerical form suitable for machine learning tasks.

    +
    +

    RANK_MODEL: Denotes a model that specializes in ranking, often used to order items based on relevance.

    +
    +
    +
    +
    +GENERATION_MODEL = 'generation_model'
    +
    + +
    +
    +EMBEDDING_MODEL = 'embedding_model'
    +
    + +
    +
    +RANK_MODEL = 'rank_model'
    +
    + +
    +
    diff --git a/en/memoryscope.enumeration.store_status_enum.html b/en/memoryscope.enumeration.store_status_enum.html index fe40fd7f..4774b0c1 100644 --- a/en/memoryscope.enumeration.store_status_enum.html +++ b/en/memoryscope.enumeration.store_status_enum.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    @@ -88,8 +96,25 @@
    -
    -

    memoryscope.enumeration.store_status_enum

    +
    +

    memoryscope.enumeration.store_status_enum

    +
    +
    +class memoryscope.enumeration.store_status_enum.StoreStatusEnum(value)[source]
    +

    Bases: str, Enum

    +

    An enumeration.

    +
    +
    +VALID = 'valid'
    +
    + +
    +
    +EXPIRED = 'expired'
    +
    + +
    +
    diff --git a/en/memoryscope.html b/en/memoryscope.html index 7725d7a1..1c8929f5 100644 --- a/en/memoryscope.html +++ b/en/memoryscope.html @@ -24,8 +24,7 @@ - - + @@ -61,8 +60,16 @@
  • Contribution
  • MemoryScope API Reference

    -
    @@ -96,9 +103,7 @@

    memoryscope - -

    +
    diff --git a/en/memoryscope.scheme.memory_node.html b/en/memoryscope.scheme.memory_node.html index c3cbe8e1..5bb92d9c 100644 --- a/en/memoryscope.scheme.memory_node.html +++ b/en/memoryscope.scheme.memory_node.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.scheme.message.html b/en/memoryscope.scheme.message.html index 7877b9f3..4980d52a 100644 --- a/en/memoryscope.scheme.message.html +++ b/en/memoryscope.scheme.message.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/memoryscope.scheme.model_response.html b/en/memoryscope.scheme.model_response.html index 2733b9f6..b1283d83 100644 --- a/en/memoryscope.scheme.model_response.html +++ b/en/memoryscope.scheme.model_response.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/modules.html b/en/modules.html index d0a76f6b..6ebb822c 100644 --- a/en/modules.html +++ b/en/modules.html @@ -61,7 +61,15 @@

    MemoryScope API Reference

    diff --git a/en/objects.inv b/en/objects.inv index 2e336a3d..e46dccc4 100644 Binary files a/en/objects.inv and b/en/objects.inv differ diff --git a/en/py-modindex.html b/en/py-modindex.html new file mode 100644 index 00000000..4aed4708 --- /dev/null +++ b/en/py-modindex.html @@ -0,0 +1,199 @@ + + + + + + + Python Module Index — MemoryScope documentation + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + +
    +
    +
    +
      +
    • + +
    • +
    • +
    +
    +
    +
    +
    + + +

    Python Module Index

    + +
    + m +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     
    + m
    + memoryscope +
        + memoryscope.constants +
        + memoryscope.constants.common_constants +
        + memoryscope.constants.language_constants +
        + memoryscope.enumeration +
        + memoryscope.enumeration.action_status_enum +
        + memoryscope.enumeration.language_enum +
        + memoryscope.enumeration.memory_type_enum +
        + memoryscope.enumeration.message_role_enum +
        + memoryscope.enumeration.model_enum +
        + memoryscope.enumeration.store_status_enum +
    + + +
    +
    +
    + +
    + +
    +

    © Copyright 2024, Alibaba Tongyi Lab.

    +
    + + Built with Sphinx using a + theme + provided by Read the Docs. + + +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/en/search.html b/en/search.html index 5661469d..2e4423ee 100644 --- a/en/search.html +++ b/en/search.html @@ -65,7 +65,15 @@

    MemoryScope API Reference

    diff --git a/en/searchindex.js b/en/searchindex.js index 121efab1..42cee19b 100644 --- a/en/searchindex.js +++ b/en/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["README", "docs/api", "docs/contribution", "docs/installation", "examples/advance/custom_operator", "examples/advance/custom_operator_zh", "examples/api/agentscope_example", "examples/api/autogen_example", "examples/api/simple_usages", "examples/api/simple_usages_zh", "examples/cli/CLI_README", "examples/cli/CLI_README_ZH", "index", "memoryscope", "memoryscope.constants", "memoryscope.constants.common_constants", "memoryscope.constants.language_constants", "memoryscope.core", "memoryscope.core.chat", "memoryscope.core.chat.api_memory_chat", "memoryscope.core.chat.base_memory_chat", "memoryscope.core.chat.cli_memory_chat", "memoryscope.core.config", "memoryscope.core.config.arguments", "memoryscope.core.config.config_manager", "memoryscope.core.memoryscope", "memoryscope.core.memoryscope_context", "memoryscope.core.models", "memoryscope.core.models.base_model", "memoryscope.core.models.dummy_generation_model", "memoryscope.core.models.llama_index_embedding_model", "memoryscope.core.models.llama_index_generation_model", "memoryscope.core.models.llama_index_rank_model", "memoryscope.core.operation", "memoryscope.core.operation.backend_operation", "memoryscope.core.operation.base_operation", "memoryscope.core.operation.base_workflow", "memoryscope.core.operation.consolidate_memory_op", "memoryscope.core.operation.frontend_operation", "memoryscope.core.service", "memoryscope.core.service.base_memory_service", "memoryscope.core.service.memory_scope_service", "memoryscope.core.storage", "memoryscope.core.storage.base_memory_store", "memoryscope.core.storage.base_monitor", "memoryscope.core.storage.dummy_memory_store", "memoryscope.core.storage.dummy_monitor", "memoryscope.core.storage.llama_index_es_memory_store", "memoryscope.core.storage.llama_index_sync_elasticsearch", "memoryscope.core.utils", "memoryscope.core.utils.datetime_handler", "memoryscope.core.utils.logger", "memoryscope.core.utils.prompt_handler", "memoryscope.core.utils.registry", "memoryscope.core.utils.response_text_parser", "memoryscope.core.utils.singleton", "memoryscope.core.utils.timer", "memoryscope.core.utils.tool_functions", "memoryscope.core.worker", "memoryscope.core.worker.backend", "memoryscope.core.worker.backend.contra_repeat_worker", "memoryscope.core.worker.backend.get_observation_with_time_worker", "memoryscope.core.worker.backend.get_observation_worker", "memoryscope.core.worker.backend.get_reflection_subject_worker", "memoryscope.core.worker.backend.info_filter_worker", "memoryscope.core.worker.backend.load_memory_worker", "memoryscope.core.worker.backend.long_contra_repeat_worker", "memoryscope.core.worker.backend.update_insight_worker", "memoryscope.core.worker.backend.update_memory_worker", "memoryscope.core.worker.base_worker", "memoryscope.core.worker.dummy_worker", "memoryscope.core.worker.frontend", "memoryscope.core.worker.frontend.extract_time_worker", "memoryscope.core.worker.frontend.fuse_rerank_worker", "memoryscope.core.worker.frontend.print_memory_worker", "memoryscope.core.worker.frontend.read_message_worker", "memoryscope.core.worker.frontend.retrieve_memory_worker", "memoryscope.core.worker.frontend.semantic_rank_worker", "memoryscope.core.worker.frontend.set_query_worker", "memoryscope.core.worker.memory_base_worker", "memoryscope.core.worker.memory_manager", "memoryscope.enumeration", "memoryscope.enumeration.action_status_enum", "memoryscope.enumeration.language_enum", "memoryscope.enumeration.memory_type_enum", "memoryscope.enumeration.message_role_enum", "memoryscope.enumeration.model_enum", "memoryscope.enumeration.store_status_enum", "memoryscope.scheme", "memoryscope.scheme.memory_node", "memoryscope.scheme.message", "memoryscope.scheme.model_response", "modules"], "filenames": ["README.md", "docs/api.rst", "docs/contribution.md", "docs/installation.md", "examples/advance/custom_operator.md", "examples/advance/custom_operator_zh.md", "examples/api/agentscope_example.md", "examples/api/autogen_example.md", "examples/api/simple_usages.ipynb", "examples/api/simple_usages_zh.ipynb", "examples/cli/CLI_README.md", "examples/cli/CLI_README_ZH.md", "index.rst", "memoryscope.rst", "memoryscope.constants.rst", "memoryscope.constants.common_constants.rst", "memoryscope.constants.language_constants.rst", "memoryscope.core.rst", "memoryscope.core.chat.rst", "memoryscope.core.chat.api_memory_chat.rst", "memoryscope.core.chat.base_memory_chat.rst", "memoryscope.core.chat.cli_memory_chat.rst", "memoryscope.core.config.rst", "memoryscope.core.config.arguments.rst", "memoryscope.core.config.config_manager.rst", "memoryscope.core.memoryscope.rst", "memoryscope.core.memoryscope_context.rst", "memoryscope.core.models.rst", "memoryscope.core.models.base_model.rst", "memoryscope.core.models.dummy_generation_model.rst", "memoryscope.core.models.llama_index_embedding_model.rst", "memoryscope.core.models.llama_index_generation_model.rst", "memoryscope.core.models.llama_index_rank_model.rst", "memoryscope.core.operation.rst", "memoryscope.core.operation.backend_operation.rst", "memoryscope.core.operation.base_operation.rst", "memoryscope.core.operation.base_workflow.rst", "memoryscope.core.operation.consolidate_memory_op.rst", "memoryscope.core.operation.frontend_operation.rst", "memoryscope.core.service.rst", "memoryscope.core.service.base_memory_service.rst", "memoryscope.core.service.memory_scope_service.rst", "memoryscope.core.storage.rst", "memoryscope.core.storage.base_memory_store.rst", "memoryscope.core.storage.base_monitor.rst", "memoryscope.core.storage.dummy_memory_store.rst", "memoryscope.core.storage.dummy_monitor.rst", "memoryscope.core.storage.llama_index_es_memory_store.rst", "memoryscope.core.storage.llama_index_sync_elasticsearch.rst", "memoryscope.core.utils.rst", "memoryscope.core.utils.datetime_handler.rst", "memoryscope.core.utils.logger.rst", "memoryscope.core.utils.prompt_handler.rst", "memoryscope.core.utils.registry.rst", "memoryscope.core.utils.response_text_parser.rst", "memoryscope.core.utils.singleton.rst", "memoryscope.core.utils.timer.rst", "memoryscope.core.utils.tool_functions.rst", "memoryscope.core.worker.rst", "memoryscope.core.worker.backend.rst", "memoryscope.core.worker.backend.contra_repeat_worker.rst", "memoryscope.core.worker.backend.get_observation_with_time_worker.rst", "memoryscope.core.worker.backend.get_observation_worker.rst", "memoryscope.core.worker.backend.get_reflection_subject_worker.rst", "memoryscope.core.worker.backend.info_filter_worker.rst", "memoryscope.core.worker.backend.load_memory_worker.rst", "memoryscope.core.worker.backend.long_contra_repeat_worker.rst", "memoryscope.core.worker.backend.update_insight_worker.rst", "memoryscope.core.worker.backend.update_memory_worker.rst", "memoryscope.core.worker.base_worker.rst", "memoryscope.core.worker.dummy_worker.rst", "memoryscope.core.worker.frontend.rst", "memoryscope.core.worker.frontend.extract_time_worker.rst", "memoryscope.core.worker.frontend.fuse_rerank_worker.rst", "memoryscope.core.worker.frontend.print_memory_worker.rst", "memoryscope.core.worker.frontend.read_message_worker.rst", "memoryscope.core.worker.frontend.retrieve_memory_worker.rst", "memoryscope.core.worker.frontend.semantic_rank_worker.rst", "memoryscope.core.worker.frontend.set_query_worker.rst", "memoryscope.core.worker.memory_base_worker.rst", "memoryscope.core.worker.memory_manager.rst", "memoryscope.enumeration.rst", "memoryscope.enumeration.action_status_enum.rst", "memoryscope.enumeration.language_enum.rst", "memoryscope.enumeration.memory_type_enum.rst", "memoryscope.enumeration.message_role_enum.rst", "memoryscope.enumeration.model_enum.rst", "memoryscope.enumeration.store_status_enum.rst", "memoryscope.scheme.rst", "memoryscope.scheme.memory_node.rst", "memoryscope.scheme.message.rst", "memoryscope.scheme.model_response.rst", "modules.rst"], "titles": ["MemoryScope", "Enumeration", "Contribute to MemoryScope", "Installing MemoryScope", "Custom Operator and Worker", "\u81ea\u5b9a\u4e49 Operator \u548c Worker", "Working with AgentScope", "Working with AutoGen", "Example usages of chat and service interfaces", "chat \u548c service \u63a5\u53e3\u7684\u793a\u4f8b\u7528\u6cd5", "The Cli Interface of MemoryScope", "MemoryScope \u7684\u547d\u4ee4\u884c\u63a5\u53e3", "MemoryScope Documentation", "memoryscope", "memoryscope.constants", "memoryscope.constants.common_constants", "memoryscope.constants.language_constants", "memoryscope.core", "memoryscope.core.chat", "memoryscope.core.chat.api_memory_chat", "memoryscope.core.chat.base_memory_chat", "memoryscope.core.chat.cli_memory_chat", "memoryscope.core.config", "memoryscope.core.config.arguments", "memoryscope.core.config.config_manager", "memoryscope.core.memoryscope", "memoryscope.core.memoryscope_context", "memoryscope.core.models", "memoryscope.core.models.base_model", "memoryscope.core.models.dummy_generation_model", "memoryscope.core.models.llama_index_embedding_model", "memoryscope.core.models.llama_index_generation_model", "memoryscope.core.models.llama_index_rank_model", "memoryscope.core.operation", "memoryscope.core.operation.backend_operation", "memoryscope.core.operation.base_operation", "memoryscope.core.operation.base_workflow", "memoryscope.core.operation.consolidate_memory_op", "memoryscope.core.operation.frontend_operation", "memoryscope.core.service", "memoryscope.core.service.base_memory_service", "memoryscope.core.service.memory_scope_service", "memoryscope.core.storage", "memoryscope.core.storage.base_memory_store", "memoryscope.core.storage.base_monitor", "memoryscope.core.storage.dummy_memory_store", "memoryscope.core.storage.dummy_monitor", "memoryscope.core.storage.llama_index_es_memory_store", "memoryscope.core.storage.llama_index_sync_elasticsearch", "memoryscope.core.utils", "memoryscope.core.utils.datetime_handler", "memoryscope.core.utils.logger", "memoryscope.core.utils.prompt_handler", "memoryscope.core.utils.registry", "memoryscope.core.utils.response_text_parser", "memoryscope.core.utils.singleton", "memoryscope.core.utils.timer", "memoryscope.core.utils.tool_functions", "memoryscope.core.worker", "memoryscope.core.worker.backend", "memoryscope.core.worker.backend.contra_repeat_worker", "memoryscope.core.worker.backend.get_observation_with_time_worker", "memoryscope.core.worker.backend.get_observation_worker", "memoryscope.core.worker.backend.get_reflection_subject_worker", "memoryscope.core.worker.backend.info_filter_worker", "memoryscope.core.worker.backend.load_memory_worker", "memoryscope.core.worker.backend.long_contra_repeat_worker", "memoryscope.core.worker.backend.update_insight_worker", "memoryscope.core.worker.backend.update_memory_worker", "memoryscope.core.worker.base_worker", "memoryscope.core.worker.dummy_worker", "memoryscope.core.worker.frontend", "memoryscope.core.worker.frontend.extract_time_worker", "memoryscope.core.worker.frontend.fuse_rerank_worker", "memoryscope.core.worker.frontend.print_memory_worker", "memoryscope.core.worker.frontend.read_message_worker", "memoryscope.core.worker.frontend.retrieve_memory_worker", "memoryscope.core.worker.frontend.semantic_rank_worker", "memoryscope.core.worker.frontend.set_query_worker", "memoryscope.core.worker.memory_base_worker", "memoryscope.core.worker.memory_manager", "memoryscope.enumeration", "memoryscope.enumeration.action_status_enum", "memoryscope.enumeration.language_enum", "memoryscope.enumeration.memory_type_enum", "memoryscope.enumeration.message_role_enum", "memoryscope.enumeration.model_enum", "memoryscope.enumeration.store_status_enum", "memoryscope.scheme", "memoryscope.scheme.memory_node", "memoryscope.scheme.message", "memoryscope.scheme.model_response", "memoryscope"], "terms": {"english": [0, 3, 10], "\u4e2d\u6587": [0, 11], "equip": [0, 12], "your": [0, 4, 5, 8, 10], "llm": [0, 8, 12], "chatbot": [0, 8, 12], "power": [0, 12], "flexibl": [0, 12], "long": [0, 4, 5, 12], "term": [0, 4, 5, 12], "memori": [0, 3, 4, 5, 9, 12], "system": [0, 8, 12], "2024": [0, 8], "09": 0, "10": [0, 8], "we": [0, 2, 6, 7, 8], "releas": 0, "v0": 0, "1": [0, 8, 9], "0": 0, "now": [0, 2, 4, 5, 8], "which": [0, 4, 8], "also": [0, 3, 8], "avail": [0, 10], "pypi": [0, 12], "provid": [0, 2, 8, 10, 12], "capabl": [0, 12], "offer": [0, 8, 12], "build": [0, 3, 8, 12], "abil": [0, 8, 12], "It": [0, 8, 12], "can": [0, 2, 6, 7, 8, 10, 12], "appli": [0, 12], "scenario": [0, 12], "like": [0, 8, 12], "person": [0, 8, 12], "assist": [0, 8, 10, 12], "emot": [0, 8, 12], "companion": [0, 12], "continu": [0, 12], "learn": [0, 8, 12], "through": [0, 10, 12], "rememb": [0, 2, 8, 12], "user": [0, 3, 10, 11, 12], "basic": [0, 12], "inform": [0, 8, 12], "well": [0, 6, 7, 8, 12], "variou": [0, 8, 12], "habit": [0, 12], "prefer": [0, 8, 10, 12], "thi": [0, 2, 8, 12], "allow": [0, 12], "gradual": [0, 12], "experi": [0, 8, 12], "sens": [0, 8, 12], "understand": [0, 8, 12], "when": [0, 2, 8, 12], "us": [0, 2, 12], "databas": [0, 8, 12], "vector": [0, 12], "default": [0, 4, 5, 8, 10, 12], "elasticsearch": [0, 3, 6, 7, 12], "store": [0, 4, 5, 12], "all": [0, 8, 10, 12], "fragment": [0, 12], "record": [0, 12], "worker": [0, 8, 9, 12], "librari": [0, 12], "atom": [0, 12], "individu": [0, 8, 12], "includ": [0, 2, 8, 12], "over": [0, 8, 12], "20": [0, 8, 12], "task": [0, 12], "queri": [0, 4, 5, 8, 9, 12], "filter": [0, 8, 12], "observ": [0, 8, 9, 12], "extract": [0, 8, 12], "insight": [0, 8, 9, 12], "updat": [0, 4, 8, 12], "oper": [0, 8, 9, 12], "base": [0, 8, 12], "pipelin": [0, 12], "construct": [0, 12], "servic": [0, 3, 12], "realiz": [0, 12], "kei": [0, 3, 8, 12], "retriev": [0, 4, 5, 8, 12], "consolid": [0, 12], "upon": [0, 12], "arriv": [0, 12], "return": [0, 8, 12], "semant": [0, 12], "relat": [0, 12], "piec": [0, 8, 12], "those": [0, 12], "from": [0, 2, 4, 5, 8, 9, 12], "correspond": [0, 8, 12], "time": [0, 2, 9, 12], "involv": [0, 2, 12], "refer": [0, 3, 8], "take": [0, 8, 12], "batch": [0, 12], "import": [0, 4, 5, 8, 9, 12], "reflect": [0, 12], "re": [0, 2, 12], "At": [0, 4, 12], "regular": [0, 12], "interv": [0, 12], "perform": [0, 2, 8, 12], "newli": [0, 12], "form": [0, 12], "Then": [0, 6, 7, 12], "ensur": [0, 6, 7, 8, 12], "contradict": [0, 12], "repetit": [0, 12], "among": [0, 12], "ar": [0, 2, 8, 10, 12], "properli": [0, 12], "handl": [0, 12], "best": [0, 8], "practic": [0, 8], "core": [0, 3, 4, 5, 10, 11], "ha": [0, 2, 8], "implement": [0, 8], "dialogu": 0, "interfac": [0, 3], "command": 0, "line": 0, "cli": [0, 3, 8, 12], "combin": 0, "current": [0, 4, 5, 8], "popular": 0, "agent": 0, "autogen": [0, 6], "agentscop": 0, "low": [0, 12], "respons": [0, 2, 9, 10, 12], "rt": [0, 12], "backend": [0, 8, 10], "decoupl": 0, "frontend": 0, "while": 0, "usual": 0, "recommend": [0, 6, 7, 12], "queu": 0, "execut": 0, "": [0, 2, 4, 8], "depend": 0, "sole": 0, "onli": [0, 8], "500m": 0, "hierarch": 0, "coher": 0, "The": [0, 3, 6, 7, 8], "structur": 0, "being": [0, 8], "high": [0, 8], "level": 0, "aggreg": 0, "similarli": 0, "theme": 0, "period": 0, "fictiti": [0, 8], "content": [0, 8, 9], "out": [0, 2, 8], "avoid": 0, "hallucin": 0, "awar": [0, 8], "sensit": [0, 8], "both": [0, 2, 8], "therefor": [0, 8], "accur": [0, 8], "relev": [0, 2], "some": [0, 2, 8], "openai_backend": 0, "gener": [0, 8, 10], "gpt": [0, 3, 10, 11], "4o": [0, 3, 10, 11], "mini": 0, "4": [0, 8, 9], "3": [0, 3, 8, 9, 10, 11], "5": [0, 8, 9], "turbo": 0, "embed": [0, 3, 8, 9, 10, 11], "text": [0, 3, 8, 9, 10, 11], "ada": 0, "002": 0, "larg": 0, "small": [0, 3, 10, 11], "dashscope_backend": 0, "qwen": [0, 3, 9, 10, 11], "max": [0, 3, 9, 10, 11], "plu": 0, "qwen2": [0, 8], "72b": [0, 8], "instruct": [0, 8], "v1": 0, "v2": [0, 3, 8, 9, 10, 11], "rerank": [0, 3, 8, 9, 10, 11], "gte": [0, 3, 8, 9, 10, 11], "In": [0, 2], "futur": [0, 8], "more": [0, 12], "local": [0, 2, 8], "deploy": 0, "For": [0, 8, 12], "pleas": [0, 2], "md": 0, "simpl": [0, 8, 12], "usag": [0, 12], "With": [0, 2, 8], "advanc": [0, 4, 5, 8, 12], "custom": [0, 8], "alwai": [0, 8], "encourag": 0, "highli": 0, "pre": [0, 2], "commit": 0, "hook": [0, 2], "repo": 0, "befor": [0, 8, 10], "pull": 0, "request": 0, "These": [0, 8], "hous": 0, "keep": [0, 2, 8], "script": 0, "everi": 0, "you": [0, 2, 4, 5, 6, 7, 8, 10], "make": [0, 6, 7, 8], "git": [0, 2, 3], "care": 0, "format": [0, 2], "lint": 0, "automat": 0, "pip": [0, 2, 3, 6, 7], "e": [0, 2, 3, 6, 7], "our": [0, 2, 8], "guid": 0, "detail": [0, 2, 8], "cite": 0, "paper": 0, "softwar": 0, "author": 0, "li": 0, "yu": 0, "tiancheng": 0, "qin": 0, "qingxu": 0, "fu": 0, "sen": 0, "huang": 0, "xianzh": 0, "xu": 0, "zhaoyang": 0, "liu": 0, "boyin": 0, "month": [0, 8], "titl": [0, 2], "url": 0, "http": [0, 2, 3], "github": [0, 2, 3], "com": [0, 2, 3], "modelscop": [0, 3], "year": [0, 8], "memoryscop": [1, 4, 5, 6, 7], "api": [1, 3, 6, 7], "document": [1, 2, 3, 6, 7], "commun": [2, 8], "thrive": 2, "divers": [2, 8], "idea": [2, 8], "its": [2, 4, 5, 8], "member": 2, "whether": [2, 8, 10], "fix": 2, "ad": 2, "improv": 2, "exampl": [2, 4, 5, 6, 7, 12], "help": [2, 8], "i": [2, 4, 6, 7, 8, 10, 12], "welcom": 2, "here": [2, 8, 10], "how": [2, 8], "did": 2, "find": [2, 8], "have": [2, 6, 7, 8], "first": [2, 6, 7, 8, 10], "check": [2, 8], "issu": 2, "tracker": 2, "see": [2, 8], "alreadi": 2, "been": [2, 8], "If": [2, 8, 10], "feel": [2, 8], "free": [2, 8], "open": 2, "much": 2, "possibl": [2, 8], "A": [2, 8, 10], "descript": [2, 4, 5], "clear": 2, "step": 2, "reproduc": 2, "problem": [2, 8], "version": 2, "ani": [2, 8], "snippet": 2, "error": 2, "messag": [2, 8, 9], "To": 2, "work": [2, 8], "an": [2, 8], "start": [2, 3, 4, 5, 6, 7, 8, 10, 12], "usernam": 2, "cd": [2, 3], "propos": 2, "organ": 2, "separ": 2, "main": [2, 8], "checkout": 2, "b": 2, "name": [2, 4, 8, 10], "focus": 2, "address": 2, "multipl": 2, "better": 2, "each": [2, 4, 5, 8], "develop": 2, "addit": 2, "compar": 2, "offici": [2, 8], "instal": [2, 6, 7, 8, 9, 10, 11, 12], "onc": 2, "ve": [2, 8], "made": 2, "them": [2, 8], "write": [2, 4, 8], "concis": 2, "explain": 2, "add": [2, 3, 4, 5], "m": [2, 8, 9], "brief": 2, "might": [2, 8], "get": [2, 8], "rais": 2, "resolv": 2, "accord": 2, "again": 2, "readi": [2, 8], "feedback": 2, "other": [2, 8], "context": [2, 4, 5, 8], "process": 2, "discuss": [2, 8], "part": [2, 8], "wait": 2, "u": 2, "mai": [2, 8], "suggest": 2, "ey": [2, 8], "notif": 2, "clone": 3, "repositori": 3, "edit": 3, "set": [3, 8, 10], "project": [3, 8], "configur": [3, 8], "g": 3, "vim": [3, 4, 5], "config": [3, 4, 5, 10, 11], "demo_config": [3, 4, 10], "yaml": [3, 4, 5], "imag": [3, 8, 10], "sudo": [3, 6, 7], "network": [3, 8], "host": 3, "t": [3, 8], "launch": [3, 10], "contain": 3, "run": [3, 6, 7, 8, 10], "rm": 3, "net": 3, "yml": 3, "chang": 3, "environ": [3, 8], "variabl": 3, "openai_api_kei": 3, "sk": 3, "0000000000": 3, "memory_scope_main": 3, "scope": 3, "method": [3, 6, 7, 10], "p": [3, 6, 7], "9200": [3, 6, 7], "discoveri": [3, 6, 7], "type": [3, 6, 7], "singl": [3, 6, 7], "node": [3, 6, 7], "xpack": [3, 6, 7], "secur": [3, 6, 7], "enabl": [3, 6, 7], "fals": [3, 6, 7, 10, 11], "licens": [3, 6, 7], "self_gener": [3, 6, 7], "trial": [3, 6, 7], "elast": [3, 6, 7], "co": [3, 6, 7], "8": [3, 6, 7, 8], "13": [3, 6, 7, 8], "2": [3, 6, 7, 8, 9], "test": [3, 8], "chines": [3, 10], "dashscop": [3, 10], "export": 3, "dashscope_api_kei": 3, "languag": [3, 8, 9, 10, 11], "cn": [3, 9, 10, 11], "memory_chat_class": [3, 8, 9, 10, 11], "cli_memory_chat": [3, 10, 11], "human_nam": [3, 8, 9, 10, 11], "\u7528\u6237": [3, 9, 10, 11], "assistant_nam": [3, 8, 9, 10, 11], "ai": [3, 8, 9, 10, 11], "generation_backend": [3, 8, 9, 10, 11], "dashscope_gener": [3, 8, 9, 10, 11], "generation_model": [3, 4, 5, 8, 9, 10, 11], "embedding_backend": [3, 8, 9, 10, 11], "dashscope_embed": [3, 8, 9, 10, 11], "embedding_model": [3, 8, 9, 10, 11], "enable_rank": [3, 8, 9, 10, 11], "true": [3, 8, 9, 10, 11], "rank_backend": [3, 8, 9, 10, 11], "dashscope_rank": [3, 8, 9, 10, 11], "rank_model": [3, 8, 9, 10, 11], "openai": [3, 10], "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx": 3, "en": [3, 8, 10, 11], "openai_gener": [3, 10, 11], "openai_embed": [3, 10, 11], "python": [3, 4, 5, 6, 7], "quick": [3, 4, 5, 12], "demo": [3, 4, 5, 6, 7], "py": [3, 4, 5, 6, 7], "config_path": [3, 10, 11], "demo_config_zh": [3, 5, 11], "creat": [4, 8, 10], "new": [4, 8, 9, 12], "example_query_work": [4, 5], "contrib": [4, 5], "directori": 4, "program": 4, "note": [4, 8], "class": [4, 5, 8, 10], "must": [4, 5], "match": 4, "filenam": 4, "examplequerywork": [4, 5], "datetim": [4, 5], "constant": [4, 5], "common_const": [4, 5], "query_with_t": [4, 5], "memory_base_work": [4, 5], "memorybasework": [4, 5], "def": [4, 5], "_run": [4, 5], "self": [4, 5], "timestamp": [4, 5], "int": [4, 5], "assert": [4, 5], "chat_kwarg": [4, 5], "els": [4, 5], "strip": [4, 5], "n": [4, 5, 8, 9], "meow": [4, 5], "end": [4, 5], "answer": [4, 5], "determin": [4, 5, 8], "set_workflow_context": [4, 5], "startup": 4, "file": 4, "copi": 4, "cp": [4, 5], "replac": [4, 5], "bottom": 4, "insert": 4, "definit": 4, "previou": 4, "set_queri": [4, 5], "workflow": [4, 5, 8, 9], "rewrite_queri": [4, 5], "retrieve_memori": [4, 5], "frontend_oper": [4, 5], "extract_tim": [4, 5], "retrieve_obs_in": [4, 5], "semantic_rank": [4, 5], "fuse_rerank": [4, 5], "verifi": 4, "\u5728": 5, "\u8def\u5f84\u4e0b\u521b\u5efa\u65b0worker": 5, "\u547d\u540d\u4e3a": 5, "\u5199\u5165\u65b0\u7684\u81ea\u5b9a\u4e49worker\u7684\u7a0b\u5e8f": 5, "\u6ce8\u610f": 5, "\u7684\u547d\u540d\u9700\u8981\u4e0e\u6587\u4ef6\u540d\u4fdd\u6301\u4e00\u81f4": 5, "\u4e3a": 5, "\u521b\u5efayaml\u542f\u52a8\u6587\u4ef6": 5, "\u590d\u5236demo_config_zh": 5, "\u5728\u6700\u4e0b\u9762\u63d2\u5165\u65b0worker\u7684\u5b9a\u4e49": 5, "\u5e76\u4e14\u53d6\u4ee3\u4e4b\u524d\u7684\u9ed8\u8ba4": 5, "\u5e76\u66ff\u6362operation\u7684workflow": 5, "\u9a8c\u8bc1": 5, "sure": [6, 7], "up": [6, 7, 8], "docker": [6, 7, 8, 9, 10, 11, 12], "final": [6, 7, 8], "agentscope_exampl": 6, "pyautogen": 7, "autogen_exampl": 7, "notebook": 8, "show": 8, "along": 8, "featur": [8, 12], "follow": [8, 10], "guidelin": [8, 10], "readm": [8, 9, 10, 11], "need": 8, "specifi": [8, 10], "argument": [8, 9], "api_memory_chat": [8, 9], "worker_param": 8, "get_reflection_subject": 8, "reflect_num_quest": 8, "come": 8, "so": [8, 10], "veri": 8, "easi": 8, "just": 8, "what": [8, 12], "ll": 8, "do": [8, 10], "memory_chat": [8, 9], "default_memory_chat": [8, 9], "run_service_oper": [8, 9], "delete_al": [8, 9], "chat_with_memori": [8, 9], "my": 8, "hobbi": 8, "plai": 8, "piano": 8, "print": [8, 9], "That": 8, "39": 8, "wonder": 8, "beauti": 8, "express": 8, "bring": 8, "joi": 8, "relax": 8, "achiev": 8, "engag": 8, "creativ": 8, "technic": 8, "aspect": 8, "mind": 8, "enhanc": 8, "cognit": 8, "skill": 8, "foster": 8, "enjoi": 8, "classic": 8, "modern": 8, "composit": 8, "improvis": 8, "vast": 8, "repertoir": 8, "explor": 8, "music": 8, "journei": 8, "choos": 8, "multi": 8, "round": 8, "convers": [8, 10], "howev": 8, "sinc": 8, "call": 8, "yet": 8, "know": 8, "instrument": 8, "history_message_strategi": [8, 9], "none": [8, 9], "mention": 8, "ye": 8, "sorri": 8, "don": 8, "access": 8, "about": [8, 12], "unless": 8, "share": 8, "me": 8, "dure": 8, "cannot": 8, "bit": 8, "try": 8, "meta": 8, "fruit": 8, "should": 8, "eat": 8, "afternoon": 8, "watermelon": 8, "6": [8, 9], "short": 8, "birthdai": 8, "wish": 8, "friend": 8, "7": 8, "thank": 8, "let": 8, "formerli": 8, "known": 8, "facebook": 8, "impli": 8, "compani": 8, "forefront": 8, "technologi": 8, "social": 8, "media": 8, "innov": 8, "influenti": 8, "platform": 8, "instagram": 8, "whatsapp": 8, "virtual": 8, "realiti": 8, "oculu": 8, "effort": 8, "toward": 8, "metavers": 8, "excit": 8, "shape": 8, "digit": 8, "interact": 8, "great": 8, "wai": [8, 10], "nourish": 8, "bodi": 8, "satisfi": 8, "tast": 8, "bud": 8, "consid": 8, "refresh": 8, "nutriti": 8, "option": [8, 10], "juici": 8, "orang": 8, "sweet": 8, "appl": 8, "hand": 8, "berri": 8, "strawberri": 8, "blueberri": 8, "raspberri": 8, "slice": 8, "delici": 8, "pack": 8, "vitamin": 8, "antioxid": 8, "fiber": 8, "energ": 8, "throughout": 8, "dai": 8, "one": 8, "appeal": 8, "most": 8, "mix": 8, "few": 8, "color": 8, "salad": 8, "excel": 8, "choic": 8, "hydrat": 8, "calori": 8, "rich": 8, "nutrient": 8, "c": 8, "lycopen": 8, "Its": 8, "water": 8, "perfect": 8, "snack": 8, "warm": 8, "tasti": 8, "healthi": 8, "treat": 8, "yourself": 8, "34": [8, 9], "happi": 8, "dear": 8, "special": 8, "fill": 8, "love": 8, "laughter": 8, "unforgett": 8, "moment": 8, "success": 8, "adventur": 8, "heart": 8, "sing": 8, "cheer": 8, "anoth": 8, "friendship": 8, "fullest": 8, "memory_servic": [8, 9], "default_memory_servic": [8, 9], "init_servic": [8, 9], "result": [8, 9], "consolidate_memori": [8, 9], "f": [8, 9], "action": [8, 9], "valid": [8, 9], "uninform": 8, "ones": 8, "case": 8, "prospect": 8, "go": 8, "amazon": 8, "am": 8, "plan": 8, "busi": 8, "trip": 8, "seattl": 8, "next": 8, "week": 8, "9": 8, "classmat": 8, "liam": 8, "googl": 8, "he": 8, "york": 8, "meal": 8, "him": 8, "cynthia": 8, "she": 8, "decid": 8, "univers": 8, "iowa": 8, "80": 8, "word": 8, "micro": [8, 9], "drama": 8, "11": 8, "kind": 8, "smci": 8, "thei": 8, "12": 8, "quit": 8, "promis": 8, "given": 8, "statu": 8, "world": 8, "lead": 8, "tech": 8, "expect": 8, "competit": 8, "compens": 8, "career": 8, "growth": 8, "opportun": 8, "dynam": 8, "chanc": 8, "actual": 8, "vari": 8, "role": 8, "team": 8, "good": 8, "research": 8, "specif": 8, "posit": 8, "cultur": 8, "employe": 8, "review": 8, "comprehens": 8, "point": 8, "weather": 8, "forecast": 8, "appropri": 8, "mild": 8, "marin": 8, "climat": 8, "rainfal": 8, "transport": 8, "familiar": 8, "sea": 8, "tac": 8, "airport": 8, "light": 8, "rail": 8, "buse": 8, "ride": 8, "around": 8, "accommod": 8, "book": 8, "hotel": 8, "meet": 8, "locat": 8, "conveni": 8, "area": 8, "downtown": 8, "amen": 8, "confirm": 8, "schedul": 8, "differ": [8, 10], "outsid": 8, "pacif": 8, "zone": 8, "etiquett": 8, "brush": 8, "especi": 8, "client": [8, 12], "partner": 8, "look": 8, "industri": 8, "event": 8, "stai": 8, "dine": 8, "culinari": 8, "scene": 8, "leisur": 8, "permit": 8, "attract": 8, "pike": 8, "place": 8, "market": 8, "space": 8, "needl": 8, "stroll": 8, "puget": 8, "sound": 8, "safe": 8, "travel": 8, "product": 8, "nice": 8, "catch": 8, "after": 8, "hi": 8, "exchang": 8, "stori": 8, "tip": 8, "venu": 8, "pick": 8, "restaur": 8, "suit": 8, "perhap": 8, "somewher": 8, "central": 8, "signific": 8, "coordin": 8, "date": 8, "adjust": 8, "topic": 8, "prepar": 8, "starter": 8, "life": 8, "interest": 8, "togeth": 8, "profession": 8, "valuabl": 8, "could": 8, "benefici": 8, "own": 8, "too": 8, "spark": 8, "reunion": 8, "As": 8, "hug": 8, "her": 8, "tightli": 8, "felt": 8, "bittersweet": 8, "pang": 8, "close": 8, "whisper": 8, "stare": 8, "luggag": 8, "adorn": 8, "sticker": 8, "smile": 8, "glisten": 8, "distanc": 8, "mean": 8, "noth": 8, "intertwin": 8, "laugh": 8, "late": 8, "night": 8, "studi": 8, "session": 8, "fuel": 8, "echo": 8, "melodi": 8, "apart": 8, "cab": 8, "honk": 8, "reluctantli": 8, "dream": 8, "chapter": 8, "anew": 8, "unabl": 8, "real": 8, "prior": 8, "data": 8, "hypothet": 8, "fiction": 8, "within": 8, "would": 8, "search": 8, "onlin": 8, "sourc": [8, 12], "natur": 8, "activ": 8, "inquir": 8, "infer": 8, "august": 8, "successfulli": 8, "resolut": 8, "conflict": 8, "realli": 8, "mango": 8, "todai": 8, "want": 8, "14": 8, "recent": 8, "switch": 8, "job": 8, "join": 8, "15": 8, "peach": 8, "16": 8, "coconut": 8, "17": 8, "surf": 8, "florida": 8, "18": 8, "tomorrow": 8, "19": 8, "congratul": 8, "far": 8, "whenev": 8, "No": 8, "everyon": 8, "plenti": 8, "spot": 8, "wave": 8, "fantast": 8, "memor": 8, "doesn": 8, "accumul": 8, "enough": 8, "reflect_and_reconsolid": [8, 9], "dislik": 8, "modifi": [8, 9], "respond": 8, "start_tim": [8, 9], "end_tim": [8, 9], "total_tim": [8, 9], "nrespons": 8, "second": 8, "21": 8, "22": 8, "23": 8, "494797706604004": 8, "sometim": 8, "400442123413086": 8, "anyth": 8, "8412117958068848": 8, "haven": 8, "had": 8, "extern": 8, "calendar": 8, "knowledg": 8, "train": 8, "7565529346466064": 8, "doe": 8, "increas": 8, "direct": 8, "reader": 8, "guidanc": 8, "addition": 8, "asynchron": 8, "incur": 8, "\u8fd9\u4e2a\u7b14\u8bb0\u672c\u5c55\u793a\u4e86": 9, "\u7684": 9, "\u63a5\u53e3\u7684\u7b80\u5355\u7528\u6cd5": 9, "\u4ee5\u53ca\u5b83\u7684\u4e3b\u8981\u529f\u80fd": 9, "\u5728\u8fd0\u884c\u8fd9\u4e2a\u7b14\u8bb0\u672c\u4e4b\u524d": 9, "\u8bf7\u5148\u6309\u7167": [9, 11], "\u4e2d\u7684": [9, 11], "\u6307\u5357\u8fdb\u884c\u5b89\u88c5": [9, 11], "\u5e76\u542f\u52a8": [9, 11], "\u955c\u50cf": [9, 11], "\u9996\u5148": 9, "\u6211\u4eec\u9700\u8981\u6307\u5b9a\u4e00\u4e2a\u914d\u7f6e\u5e76\u521d\u59cb\u5316\u4e00\u4e2a": 9, "\u914d\u6709\u9ed8\u8ba4\u7684": 9, "\u63a5\u53e3": 9, "\u56e0\u6b64\u5f00\u59cb\u804a\u5929\u975e\u5e38\u5bb9\u6613": 9, "\u5c31\u50cf\u4f7f\u7528\u4efb\u4f55\u5927\u578b\u8bed\u8a00\u6a21\u578b\u804a\u5929\u673a\u5668\u4eba\u4e00\u6837": 9, "\u6211\u7684\u7231\u597d\u662f\u5f39\u7434": 9, "\u56de\u7b541": 9, "\u5f88\u9ad8\u5174\u4e86\u89e3\u5230\u60a8\u7684\u7231\u597d\u662f\u5f39\u7434": 9, "\u8fd9\u662f\u4e00\u79cd\u65e2\u80fd\u9676\u51b6\u60c5\u64cd\u53c8\u80fd\u63d0\u5347\u97f3\u4e50\u6280\u80fd\u7684\u7f8e\u5999\u827a\u672f\u5f62\u5f0f": 9, "\u65e0\u8bba\u662f\u53e4\u5178\u94a2\u7434": 9, "\u7235\u58eb\u4e50\u8fd8\u662f\u73b0\u4ee3\u6d41\u884c\u66f2\u76ee": 9, "\u6bcf\u4e00\u79cd\u98ce\u683c\u90fd\u80fd\u5e26\u6765\u4e0d\u540c\u7684\u4eab\u53d7\u548c\u6311\u6218": 9, "\u5e0c\u671b\u60a8\u5728\u5f39\u7434\u7684\u8fc7\u7a0b\u4e2d\u80fd\u591f\u6301\u7eed\u53d1\u73b0\u4e50\u8da3": 9, "\u521b\u9020\u51fa\u66f4\u591a\u52a8\u4eba\u7684\u65cb\u5f8b": 9, "\u4f60\u53ef\u4ee5\u9009\u62e9\u8fdb\u884c\u542b\u6709\u6216\u4e0d\u542b\u6709\u591a\u8f6e\u5bf9\u8bdd\u4e0a\u4e0b\u6587\u7684\u804a\u5929": 9, "\u7136\u800c": 9, "\u7531\u4e8e\u5c1a\u672a\u8c03\u7528": 9, "\u529f\u80fd": 9, "\u7cfb\u7edf\u4e2d\u8fd8\u6ca1\u6709\u4efb\u4f55\u8bb0\u5fc6\u7247\u6bb5": 9, "\u4f60\u77e5\u9053\u6211\u6709\u4ec0\u4e48\u4e50\u5668\u7231\u597d\u5417": 9, "\u56de\u7b542": 9, "\u56de\u7b543": 9, "\u662f\u7684": 9, "\u60a8\u63d0\u5230\u8fc7\u60a8\u7684\u7231\u597d\u662f\u5f39\u7434": 9, "\u6240\u4ee5\u6211\u8ba4\u4e3a\u60a8\u5bf9\u952e\u76d8\u4e50\u5668": 9, "\u7279\u522b\u662f\u94a2\u7434\u6709\u4e00\u5b9a\u7684\u7231\u597d": 9, "\u4f5c\u4e3a\u57fa\u4e8e\u5f53\u524d\u5bf9\u8bdd\u7684memoryscope\u667a\u80fd\u52a9\u7406": 9, "\u6211\u6ca1\u6709\u4e4b\u524d\u5173\u4e8e\u60a8\u4e50\u5668\u7231\u597d\u7684\u4fe1\u606f": 9, "\u8bf7\u544a\u8bc9\u6211": 9, "\u60a8\u559c\u6b22\u54ea\u79cd\u4e50\u5668": 9, "\u8fd9\u6837\u6211\u5c31\u53ef\u4ee5\u8bb0\u4f4f\u5e76\u63d0\u4f9b\u76f8\u5173\u5e2e\u52a9\u4e86": 9, "\u73b0\u5728": 9, "\u6211\u4eec\u518d\u804a\u591a\u51e0\u53e5": 9, "\u7136\u540e\u5c1d\u8bd5": 9, "\u6211\u5728\u963f\u91cc\u5df4\u5df4\u5e72\u6d3b": 9, "\u56de\u7b544": 9, "\u4eca\u5929\u4e0b\u5348\u5403\u4ec0\u4e48\u6c34\u679c\u597d": 9, "\u56de\u7b545": 9, "\u6211\u559c\u6b22\u5403\u897f\u74dc": 9, "\u56de\u7b546": 9, "\u5e2e\u6211\u5199\u4e00\u53e5\u7ed9\u670b\u53cb\u7684\u751f\u65e5\u795d\u798f\u8bed": 9, "\u7b80\u77ed\u4e00\u70b9": 9, "\u56de\u7b547": 9, "\u4e86\u89e3": 9, "\u60a8\u5728\u963f\u91cc\u5df4\u5df4\u5de5\u4f5c": 9, "\u963f\u91cc\u5df4\u5df4\u96c6\u56e2\u662f\u4e00\u5bb6\u603b\u90e8\u4f4d\u4e8e\u4e2d\u56fd\u676d\u5dde\u7684\u5168\u7403\u9886\u5148\u7684\u7535\u5b50\u5546\u52a1\u548c\u79d1\u6280\u516c\u53f8": 9, "\u4ee5\u5176\u7535\u5b50\u5546\u52a1\u5e73\u53f0\u5982\u6dd8\u5b9d": 9, "\u5929\u732b\u95fb\u540d": 9, "\u540c\u65f6\u5728\u4e91\u8ba1\u7b97": 9, "\u6570\u5b57\u5a92\u4f53\u53ca\u5a31\u4e50": 9, "\u91d1\u878d\u79d1\u6280\u7b49\u9886\u57df\u4e5f\u6709\u5e7f\u6cdb\u5e03\u5c40": 9, "\u5982\u679c\u60a8\u6709\u5173\u4e8e\u5de5\u4f5c": 9, "\u6280\u672f\u6216\u516c\u53f8\u6587\u5316\u65b9\u9762\u7684\u95ee\u9898": 9, "\u6b22\u8fce\u968f\u65f6\u8be2\u95ee": 9, "\u9009\u62e9\u6c34\u679c\u53ef\u4ee5\u6839\u636e\u4e2a\u4eba\u53e3\u5473": 9, "\u8425\u517b\u9700\u6c42\u4ee5\u53ca\u5b63\u8282\u6765\u51b3\u5b9a": 9, "\u590f\u5929": 9, "\u4e00\u4e9b\u6e05\u723d\u89e3\u6691\u7684\u6c34\u679c\u4f1a\u662f\u4e0d\u9519\u7684\u9009\u62e9": 9, "\u6bd4\u5982\u897f\u74dc": 9, "\u54c8\u5bc6\u74dc": 9, "\u8461\u8404": 9, "\u6843\u5b50\u6216\u8005\u674e\u5b50": 9, "\u5b83\u4eec\u90fd\u542b\u6709\u4e30\u5bcc\u7684\u6c34\u5206\u548c\u7ef4\u751f\u7d20": 9, "\u6709\u52a9\u4e8e\u6d88\u6691\u964d\u6e29": 9, "\u5982\u679c\u60a8\u60f3\u8981\u8865\u5145\u7ea4\u7ef4\u7d20": 9, "\u706b\u9f99\u679c\u6216\u8005\u7315\u7334\u6843\u4e5f\u662f\u5f88\u597d\u7684\u9009\u62e9": 9, "\u6700\u7ec8": 9, "\u9009\u62e9\u54ea\u79cd\u6c34\u679c": 9, "\u8fd8\u662f\u8981\u770b\u60a8\u81ea\u5df1\u7684\u559c\u597d\u548c\u8eab\u4f53\u72b6\u51b5": 9, "\u897f\u74dc\u662f\u590f\u5b63\u7684\u7406\u60f3\u9009\u62e9": 9, "\u5b83\u4e0d\u4ec5\u6e05\u51c9\u89e3\u6e34": 9, "\u8fd8\u542b\u6709\u5927\u91cf\u7684\u6c34\u5206\u548c\u7535\u89e3\u8d28": 9, "\u53ef\u4ee5\u5e2e\u52a9\u8eab\u4f53\u8865\u5145\u6d41\u5931\u7684\u6c34\u5206": 9, "\u897f\u74dc\u8fd8\u5bcc\u542b\u7ef4\u751f\u7d20c": 9, "a\u548c\u6297\u6c27\u5316\u5242": 9, "\u5982\u756a\u8304\u7ea2\u7d20": 9, "\u5bf9\u76ae\u80a4\u5065\u5eb7\u548c\u5fc3\u8840\u7ba1\u7cfb\u7edf\u90fd\u6709\u76ca\u5904": 9, "\u4eab\u7528\u7f8e\u5473\u7684\u897f\u74dc\u65f6": 9, "\u8bb0\u5f97\u5207\u5757\u540e\u51b7\u85cf\u4e00\u4e0b": 9, "\u53e3\u611f\u4f1a\u66f4\u52a0\u6e05\u723d\u54e6": 9, "\u751f\u65e5\u5feb\u4e50": 9, "\u613f\u4f60\u7684\u6bcf\u4e00\u5929\u90fd\u5982\u86cb\u7cd5\u822c\u751c\u871c": 9, "\u7b11\u5bb9\u6bd4\u70db\u5149\u66f4\u707f\u70c2": 9, "\u7528\u6237\u7231\u597d\u5f39\u7434": 9, "\u7528\u6237\u5728\u963f\u91cc\u5df4\u5df4\u5de5\u4f5c": 9, "\u7528\u6237\u559c\u6b22\u5403\u897f\u74dc": 9, "\u4ece\u7528\u6237\u76847\u6761\u804a\u5929\u6d88\u606f\u4e2d\u63d0\u53d6\u4e863\u6761": 9, "\u5176\u4f59\u65e0\u6548\u7684\u4fe1\u606f\u88ab\u8fc7\u6ee4\u6389\u4e86": 9, "\u6211\u4eec\u5c1d\u8bd5\u66f4\u591a\u7684\u60c5\u51b5": 9, "\u4ee5\u6d4b\u8bd5\u5176\u65f6\u95f4\u611f\u77e5\u80fd\u529b\u548c\u8fc7\u6ee4\u7528\u6237\u865a\u6784\u7684\u5185\u5bb9\u7684\u80fd\u529b": 9, "\u5047\u5982\u6211\u53bb\u4eac\u4e1c\u5de5\u4f5c": 9, "\u524d\u666f\u600e\u4e48\u6837": 9, "\u56de\u7b548": 9, "\u8bb0\u4e00\u4e0b": 9, "\u4e0b\u5468\u6211\u51c6\u5907\u53bb\u5317\u4eac\u51fa\u5dee": 9, "\u56de\u7b549": 9, "\u6211\u540c\u5b66\u674e\u4e9a\u5e73\u73b0\u5728\u5728\u4e9a\u9a6c\u900a\u5de5\u4f5c": 9, "\u4ed6\u4e0b\u4e2a\u6708\u56de\u4e0a\u6d77": 9, "\u6211\u8981\u548c\u4ed6\u5403\u4e2a\u996d": 9, "\u56de\u7b5410": 9, "\u5c0f\u4eae\u662f\u6211\u6700\u597d\u7684\u670b\u53cb": 9, "\u4ed6\u51b3\u5b9a\u53bb\u5c71\u897f\u4e0a\u5927\u5b66": 9, "\u4ee5\u8fd9\u4e2a\u4e3a\u5f00\u5934\u5199\u4e00\u4e2a80\u5b57\u7684\u5fae\u5267\u672c": 9, "\u56de\u7b5411": 9, "smci\u662f\u4ec0\u4e48\u516c\u53f8": 9, "\u505a\u4ec0\u4e48\u7684": 9, "\u56de\u7b5412": 9, "\u4eac\u4e1c\u4f5c\u4e3a\u4e2d\u56fd\u9886\u5148\u7684\u7535\u5546\u5e73\u53f0\u4e4b\u4e00": 9, "\u62e5\u6709\u5e7f\u6cdb\u7684\u4e1a\u52a1\u8303\u56f4\u548c\u826f\u597d\u7684\u884c\u4e1a\u58f0\u8a89": 9, "\u52a0\u5165\u4eac\u4e1c\u5de5\u4f5c": 9, "\u60a8\u53ef\u80fd\u4f1a\u4eab\u53d7\u5230\u4ee5\u4e0b\u51e0\u65b9\u9762\u7684\u524d\u666f\u4f18\u52bf": 9, "\u804c\u4e1a\u53d1\u5c55": 9, "\u4eac\u4e1c\u63d0\u4f9b\u591a\u5143\u5316\u7684\u804c\u4e1a\u8def\u5f84\u548c\u664b\u5347\u673a\u4f1a": 9, "\u60a8\u53ef\u4ee5\u5728\u7535\u5546": 9, "\u7269\u6d41": 9, "\u79d1\u6280": 9, "\u91d1\u878d\u7b49\u591a\u4e2a\u9886\u57df\u627e\u5230\u9002\u5408\u81ea\u5df1\u7684\u4f4d\u7f6e\u548c\u53d1\u5c55\u7a7a\u95f4": 9, "\u6280\u672f\u4e0e\u521b\u65b0": 9, "\u4eac\u4e1c\u6301\u7eed\u6295\u5165\u4e8e\u6280\u672f\u521b\u65b0": 9, "\u5c24\u5176\u662f\u5728\u4eba\u5de5\u667a\u80fd": 9, "\u5927\u6570\u636e": 9, "\u4e91\u8ba1\u7b97\u7b49\u65b9\u9762": 9, "\u4e3a\u5458\u5de5\u63d0\u4f9b\u4e86\u63a5\u89e6\u548c\u5b66\u4e60\u524d\u6cbf\u6280\u672f\u7684\u673a\u4f1a": 9, "\u4f01\u4e1a\u6587\u5316": 9, "\u4eac\u4e1c\u5f3a\u8c03": 9, "\u6b63\u9053\u6210\u529f": 9, "\u7684\u4f01\u4e1a\u6587\u5316": 9, "\u6ce8\u91cd\u8bda\u4fe1": 9, "\u56e2\u961f\u5408\u4f5c\u4e0e\u793e\u4f1a\u8d23\u4efb": 9, "\u6709\u5229\u4e8e\u5851\u9020\u79ef\u6781\u5411\u4e0a\u7684\u5de5\u4f5c\u6c1b\u56f4": 9, "\u798f\u5229\u5f85\u9047": 9, "\u4eac\u4e1c\u901a\u5e38\u4e3a\u5458\u5de5\u63d0\u4f9b\u6709\u7ade\u4e89\u529b\u7684\u85aa\u916c\u798f\u5229\u4f53\u7cfb": 9, "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e\u5065\u5eb7\u4fdd\u9669": 9, "\u5458\u5de5\u57f9\u8bad": 9, "\u80a1\u6743\u6fc0\u52b1\u7b49": 9, "\u884c\u4e1a\u5f71\u54cd\u529b": 9, "\u4f5c\u4e3a\u884c\u4e1a\u5de8\u5934": 9, "\u4eac\u4e1c\u7684\u4ece\u4e1a\u7ecf\u5386\u5bf9\u60a8\u7684\u804c\u4e1a\u751f\u6daf\u5c06\u662f\u4e00\u5927\u4eae\u70b9": 9, "\u6709\u52a9\u4e8e\u63d0\u5347\u4e2a\u4eba\u54c1\u724c\u548c\u672a\u6765\u7684\u804c\u4e1a\u9009\u62e9\u7075\u6d3b\u6027": 9, "\u5f53\u7136": 9, "\u5177\u4f53\u524d\u666f\u8fd8\u53d6\u51b3\u4e8e\u60a8\u7684\u804c\u4f4d": 9, "\u4e2a\u4eba\u80fd\u529b": 9, "\u884c\u4e1a\u8d8b\u52bf\u53ca\u4e2a\u4eba\u804c\u4e1a\u89c4\u5212\u7b49\u56e0\u7d20": 9, "\u5efa\u8bae\u60a8\u6df1\u5165\u4e86\u89e3\u76ee\u6807\u5c97\u4f4d\u7684\u5177\u4f53\u8981\u6c42": 9, "\u8bc4\u4f30\u4e2a\u4eba\u4e0e\u5c97\u4f4d\u7684\u5339\u914d\u5ea6": 9, "\u5e76\u5173\u6ce8\u884c\u4e1a\u52a8\u6001": 9, "\u4e3a\u81ea\u5df1\u7684\u804c\u4e1a\u53d1\u5c55\u505a\u51fa\u5408\u7406\u89c4\u5212": 9, "\u597d\u7684": 9, "\u5df2\u8bb0\u5f55\u60a8\u8ba1\u5212\u4e0b\u5468\u53bb\u5317\u4eac\u51fa\u5dee": 9, "\u8bf7\u968f\u65f6\u544a\u8bc9\u6211\u5982\u679c\u60a8\u9700\u8981\u5173\u4e8e\u5317\u4eac\u7684\u51fa\u884c\u5efa\u8bae": 9, "\u5929\u6c14\u9884\u62a5\u6216\u662f\u5176\u4ed6\u76f8\u5173\u4fe1\u606f": 9, "\u795d\u60a8\u51fa\u5dee\u987a\u5229": 9, "\u5df2\u8bb0\u5f55\u60a8\u7684\u5b89\u6392": 9, "\u60a8\u5c06\u4e8e\u4e0b\u4e2a\u6708\u4e0e\u5728\u4e9a\u9a6c\u900a\u5de5\u4f5c\u7684\u540c\u5b66\u674e\u4e9a\u5e73\u5728\u4e0a\u6d77\u5171\u8fdb\u665a\u9910": 9, "\u4e34\u8fd1\u65e5\u671f\u65f6": 9, "\u4e0d\u59a8\u63d0\u524d\u8054\u7cfb\u674e\u4e9a\u5e73\u786e\u8ba4\u5177\u4f53\u65f6\u95f4\u548c\u5730\u70b9": 9, "\u4ee5\u4fbf\u6109\u5feb\u5730\u8fdb\u884c\u805a\u4f1a": 9, "\u5e0c\u671b\u4f60\u4eec\u6709\u4e2a\u7f8e\u597d\u7684\u91cd\u805a": 9, "\u573a\u666f": 9, "\u508d\u665a": 9, "\u516c\u56ed\u957f\u6905": 9, "\u5915\u9633\u4e0b": 9, "\u6211\u4eec\u80a9\u5e76\u80a9\u5750\u7740": 9, "\u6211": 9, "\u5c71\u897f\u7684\u9762\u98df\u53ef\u51fa\u540d\u4e86": 9, "\u4f60\u8fd9\u5c0f\u5403\u8d27\u6709\u798f\u4e86": 9, "\u5c0f\u4eae\u7b11": 9, "\u90a3\u5fc5\u987b\u7684": 9, "\u8bf4\u597d\u4f60\u653e\u5047\u5c31\u6765\u627e\u6211": 9, "\u54b1\u4eec\u4e00\u8d77\u5403\u904d\u5c71\u897f": 9, "\u6211\u70b9\u5934": 9, "\u5fc3\u4e2d\u6cdb\u8d77\u4e0d\u820d": 9, "\u4e00\u8a00\u4e3a\u5b9a": 9, "\u522b\u5fd8\u4e86": 9, "\u90a3\u91cc\u8fd8\u6709\u5343\u5e74\u53e4\u57ce\u7b49\u4f60\u63a2\u7d22": 9, "\u5c0f\u4eae\u770b\u5411\u8fdc\u65b9": 9, "\u773c\u91cc\u95ea\u70c1\u7740\u68a6\u60f3\u7684\u5149": 9, "\u65b0\u65c5\u7a0b": 9, "\u6211\u4eec\u4e00\u8d77\u52a0\u6cb9": 9, "\u753b\u9762\u6e10\u6697": 9, "\u53cb\u60c5\u7684\u529b\u91cf\u6e29\u6696\u800c\u575a\u5b9a": 9, "smci\u53ef\u80fd\u6307\u4ee3\u7684\u662fsup": 9, "comput": 9, "inc": 9, "\u8d85\u5fae\u7535\u8111\u80a1\u4efd\u6709\u9650\u516c\u53f8": 9, "\u7b80\u79f0supermicro": 9, "\u8fd9\u662f\u4e00\u5bb6\u603b\u90e8\u4f4d\u4e8e\u7f8e\u56fd\u52a0\u5229\u798f\u5c3c\u4e9a\u5dde\u5723\u4f55\u585e\u7684\u516c\u53f8": 9, "\u6210\u7acb\u4e8e1993\u5e74": 9, "supermicro\u4e3b\u8981\u8bbe\u8ba1": 9, "\u5236\u9020\u548c\u9500\u552e\u9ad8\u6027\u80fd\u670d\u52a1\u5668\u548c\u6280\u672f\u89e3\u51b3\u65b9\u6848": 9, "\u5305\u62ec\u670d\u52a1\u5668": 9, "\u5b58\u50a8\u7cfb\u7edf": 9, "\u4e3b\u677f\u4ee5\u53ca\u652f\u6301\u4e91\u8ba1\u7b97": 9, "\u6570\u636e\u4e2d\u5fc3": 9, "\u4f01\u4e1ait": 9, "\u9ad8\u6027\u80fd\u8ba1\u7b97": 9, "hpc": 9, "\u548c\u5d4c\u5165\u5f0f\u7cfb\u7edf\u7684\u5176\u4ed6\u786c\u4ef6\u7ec4\u4ef6": 9, "\u5b83\u4eec\u7684\u4ea7\u54c1\u4ee5\u9ad8\u6548\u7387": 9, "\u7075\u6d3b\u6027\u548c\u5b9a\u5236\u5316\u9009\u9879\u8457\u79f0": 9, "\u5728\u5168\u7403\u8303\u56f4\u5185\u670d\u52a1\u4e8e\u5404\u79cd\u89c4\u6a21\u7684\u4f01\u4e1a\u548c\u7ec4\u7ec7": 9, "\u7528\u6237\u8ba1\u52122024\u5e748\u67089\u65e5\u53bb\u5317\u4eac\u51fa\u5dee": 9, "\u63a8\u65ad\u65f6\u95f4": 9, "2024\u5e748\u67089\u65e5": 9, "\u7528\u6237\u7684\u540c\u5b66\u674e\u4e9a\u5e73\u4e0b\u4e2a\u6708\u56de\u4e0a\u6d77": 9, "\u7528\u6237\u5c06\u4e0e\u5176\u89c1\u9762\u5403\u996d": 9, "2024\u5e749\u6708": 9, "\u6211\u4eec\u53ef\u4ee5\u770b\u5230": 9, "\u6210\u529f\u8fc7\u6ee4\u6389\u4e86\u865a\u5047\u5185\u5bb9": 9, "\u5e76\u5c55\u793a\u4e86\u826f\u597d\u7684\u65f6\u95f4\u654f\u611f\u6027": 9, "\u4ee5\u6d4b\u8bd5\u5176\u89e3\u51b3\u51b2\u7a81\u5185\u5bb9\u7684\u80fd\u529b": 9, "\u56de\u7b5413": 9, "\u897f\u74dc\u786e\u5b9e\u4e0d\u9519": 9, "\u4f46\u662f\u6211\u4e5f\u559c\u6b22\u5403\u8292\u679c": 9, "\u6211\u4eca\u5929\u60f3\u5403\u8292\u679c": 9, "\u56de\u7b5414": 9, "\u6211\u6700\u8fd1\u8df3\u69fd\u53bb\u4e86\u7f8e\u56e2": 9, "\u56de\u7b5415": 9, "\u6211\u8fd8\u559c\u6b22\u5403\u6843\u5b50\u548c\u82f9\u679c": 9, "\u56de\u7b5416": 9, "\u6211\u4e0d\u559c\u6b22\u5403\u6930\u5b50": 9, "\u56de\u7b5417": 9, "\u6211\u51c6\u5907\u4e0b\u4e2a\u6708\u53bb\u6d77\u5357\u51b2\u6d6a": 9, "\u56de\u7b5418": 9, "\u660e\u5929\u662f\u6211\u751f\u65e5": 9, "\u56de\u7b5419": 9, "\u65e2\u7136\u60a8\u559c\u6b22\u5403\u897f\u74dc": 9, "\u4eca\u5929\u4e0b\u5348\u5403\u897f\u74dc\u662f\u4e2a\u4e0d\u9519\u7684\u9009\u62e9": 9, "\u90a3\u592a\u597d\u4e86": 9, "\u5982\u679c\u60a8\u4eca\u5929\u60f3\u6362\u6362\u53e3\u5473": 9, "\u5403\u8292\u679c\u4e5f\u662f\u5f88\u597d\u7684\u9009\u62e9": 9, "\u4eab\u53d7\u5b83\u7684\u9999\u751c\u5427": 9, "\u606d\u559c\u60a8\u52a0\u5165\u7f8e\u56e2": 9, "\u5e0c\u671b\u60a8\u7684\u65b0\u5de5\u4f5c\u4e00\u5207\u987a\u5229": 9, "\u6709\u65b0\u7684\u6311\u6218\u548c\u673a\u9047": 9, "\u4e86\u89e3\u4e86": 9, "\u6843\u5b50\u548c\u82f9\u679c\u90fd\u662f\u65e2\u8425\u517b\u53c8\u7f8e\u5473\u7684\u9009\u62e9": 9, "\u591a\u5403\u6c34\u679c\u5bf9\u8eab\u4f53\u6709\u76ca": 9, "\u60a8\u53ef\u4ee5\u6839\u636e\u5b63\u8282\u548c\u4e2a\u4eba\u559c\u597d\u6765\u6311\u9009": 9, "\u77e5\u9053\u60a8\u4e0d\u559c\u6b22\u6930\u5b50": 9, "\u4ee5\u540e\u5728\u63a8\u8350\u6c34\u679c\u65f6\u4f1a\u7559\u610f\u8fd9\u4e00\u70b9": 9, "\u542c\u8d77\u6765\u5f88\u6709\u8da3": 9, "\u53bb\u6d77\u5357\u51b2\u6d6a\u662f\u4e2a\u5f88\u68d2\u7684\u8ba1\u5212": 9, "\u4e0b\u4e2a\u6708\u90a3\u8fb9\u7684\u5929\u6c14\u5e94\u8be5\u5f88\u9002\u5408\u6c34\u4e0a\u6d3b\u52a8": 9, "\u795d\u60a8\u73a9\u5f97\u5f00\u5fc3": 9, "\u522b\u5fd8\u4e86\u505a\u597d\u9632\u6652\u54e6": 9, "\u5e0c\u671b\u60a8\u660e\u5929\u80fd\u5ea6\u8fc7\u4e00\u4e2a\u7279\u522b\u4e14\u96be\u5fd8\u7684\u4e00\u5929": 9, "\u6ee1\u6ee1\u7684\u795d\u798f\u7ed9\u60a8": 9, "\u6709\u4efb\u4f55\u5e86\u795d\u8ba1\u5212\u5417": 9, "\u7528\u6237\u559c\u6b22\u5403\u6843\u5b50\u548c\u82f9\u679c": 9, "\u7528\u6237\u4e0d\u559c\u6b22\u5403\u6930\u5b50": 9, "\u7528\u6237\u559c\u6b22\u5403\u8292\u679c": 9, "\u7528\u6237\u8ba1\u52122024\u5e749\u6708\u53bb\u6d77\u5357\u51b2\u6d6a": 9, "\u7528\u6237\u7684\u751f\u65e5\u662f\u6bcf\u5e748\u67083\u65e5": 9, "\u6bcf\u5e748\u67083\u65e5": 9, "expir": 9, "\u7528\u6237\u6700\u8fd1\u8df3\u69fd\u81f3\u7f8e\u56e2": 9, "\u6211\u4eec\u5728\u7cfb\u7edf\u4e2d\u5df2\u7ecf\u79ef\u7d2f\u4e86\u8db3\u591f\u591a\u7684\u65b0\u7684": 9, "\u56e0\u6b64\u6211\u4eec\u53ef\u4ee5\u8c03\u7528": 9, "\u8ba9\u6211\u4eec\u770b\u770b\u4f1a\u5f97\u5230\u4ec0\u4e48": 9, "\u7528\u6237\u7684\u51fa\u5dee\u8ba1\u5212": 9, "2024\u5e748\u67089\u65e5\u53bb\u5317\u4eac\u51fa\u5dee": 9, "\u7528\u6237\u7684\u751f\u65e5": 9, "\u7528\u6237\u7684\u6c34\u679c\u504f\u597d": 9, "\u559c\u6b22\u6843\u5b50": 9, "\u82f9\u679c": 9, "\u897f\u74dc": 9, "\u8292\u679c": 9, "\u4e0d\u559c\u6b22\u5403\u6930\u5b50": 9, "\u6700\u540e": 9, "\u6211\u4eec\u6d4b\u8bd5": 9, "\u7cfb\u7edf\u5bf9\u7528\u6237\u7684\u54cd\u5e94\u65f6\u95f4": 9, "\u5177\u4f53\u6765\u8bf4": 9, "\u6211\u4eec\u6d4b\u8bd5\u5728\u6709\u548c\u6ca1\u6709\u4ece\u7cfb\u7edf\u4e2d\u68c0\u7d22\u8bb0\u5fc6\u7247\u6bb5\u65f6\u804a\u5929\u7684\u54cd\u5e94\u65f6\u95f4\u7684\u5dee\u5f02": 9, "\u4f60\u77e5\u9053\u6211\u7684\u4e50\u5668\u7231\u597d\u662f\u4ec0\u4e48\u5417": 9, "\u4f7f\u7528\u8bb0\u5fc6\u68c0\u7d22": 9, "n\u56de\u7b5420": 9, "\u8017\u65f6": 9, "\u79d2": 9, "\u4f60\u77e5\u9053\u6211\u63a5\u4e0b\u53bb\u7684\u4e00\u4e2a\u6708\u5185\u6709\u4ec0\u4e48\u8ba1\u5212\u5417": 9, "n\u56de\u7b5421": 9, "\u4e0d\u4f7f\u7528\u8bb0\u5fc6\u68c0\u7d22": 9, "\u56de\u7b5420": 9, "\u60a8\u559c\u6b22\u5f39\u7434": 9, "3783161640167236\u79d2": 9, "\u56de\u7b5421": 9, "\u60a8\u63a5\u4e0b\u6765\u4e00\u4e2a\u6708\u5185\u7684\u8ba1\u5212\u5305\u62ec": 9, "\u8ba1\u5212\u57282024\u5e749\u6708\u53bb\u6d77\u5357\u51b2\u6d6a": 9, "\u60a8\u7684\u540c\u5b66\u674e\u4e9a\u5e73\u56de\u4e0a\u6d77": 9, "\u60a8\u5c06\u4e0e\u4ed6\u89c1\u9762\u5403\u996d": 9, "538439035415649\u79d2": 9, "\u5bf9\u4e0d\u8d77": 9, "\u6211\u6ca1\u6709\u8bb0\u5f55\u60a8\u7684\u4e2a\u4eba\u4fe1\u606f": 9, "\u5305\u62ec\u60a8\u7684\u4e50\u5668\u7231\u597d": 9, "\u5982\u679c\u60a8\u544a\u8bc9\u6211": 9, "\u6211\u53ef\u4ee5\u5e2e\u60a8\u8bb0\u4f4f": 9, "597784996032715\u79d2": 9, "\u4f5c\u4e3a\u57fa\u4e8e\u5f53\u524d\u4f1a\u8bdd\u7684memoryscope\u667a\u80fd\u52a9\u7406": 9, "\u6211\u65e0\u6cd5\u83b7\u53d6\u6216\u5b58\u50a8\u60a8\u7684\u4e2a\u4eba\u65e5\u7a0b\u4fe1\u606f": 9, "\u5982\u679c\u60a8\u9700\u8981\u67e5\u8be2\u81ea\u5df1\u7684\u8ba1\u5212": 9, "\u5efa\u8bae\u60a8\u67e5\u770b\u81ea\u5df1\u7684\u65e5\u5386\u6216\u8005\u5907\u5fd8\u5f55": 9, "246160984039307\u79d2": 9, "\u4ece": 9, "\u68c0\u7d22\u8bb0\u5fc6\u7247\u6bb5\u4e0d\u4f1a\u589e\u52a0\u804a\u5929\u7684\u54cd\u5e94\u65f6\u95f4": 9, "\u6211\u4eec\u5efa\u8bae\u8bfb\u8005\u53c2\u8003": 9, "\u8fdb\u9636\u81ea\u5b9a\u4e49\u7528\u6cd5": 9, "\u6765\u5bf9memoryscope\u7cfb\u7edf\u8fdb\u884c\u5404\u79cd\u81ea\u5b9a\u4e49\u8bbe\u7f6e": 9, "\u60a8\u8fd8\u53ef\u4ee5\u901a\u8fc7\u81ea\u5b9a\u4e49": 9, "\u548c\u5bf9\u5e94\u7684": 9, "\u6765\u521b\u5efa\u6216\u5b9a\u5236\u6ee1\u8db3\u60a8\u7279\u5b9a\u9700\u6c42\u7684": 9, "\u6b64\u5916": 9, "\u60a8\u8fd8\u53ef\u4ee5\u5c1d\u8bd5\u4f7f\u7528": 9, "\u5728\u547d\u4ee4\u884c\u4e0ememoryscope\u804a\u5929\u673a\u5668\u4eba\u4ea4\u4e92": 9, "\u6211\u4eec\u5728\u8fd9\u91cc\u5b9e\u73b0\u4e86\u59cb\u7ec8\u5728\u540e\u53f0\u5f02\u6b65\u8fd0\u884c": 9, "\u8fd9\u4e24\u4e2a\u64cd\u4f5c": 9, "\u4ece\u800c\u4f7f\u5f97\u5b83\u4eec\u4e0d\u4f1a\u589e\u52a0\u804a\u5929\u7684\u54cd\u5e94\u65f6\u95f4": 9, "two": 10, "via": 10, "path": 10, "altern": 10, "paramet": 10, "directli": 10, "either": 10, "manag": 10, "chat": [10, 12], "histori": 10, "human": 10, "model": [10, 12], "boolean": 10, "indic": 10, "dummi": 10, "ranker": 10, "rank": 10, "\u5728\u8fd0\u884c\u4e4b\u524d": 11, "\u53ef\u4ee5\u901a\u8fc7\u4e24\u79cd\u4e0d\u540c\u7684\u65b9\u5f0f\u542f\u52a8": 11, "\u5982\u679c\u60a8\u66f4\u559c\u6b22\u901a\u8fc7": 11, "\u6587\u4ef6\u914d\u7f6e\u8bbe\u7f6e": 11, "\u53ef\u4ee5\u901a\u8fc7\u63d0\u4f9b\u914d\u7f6e\u6587\u4ef6\u7684\u8def\u5f84\u6765\u5b9e\u73b0": 11, "\u6216\u8005": 11, "\u60a8\u53ef\u4ee5\u76f4\u63a5\u5728\u547d\u4ee4\u884c\u4e0a\u6307\u5b9a\u6240\u6709\u53c2\u6570": 11, "\u82f1\u6587": 11, "\u4ee5\u4e0b\u662f\u53ef\u4ee5\u901a\u8fc7\u4efb\u4e00\u65b9\u6cd5\u8bbe\u7f6e\u7684\u53ef\u7528\u9009\u9879": 11, "\u5bf9\u8bdd\u4e2d\u4f7f\u7528\u7684\u8bed\u8a00": 11, "\u7ba1\u7406\u804a\u5929\u8bb0\u5f55\u7684\u7c7b\u540d": 11, "\u4eba\u7c7b\u7528\u6237\u7684\u540d\u5b57": 11, "\u52a9\u624b\u7684\u540d\u5b57": 11, "\u7528\u4e8e\u751f\u6210\u56de\u590d\u7684\u540e\u7aef": 11, "\u7528\u4e8e\u751f\u6210\u56de\u590d\u7684\u6a21\u578b": 11, "\u7528\u4e8e\u6587\u672c\u5d4c\u5165\u7684\u540e\u7aef": 11, "\u7528\u4e8e\u521b\u5efa\u6587\u672c\u5d4c\u5165\u7684\u6a21\u578b": 11, "\u4e00\u4e2a\u5e03\u5c14\u503c": 11, "\u6307\u793a\u662f\u5426\u4f7f\u7528\u6392\u540d\u5668": 11, "\u9ed8\u8ba4\u4e3a": 11, "\u7528\u4e8e\u6392\u540d\u56de\u590d\u7684\u540e\u7aef": 11, "\u7528\u4e8e\u6392\u540d\u56de\u590d\u7684\u6a21\u578b": 11, "support": 12, "contribut": 12, "citat": 12, "ii": 12, "compos": 12, "iii": 12, "iv": 12, "initi": 12, "instanc": 12, "without": 12, "report": 12, "bug": 12, "ask": 12, "codebas": 12}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"memoryscop": [0, 2, 3, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92], "new": [0, 2], "what": 0, "i": [0, 3], "demo": 0, "framework": [0, 12], "main": 0, "featur": [0, 2], "support": 0, "model": [0, 1, 27, 28, 29, 30, 31, 32], "api": [0, 12], "instal": [0, 3], "quick": 0, "start": 0, "contribut": [0, 2], "citat": 0, "enumer": [1, 81, 82, 83, 84, 85, 86, 87], "scheme": [1, 88, 89, 90, 91], "config": [1, 22, 23, 24], "storag": [1, 42, 43, 44, 45, 46, 47, 48], "worker": [1, 4, 5, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80], "base": 1, "frontend": [1, 71, 72, 73, 74, 75, 76, 77, 78], "backend": [1, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68], "oper": [1, 4, 5, 33, 34, 35, 36, 37, 38], "servic": [1, 8, 9, 39, 40, 41], "chat": [1, 8, 9, 18, 19, 20, 21], "report": 2, "bug": 2, "ask": 2, "For": 2, "codebas": 2, "fork": 2, "clone": 2, "repositori": 2, "creat": 2, "branch": 2, "make": 2, "chang": 2, "commit": 2, "your": 2, "submit": 2, "pull": 2, "request": 2, "code": 2, "review": 2, "docker": 3, "recommend": 3, "ii": 3, "compos": 3, "iii": 3, "from": 3, "pypi": 3, "iv": 3, "sourc": 3, "custom": 4, "\u81ea\u5b9a\u4e49": 5, "\u548c": [5, 9], "work": [6, 7], "agentscop": 6, "autogen": 7, "exampl": 8, "usag": [8, 10], "interfac": [8, 10], "initi": 8, "instanc": 8, "without": 8, "memori": 8, "consolid": 8, "reflect": 8, "re": 8, "low": 8, "respons": 8, "time": 8, "rt": [8, 9], "user": 8, "more": 8, "\u63a5\u53e3\u7684\u793a\u4f8b\u7528\u6cd5": 9, "\u521d\u59cb\u5316\u4e00\u4e2a": 9, "\u5b9e\u4f8b": 9, "\u804a\u5929": 9, "\u4e0d\u542b\u8bb0\u5fc6": 9, "\u8bb0\u5fc6\u5de9\u56fa": 9, "\u53cd\u601d\u4e0e\u518d\u5de9\u56fa": 9, "\u4f4e\u7528\u6237\u65f6\u5ef6": 9, "\u66f4\u591a\u7528\u6cd5": 9, "The": 10, "cli": 10, "1": [10, 11], "us": 10, "yaml": [10, 11], "configur": 10, "file": 10, "2": [10, 11], "command": 10, "line": 10, "argument": [10, 23], "\u7684\u547d\u4ee4\u884c\u63a5\u53e3": 11, "\u4f7f\u7528\u65b9\u6cd5": 11, "\u4f7f\u7528": 11, "\u914d\u7f6e\u6587\u4ef6": 11, "\u4f7f\u7528\u547d\u4ee4\u884c\u53c2\u6570": 11, "document": 12, "welcom": 12, "tutori": 12, "refer": 12, "constant": [14, 15, 16], "common_const": 15, "language_const": 16, "core": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80], "api_memory_chat": 19, "base_memory_chat": 20, "cli_memory_chat": 21, "config_manag": 24, "memoryscope_context": 26, "base_model": 28, "dummy_generation_model": 29, "llama_index_embedding_model": 30, "llama_index_generation_model": 31, "llama_index_rank_model": 32, "backend_oper": 34, "base_oper": 35, "base_workflow": 36, "consolidate_memory_op": 37, "frontend_oper": 38, "base_memory_servic": 40, "memory_scope_servic": 41, "base_memory_stor": 43, "base_monitor": 44, "dummy_memory_stor": 45, "dummy_monitor": 46, "llama_index_es_memory_stor": 47, "llama_index_sync_elasticsearch": 48, "util": [49, 50, 51, 52, 53, 54, 55, 56, 57], "datetime_handl": 50, "logger": 51, "prompt_handl": 52, "registri": 53, "response_text_pars": 54, "singleton": 55, "timer": 56, "tool_funct": 57, "contra_repeat_work": 60, "get_observation_with_time_work": 61, "get_observation_work": 62, "get_reflection_subject_work": 63, "info_filter_work": 64, "load_memory_work": 65, "long_contra_repeat_work": 66, "update_insight_work": 67, "update_memory_work": 68, "base_work": 69, "dummy_work": 70, "extract_time_work": 72, "fuse_rerank_work": 73, "print_memory_work": 74, "read_message_work": 75, "retrieve_memory_work": 76, "semantic_rank_work": 77, "set_query_work": 78, "memory_base_work": 79, "memory_manag": 80, "action_status_enum": 82, "language_enum": 83, "memory_type_enum": 84, "message_role_enum": 85, "model_enum": 86, "store_status_enum": 87, "memory_nod": 89, "messag": 90, "model_respons": 91}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "nbsphinx": 4, "sphinx": 58}, "alltitles": {"MemoryScope": [[0, "memoryscope"]], "\ud83d\udcf0 News": [[0, "news"]], "\ud83c\udf1f What is MemoryScope\uff1f": [[0, "what-is-memoryscope"]], "Demo": [[0, "demo"]], "Framework": [[0, "framework"], [12, "framework"]], "Main Features": [[0, "main-features"]], "\ud83d\udcbc Supported Model API": [[0, "supported-model-api"]], "\ud83d\ude80 Installation": [[0, "installation"]], "\ud83c\udf55 Quick Start": [[0, "quick-start"]], "\ud83d\udca1 Contribute": [[0, "contribute"]], "\ud83d\udcd6 Citation": [[0, "citation"]], "Enumeration": [[1, "enumeration"]], "Scheme": [[1, "scheme"]], "Config": [[1, "config"]], "Models": [[1, "models"]], "Storage": [[1, "storage"]], "Worker": [[1, "worker"]], "Base": [[1, "base"]], "Frontend": [[1, "frontend"]], "Backend": [[1, "backend"]], "Operation": [[1, "operation"]], "Service": [[1, "service"]], "Chat": [[1, "chat"]], "Contribute to MemoryScope": [[2, "contribute-to-memoryscope"]], "Report Bugs and Ask For New Features?": [[2, "report-bugs-and-ask-for-new-features"]], "Contribute to Codebase": [[2, "contribute-to-codebase"]], "Fork and Clone the Repository": [[2, "fork-and-clone-the-repository"]], "Create a New Branch": [[2, "create-a-new-branch"]], "Making Changes": [[2, "making-changes"]], "Commit Your Changes": [[2, "commit-your-changes"]], "Submit a Pull Request": [[2, "submit-a-pull-request"]], "Code Review": [[2, "code-review"]], "Installing MemoryScope": [[3, "installing-memoryscope"]], "I. Install with docker [Recommended]": [[3, "i-install-with-docker-recommended"]], "II. Install with docker compose [Recommended]": [[3, "ii-install-with-docker-compose-recommended"]], "III. Install from PyPI": [[3, "iii-install-from-pypi"]], "IV. Install from source": [[3, "iv-install-from-source"]], "Custom Operator and Worker": [[4, "custom-operator-and-worker"]], "\u81ea\u5b9a\u4e49 Operator \u548c Worker": [[5, "operator-worker"]], "Working with AgentScope": [[6, "working-with-agentscope"]], "Working with AutoGen": [[7, "working-with-autogen"]], "Example usages of chat and service interfaces": [[8, "Example-usages-of-chat-and-service-interfaces"]], "Initiate a MemoryScope instance": [[8, "Initiate-a-MemoryScope-instance"]], "Chat without memory": [[8, "Chat-without-memory"]], "Memory Consolidation": [[8, "Memory-Consolidation"]], "Reflection and Re-Consolidation": [[8, "Reflection-and-Re-Consolidation"]], "Low response-time (RT) for the user": [[8, "Low-response-time-(RT)-for-the-user"]], "More Examples": [[8, "More-Examples"]], "chat \u548c service \u63a5\u53e3\u7684\u793a\u4f8b\u7528\u6cd5": [[9, "chat-\u548c-service-\u63a5\u53e3\u7684\u793a\u4f8b\u7528\u6cd5"]], "\u521d\u59cb\u5316\u4e00\u4e2a MemoryScope \u5b9e\u4f8b": [[9, "\u521d\u59cb\u5316\u4e00\u4e2a-MemoryScope-\u5b9e\u4f8b"]], "\u804a\u5929\uff08\u4e0d\u542b\u8bb0\u5fc6\uff09": [[9, "\u804a\u5929\uff08\u4e0d\u542b\u8bb0\u5fc6\uff09"]], "\u8bb0\u5fc6\u5de9\u56fa": [[9, "\u8bb0\u5fc6\u5de9\u56fa"]], "\u53cd\u601d\u4e0e\u518d\u5de9\u56fa": [[9, "\u53cd\u601d\u4e0e\u518d\u5de9\u56fa"]], "\u4f4e\u7528\u6237\u65f6\u5ef6\uff08RT\uff09": [[9, "\u4f4e\u7528\u6237\u65f6\u5ef6\uff08RT\uff09"]], "\u66f4\u591a\u7528\u6cd5": [[9, "\u66f4\u591a\u7528\u6cd5"]], "The Cli Interface of MemoryScope": [[10, "the-cli-interface-of-memoryscope"]], "Usage": [[10, "usage"]], "1. Using YAML Configuration File": [[10, "using-yaml-configuration-file"]], "2. Using Command Line Arguments": [[10, "using-command-line-arguments"]], "MemoryScope \u7684\u547d\u4ee4\u884c\u63a5\u53e3": [[11, "memoryscope"]], "\u4f7f\u7528\u65b9\u6cd5": [[11, "id1"]], "1. \u4f7f\u7528 YAML \u914d\u7f6e\u6587\u4ef6": [[11, "yaml"]], "2. \u4f7f\u7528\u547d\u4ee4\u884c\u53c2\u6570": [[11, "id2"]], "MemoryScope Documentation": [[12, "memoryscope-documentation"]], "Welcome to MemoryScope Tutorial": [[12, "welcome-to-memoryscope-tutorial"]], "MemoryScope Tutorial": [[12, null]], "MemoryScope API Reference": [[12, null]], "memoryscope": [[13, "memoryscope"], [92, "memoryscope"]], "memoryscope.constants": [[14, "memoryscope-constants"]], "memoryscope.constants.common_constants": [[15, "memoryscope-constants-common-constants"]], "memoryscope.constants.language_constants": [[16, "memoryscope-constants-language-constants"]], "memoryscope.core": [[17, "memoryscope-core"]], "memoryscope.core.chat": [[18, "memoryscope-core-chat"]], "memoryscope.core.chat.api_memory_chat": [[19, "memoryscope-core-chat-api-memory-chat"]], "memoryscope.core.chat.base_memory_chat": [[20, "memoryscope-core-chat-base-memory-chat"]], "memoryscope.core.chat.cli_memory_chat": [[21, "memoryscope-core-chat-cli-memory-chat"]], "memoryscope.core.config": [[22, "memoryscope-core-config"]], "memoryscope.core.config.arguments": [[23, "memoryscope-core-config-arguments"]], "memoryscope.core.config.config_manager": [[24, "memoryscope-core-config-config-manager"]], "memoryscope.core.memoryscope": [[25, "memoryscope-core-memoryscope"]], "memoryscope.core.memoryscope_context": [[26, "memoryscope-core-memoryscope-context"]], "memoryscope.core.models": [[27, "memoryscope-core-models"]], "memoryscope.core.models.base_model": [[28, "memoryscope-core-models-base-model"]], "memoryscope.core.models.dummy_generation_model": [[29, "memoryscope-core-models-dummy-generation-model"]], "memoryscope.core.models.llama_index_embedding_model": [[30, "memoryscope-core-models-llama-index-embedding-model"]], "memoryscope.core.models.llama_index_generation_model": [[31, "memoryscope-core-models-llama-index-generation-model"]], "memoryscope.core.models.llama_index_rank_model": [[32, "memoryscope-core-models-llama-index-rank-model"]], "memoryscope.core.operation": [[33, "memoryscope-core-operation"]], "memoryscope.core.operation.backend_operation": [[34, "memoryscope-core-operation-backend-operation"]], "memoryscope.core.operation.base_operation": [[35, "memoryscope-core-operation-base-operation"]], "memoryscope.core.operation.base_workflow": [[36, "memoryscope-core-operation-base-workflow"]], "memoryscope.core.operation.consolidate_memory_op": [[37, "memoryscope-core-operation-consolidate-memory-op"]], "memoryscope.core.operation.frontend_operation": [[38, "memoryscope-core-operation-frontend-operation"]], "memoryscope.core.service": [[39, "memoryscope-core-service"]], "memoryscope.core.service.base_memory_service": [[40, "memoryscope-core-service-base-memory-service"]], "memoryscope.core.service.memory_scope_service": [[41, "memoryscope-core-service-memory-scope-service"]], "memoryscope.core.storage": [[42, "memoryscope-core-storage"]], "memoryscope.core.storage.base_memory_store": [[43, "memoryscope-core-storage-base-memory-store"]], "memoryscope.core.storage.base_monitor": [[44, "memoryscope-core-storage-base-monitor"]], "memoryscope.core.storage.dummy_memory_store": [[45, "memoryscope-core-storage-dummy-memory-store"]], "memoryscope.core.storage.dummy_monitor": [[46, "memoryscope-core-storage-dummy-monitor"]], "memoryscope.core.storage.llama_index_es_memory_store": [[47, "memoryscope-core-storage-llama-index-es-memory-store"]], "memoryscope.core.storage.llama_index_sync_elasticsearch": [[48, "memoryscope-core-storage-llama-index-sync-elasticsearch"]], "memoryscope.core.utils": [[49, "memoryscope-core-utils"]], "memoryscope.core.utils.datetime_handler": [[50, "memoryscope-core-utils-datetime-handler"]], "memoryscope.core.utils.logger": [[51, "memoryscope-core-utils-logger"]], "memoryscope.core.utils.prompt_handler": [[52, "memoryscope-core-utils-prompt-handler"]], "memoryscope.core.utils.registry": [[53, "memoryscope-core-utils-registry"]], "memoryscope.core.utils.response_text_parser": [[54, "memoryscope-core-utils-response-text-parser"]], "memoryscope.core.utils.singleton": [[55, "memoryscope-core-utils-singleton"]], "memoryscope.core.utils.timer": [[56, "memoryscope-core-utils-timer"]], "memoryscope.core.utils.tool_functions": [[57, "memoryscope-core-utils-tool-functions"]], "memoryscope.core.worker": [[58, "memoryscope-core-worker"]], "memoryscope.core.worker.backend": [[59, "memoryscope-core-worker-backend"]], "memoryscope.core.worker.backend.contra_repeat_worker": [[60, "memoryscope-core-worker-backend-contra-repeat-worker"]], "memoryscope.core.worker.backend.get_observation_with_time_worker": [[61, "memoryscope-core-worker-backend-get-observation-with-time-worker"]], "memoryscope.core.worker.backend.get_observation_worker": [[62, "memoryscope-core-worker-backend-get-observation-worker"]], "memoryscope.core.worker.backend.get_reflection_subject_worker": [[63, "memoryscope-core-worker-backend-get-reflection-subject-worker"]], "memoryscope.core.worker.backend.info_filter_worker": [[64, "memoryscope-core-worker-backend-info-filter-worker"]], "memoryscope.core.worker.backend.load_memory_worker": [[65, "memoryscope-core-worker-backend-load-memory-worker"]], "memoryscope.core.worker.backend.long_contra_repeat_worker": [[66, "memoryscope-core-worker-backend-long-contra-repeat-worker"]], "memoryscope.core.worker.backend.update_insight_worker": [[67, "memoryscope-core-worker-backend-update-insight-worker"]], "memoryscope.core.worker.backend.update_memory_worker": [[68, "memoryscope-core-worker-backend-update-memory-worker"]], "memoryscope.core.worker.base_worker": [[69, "memoryscope-core-worker-base-worker"]], "memoryscope.core.worker.dummy_worker": [[70, "memoryscope-core-worker-dummy-worker"]], "memoryscope.core.worker.frontend": [[71, "memoryscope-core-worker-frontend"]], "memoryscope.core.worker.frontend.extract_time_worker": [[72, "memoryscope-core-worker-frontend-extract-time-worker"]], "memoryscope.core.worker.frontend.fuse_rerank_worker": [[73, "memoryscope-core-worker-frontend-fuse-rerank-worker"]], "memoryscope.core.worker.frontend.print_memory_worker": [[74, "memoryscope-core-worker-frontend-print-memory-worker"]], "memoryscope.core.worker.frontend.read_message_worker": [[75, "memoryscope-core-worker-frontend-read-message-worker"]], "memoryscope.core.worker.frontend.retrieve_memory_worker": [[76, "memoryscope-core-worker-frontend-retrieve-memory-worker"]], "memoryscope.core.worker.frontend.semantic_rank_worker": [[77, "memoryscope-core-worker-frontend-semantic-rank-worker"]], "memoryscope.core.worker.frontend.set_query_worker": [[78, "memoryscope-core-worker-frontend-set-query-worker"]], "memoryscope.core.worker.memory_base_worker": [[79, "memoryscope-core-worker-memory-base-worker"]], "memoryscope.core.worker.memory_manager": [[80, "memoryscope-core-worker-memory-manager"]], "memoryscope.enumeration": [[81, "memoryscope-enumeration"]], "memoryscope.enumeration.action_status_enum": [[82, "memoryscope-enumeration-action-status-enum"]], "memoryscope.enumeration.language_enum": [[83, "memoryscope-enumeration-language-enum"]], "memoryscope.enumeration.memory_type_enum": [[84, "memoryscope-enumeration-memory-type-enum"]], "memoryscope.enumeration.message_role_enum": [[85, "memoryscope-enumeration-message-role-enum"]], "memoryscope.enumeration.model_enum": [[86, "memoryscope-enumeration-model-enum"]], "memoryscope.enumeration.store_status_enum": [[87, "memoryscope-enumeration-store-status-enum"]], "memoryscope.scheme": [[88, "memoryscope-scheme"]], "memoryscope.scheme.memory_node": [[89, "memoryscope-scheme-memory-node"]], "memoryscope.scheme.message": [[90, "memoryscope-scheme-message"]], "memoryscope.scheme.model_response": [[91, "memoryscope-scheme-model-response"]]}, "indexentries": {}}) \ No newline at end of file +Search.setIndex({"docnames": ["README", "docs/api", "docs/contribution", "docs/installation", "examples/advance/custom_operator", "examples/advance/custom_operator_zh", "examples/api/agentscope_example", "examples/api/autogen_example", "examples/api/simple_usages", "examples/api/simple_usages_zh", "examples/cli/CLI_README", "examples/cli/CLI_README_ZH", "index", "memoryscope", "memoryscope.constants", "memoryscope.constants.common_constants", "memoryscope.constants.language_constants", "memoryscope.core", "memoryscope.core.chat", "memoryscope.core.chat.api_memory_chat", "memoryscope.core.chat.base_memory_chat", "memoryscope.core.chat.cli_memory_chat", "memoryscope.core.config", "memoryscope.core.config.arguments", "memoryscope.core.config.config_manager", "memoryscope.core.memoryscope", "memoryscope.core.memoryscope_context", "memoryscope.core.models", "memoryscope.core.models.base_model", "memoryscope.core.models.dummy_generation_model", "memoryscope.core.models.llama_index_embedding_model", "memoryscope.core.models.llama_index_generation_model", "memoryscope.core.models.llama_index_rank_model", "memoryscope.core.operation", "memoryscope.core.operation.backend_operation", "memoryscope.core.operation.base_operation", "memoryscope.core.operation.base_workflow", "memoryscope.core.operation.consolidate_memory_op", "memoryscope.core.operation.frontend_operation", "memoryscope.core.service", "memoryscope.core.service.base_memory_service", "memoryscope.core.service.memory_scope_service", "memoryscope.core.storage", "memoryscope.core.storage.base_memory_store", "memoryscope.core.storage.base_monitor", "memoryscope.core.storage.dummy_memory_store", "memoryscope.core.storage.dummy_monitor", "memoryscope.core.storage.llama_index_es_memory_store", "memoryscope.core.storage.llama_index_sync_elasticsearch", "memoryscope.core.utils", "memoryscope.core.utils.datetime_handler", "memoryscope.core.utils.logger", "memoryscope.core.utils.prompt_handler", "memoryscope.core.utils.registry", "memoryscope.core.utils.response_text_parser", "memoryscope.core.utils.singleton", "memoryscope.core.utils.timer", "memoryscope.core.utils.tool_functions", "memoryscope.core.worker", "memoryscope.core.worker.backend", "memoryscope.core.worker.backend.contra_repeat_worker", "memoryscope.core.worker.backend.get_observation_with_time_worker", "memoryscope.core.worker.backend.get_observation_worker", "memoryscope.core.worker.backend.get_reflection_subject_worker", "memoryscope.core.worker.backend.info_filter_worker", "memoryscope.core.worker.backend.load_memory_worker", "memoryscope.core.worker.backend.long_contra_repeat_worker", "memoryscope.core.worker.backend.update_insight_worker", "memoryscope.core.worker.backend.update_memory_worker", "memoryscope.core.worker.base_worker", "memoryscope.core.worker.dummy_worker", "memoryscope.core.worker.frontend", "memoryscope.core.worker.frontend.extract_time_worker", "memoryscope.core.worker.frontend.fuse_rerank_worker", "memoryscope.core.worker.frontend.print_memory_worker", "memoryscope.core.worker.frontend.read_message_worker", "memoryscope.core.worker.frontend.retrieve_memory_worker", "memoryscope.core.worker.frontend.semantic_rank_worker", "memoryscope.core.worker.frontend.set_query_worker", "memoryscope.core.worker.memory_base_worker", "memoryscope.core.worker.memory_manager", "memoryscope.enumeration", "memoryscope.enumeration.action_status_enum", "memoryscope.enumeration.language_enum", "memoryscope.enumeration.memory_type_enum", "memoryscope.enumeration.message_role_enum", "memoryscope.enumeration.model_enum", "memoryscope.enumeration.store_status_enum", "memoryscope.scheme", "memoryscope.scheme.memory_node", "memoryscope.scheme.message", "memoryscope.scheme.model_response", "modules"], "filenames": ["README.md", "docs/api.rst", "docs/contribution.md", "docs/installation.md", "examples/advance/custom_operator.md", "examples/advance/custom_operator_zh.md", "examples/api/agentscope_example.md", "examples/api/autogen_example.md", "examples/api/simple_usages.ipynb", "examples/api/simple_usages_zh.ipynb", "examples/cli/CLI_README.md", "examples/cli/CLI_README_ZH.md", "index.rst", "memoryscope.rst", "memoryscope.constants.rst", "memoryscope.constants.common_constants.rst", "memoryscope.constants.language_constants.rst", "memoryscope.core.rst", "memoryscope.core.chat.rst", "memoryscope.core.chat.api_memory_chat.rst", "memoryscope.core.chat.base_memory_chat.rst", "memoryscope.core.chat.cli_memory_chat.rst", "memoryscope.core.config.rst", "memoryscope.core.config.arguments.rst", "memoryscope.core.config.config_manager.rst", "memoryscope.core.memoryscope.rst", "memoryscope.core.memoryscope_context.rst", "memoryscope.core.models.rst", "memoryscope.core.models.base_model.rst", "memoryscope.core.models.dummy_generation_model.rst", "memoryscope.core.models.llama_index_embedding_model.rst", "memoryscope.core.models.llama_index_generation_model.rst", "memoryscope.core.models.llama_index_rank_model.rst", "memoryscope.core.operation.rst", "memoryscope.core.operation.backend_operation.rst", "memoryscope.core.operation.base_operation.rst", "memoryscope.core.operation.base_workflow.rst", "memoryscope.core.operation.consolidate_memory_op.rst", "memoryscope.core.operation.frontend_operation.rst", "memoryscope.core.service.rst", "memoryscope.core.service.base_memory_service.rst", "memoryscope.core.service.memory_scope_service.rst", "memoryscope.core.storage.rst", "memoryscope.core.storage.base_memory_store.rst", "memoryscope.core.storage.base_monitor.rst", "memoryscope.core.storage.dummy_memory_store.rst", "memoryscope.core.storage.dummy_monitor.rst", "memoryscope.core.storage.llama_index_es_memory_store.rst", "memoryscope.core.storage.llama_index_sync_elasticsearch.rst", "memoryscope.core.utils.rst", "memoryscope.core.utils.datetime_handler.rst", "memoryscope.core.utils.logger.rst", "memoryscope.core.utils.prompt_handler.rst", "memoryscope.core.utils.registry.rst", "memoryscope.core.utils.response_text_parser.rst", "memoryscope.core.utils.singleton.rst", "memoryscope.core.utils.timer.rst", "memoryscope.core.utils.tool_functions.rst", "memoryscope.core.worker.rst", "memoryscope.core.worker.backend.rst", "memoryscope.core.worker.backend.contra_repeat_worker.rst", "memoryscope.core.worker.backend.get_observation_with_time_worker.rst", "memoryscope.core.worker.backend.get_observation_worker.rst", "memoryscope.core.worker.backend.get_reflection_subject_worker.rst", "memoryscope.core.worker.backend.info_filter_worker.rst", "memoryscope.core.worker.backend.load_memory_worker.rst", "memoryscope.core.worker.backend.long_contra_repeat_worker.rst", "memoryscope.core.worker.backend.update_insight_worker.rst", "memoryscope.core.worker.backend.update_memory_worker.rst", "memoryscope.core.worker.base_worker.rst", "memoryscope.core.worker.dummy_worker.rst", "memoryscope.core.worker.frontend.rst", "memoryscope.core.worker.frontend.extract_time_worker.rst", "memoryscope.core.worker.frontend.fuse_rerank_worker.rst", "memoryscope.core.worker.frontend.print_memory_worker.rst", "memoryscope.core.worker.frontend.read_message_worker.rst", "memoryscope.core.worker.frontend.retrieve_memory_worker.rst", "memoryscope.core.worker.frontend.semantic_rank_worker.rst", "memoryscope.core.worker.frontend.set_query_worker.rst", "memoryscope.core.worker.memory_base_worker.rst", "memoryscope.core.worker.memory_manager.rst", "memoryscope.enumeration.rst", "memoryscope.enumeration.action_status_enum.rst", "memoryscope.enumeration.language_enum.rst", "memoryscope.enumeration.memory_type_enum.rst", "memoryscope.enumeration.message_role_enum.rst", "memoryscope.enumeration.model_enum.rst", "memoryscope.enumeration.store_status_enum.rst", "memoryscope.scheme.rst", "memoryscope.scheme.memory_node.rst", "memoryscope.scheme.message.rst", "memoryscope.scheme.model_response.rst", "modules.rst"], "titles": ["MemoryScope", "Enumeration", "Contribute to MemoryScope", "Installing MemoryScope", "Custom Operator and Worker", "\u81ea\u5b9a\u4e49 Operator \u548c Worker", "Working with AgentScope", "Working with AutoGen", "Example usages of chat and service interfaces", "chat \u548c service \u63a5\u53e3\u7684\u793a\u4f8b\u7528\u6cd5", "The Cli Interface of MemoryScope", "MemoryScope \u7684\u547d\u4ee4\u884c\u63a5\u53e3", "MemoryScope Documentation", "memoryscope", "memoryscope.constants", "memoryscope.constants.common_constants", "memoryscope.constants.language_constants", "memoryscope.core", "memoryscope.core.chat", "memoryscope.core.chat.api_memory_chat", "memoryscope.core.chat.base_memory_chat", "memoryscope.core.chat.cli_memory_chat", "memoryscope.core.config", "memoryscope.core.config.arguments", "memoryscope.core.config.config_manager", "memoryscope.core.memoryscope", "memoryscope.core.memoryscope_context", "memoryscope.core.models", "memoryscope.core.models.base_model", "memoryscope.core.models.dummy_generation_model", "memoryscope.core.models.llama_index_embedding_model", "memoryscope.core.models.llama_index_generation_model", "memoryscope.core.models.llama_index_rank_model", "memoryscope.core.operation", "memoryscope.core.operation.backend_operation", "memoryscope.core.operation.base_operation", "memoryscope.core.operation.base_workflow", "memoryscope.core.operation.consolidate_memory_op", "memoryscope.core.operation.frontend_operation", "memoryscope.core.service", "memoryscope.core.service.base_memory_service", "memoryscope.core.service.memory_scope_service", "memoryscope.core.storage", "memoryscope.core.storage.base_memory_store", "memoryscope.core.storage.base_monitor", "memoryscope.core.storage.dummy_memory_store", "memoryscope.core.storage.dummy_monitor", "memoryscope.core.storage.llama_index_es_memory_store", "memoryscope.core.storage.llama_index_sync_elasticsearch", "memoryscope.core.utils", "memoryscope.core.utils.datetime_handler", "memoryscope.core.utils.logger", "memoryscope.core.utils.prompt_handler", "memoryscope.core.utils.registry", "memoryscope.core.utils.response_text_parser", "memoryscope.core.utils.singleton", "memoryscope.core.utils.timer", "memoryscope.core.utils.tool_functions", "memoryscope.core.worker", "memoryscope.core.worker.backend", "memoryscope.core.worker.backend.contra_repeat_worker", "memoryscope.core.worker.backend.get_observation_with_time_worker", "memoryscope.core.worker.backend.get_observation_worker", "memoryscope.core.worker.backend.get_reflection_subject_worker", "memoryscope.core.worker.backend.info_filter_worker", "memoryscope.core.worker.backend.load_memory_worker", "memoryscope.core.worker.backend.long_contra_repeat_worker", "memoryscope.core.worker.backend.update_insight_worker", "memoryscope.core.worker.backend.update_memory_worker", "memoryscope.core.worker.base_worker", "memoryscope.core.worker.dummy_worker", "memoryscope.core.worker.frontend", "memoryscope.core.worker.frontend.extract_time_worker", "memoryscope.core.worker.frontend.fuse_rerank_worker", "memoryscope.core.worker.frontend.print_memory_worker", "memoryscope.core.worker.frontend.read_message_worker", "memoryscope.core.worker.frontend.retrieve_memory_worker", "memoryscope.core.worker.frontend.semantic_rank_worker", "memoryscope.core.worker.frontend.set_query_worker", "memoryscope.core.worker.memory_base_worker", "memoryscope.core.worker.memory_manager", "memoryscope.enumeration", "memoryscope.enumeration.action_status_enum", "memoryscope.enumeration.language_enum", "memoryscope.enumeration.memory_type_enum", "memoryscope.enumeration.message_role_enum", "memoryscope.enumeration.model_enum", "memoryscope.enumeration.store_status_enum", "memoryscope.scheme", "memoryscope.scheme.memory_node", "memoryscope.scheme.message", "memoryscope.scheme.model_response", "memoryscope"], "terms": {"english": [0, 1, 3, 10, 81, 83], "\u4e2d\u6587": [0, 11], "equip": [0, 12], "your": [0, 4, 5, 8, 10], "llm": [0, 8, 12], "chatbot": [0, 8, 12], "power": [0, 12], "flexibl": [0, 12], "long": [0, 4, 5, 12], "term": [0, 1, 4, 5, 12, 81, 82], "memori": [0, 1, 3, 4, 5, 9, 12, 81, 82, 84], "system": [0, 1, 8, 12, 81, 85, 86], "2024": [0, 8], "09": 0, "10": [0, 8], "we": [0, 2, 6, 7, 8], "releas": 0, "v0": 0, "1": [0, 8, 9], "0": 0, "now": [0, 2, 4, 5, 8], "which": [0, 1, 4, 8, 81, 85], "also": [0, 3, 8], "avail": [0, 10], "pypi": [0, 12], "provid": [0, 2, 8, 10, 12], "capabl": [0, 12], "offer": [0, 8, 12], "build": [0, 3, 8, 12], "abil": [0, 8, 12], "It": [0, 8, 12], "can": [0, 1, 2, 6, 7, 8, 10, 12, 81, 85], "appli": [0, 12], "scenario": [0, 12], "like": [0, 8, 12], "person": [0, 8, 12], "assist": [0, 1, 8, 10, 12, 81, 85], "emot": [0, 8, 12], "companion": [0, 12], "continu": [0, 12], "learn": [0, 1, 8, 12, 81, 86], "through": [0, 10, 12], "rememb": [0, 2, 8, 12], "user": [0, 1, 3, 10, 11, 12, 81, 85], "basic": [0, 12], "inform": [0, 8, 12], "well": [0, 6, 7, 8, 12], "variou": [0, 1, 8, 12, 81, 82], "habit": [0, 12], "prefer": [0, 8, 10, 12], "thi": [0, 1, 2, 8, 12, 81, 85], "allow": [0, 12], "gradual": [0, 12], "experi": [0, 8, 12], "sens": [0, 8, 12], "understand": [0, 8, 12], "when": [0, 2, 8, 12], "us": [0, 1, 2, 12, 81, 85, 86], "databas": [0, 8, 12], "vector": [0, 12], "default": [0, 4, 5, 8, 10, 12], "elasticsearch": [0, 3, 6, 7, 12], "store": [0, 4, 5, 12], "all": [0, 8, 10, 12], "fragment": [0, 12], "record": [0, 12], "worker": [0, 8, 9, 12], "librari": [0, 12], "atom": [0, 12], "individu": [0, 8, 12], "includ": [0, 1, 2, 8, 12, 81, 85], "over": [0, 8, 12], "20": [0, 8, 12], "task": [0, 1, 12, 81, 86], "queri": [0, 4, 5, 8, 9, 12], "filter": [0, 8, 12], "observ": [0, 1, 8, 9, 12, 81, 84], "extract": [0, 8, 12], "insight": [0, 1, 8, 9, 12, 81, 84], "updat": [0, 4, 8, 12], "oper": [0, 8, 9, 12], "base": [0, 8, 12, 81, 82, 83, 84, 85, 86, 87], "pipelin": [0, 12], "construct": [0, 12], "servic": [0, 3, 12], "realiz": [0, 12], "kei": [0, 3, 8, 12], "retriev": [0, 4, 5, 8, 12], "consolid": [0, 12], "upon": [0, 12], "arriv": [0, 12], "return": [0, 8, 12], "semant": [0, 12], "relat": [0, 12], "piec": [0, 8, 12], "those": [0, 12], "from": [0, 1, 2, 4, 5, 8, 9, 12, 81, 84], "correspond": [0, 8, 12], "time": [0, 2, 9, 12], "involv": [0, 1, 2, 12, 81, 85], "refer": [0, 3, 8], "take": [0, 8, 12], "batch": [0, 12], "import": [0, 4, 5, 8, 9, 12], "reflect": [0, 1, 12, 81, 82], "re": [0, 2, 12], "At": [0, 4, 12], "regular": [0, 12], "interv": [0, 12], "perform": [0, 2, 8, 12], "newli": [0, 1, 12, 81, 82], "form": [0, 1, 12, 81, 86], "Then": [0, 6, 7, 12], "ensur": [0, 6, 7, 8, 12], "contradict": [0, 12], "repetit": [0, 12], "among": [0, 12], "ar": [0, 2, 8, 10, 12], "properli": [0, 12], "handl": [0, 12], "best": [0, 8], "practic": [0, 8], "core": [0, 3, 4, 5, 10, 11], "ha": [0, 1, 2, 8, 81, 82], "implement": [0, 8], "dialogu": 0, "interfac": [0, 1, 3, 81, 85], "command": 0, "line": 0, "cli": [0, 3, 8, 12], "combin": 0, "current": [0, 4, 5, 8], "popular": 0, "agent": 0, "autogen": [0, 6], "agentscop": 0, "low": [0, 12], "respons": [0, 1, 2, 9, 10, 12, 81, 86], "rt": [0, 12], "backend": [0, 8, 10, 12], "decoupl": 0, "frontend": [0, 12], "while": 0, "usual": 0, "recommend": [0, 6, 7, 12], "queu": 0, "execut": 0, "": [0, 2, 4, 8], "depend": 0, "sole": 0, "onli": [0, 8], "500m": 0, "hierarch": 0, "coher": 0, "The": [0, 3, 6, 7, 8], "structur": 0, "being": [0, 8], "high": [0, 8], "level": 0, "aggreg": 0, "similarli": 0, "theme": 0, "period": 0, "fictiti": [0, 8], "content": [0, 1, 8, 9, 81, 82, 84, 86], "out": [0, 2, 8], "avoid": 0, "hallucin": 0, "awar": [0, 8], "sensit": [0, 8], "both": [0, 2, 8], "therefor": [0, 8], "accur": [0, 8], "relev": [0, 1, 2, 81, 86], "some": [0, 2, 8], "openai_backend": 0, "gener": [0, 1, 8, 10, 81, 86], "gpt": [0, 3, 10, 11], "4o": [0, 3, 10, 11], "mini": 0, "4": [0, 8, 9], "3": [0, 3, 8, 9, 10, 11], "5": [0, 8, 9], "turbo": 0, "embed": [0, 1, 3, 8, 9, 10, 11, 81, 86], "text": [0, 3, 8, 9, 10, 11], "ada": 0, "002": 0, "larg": 0, "small": [0, 3, 10, 11], "dashscope_backend": 0, "qwen": [0, 3, 9, 10, 11], "max": [0, 3, 9, 10, 11], "plu": 0, "qwen2": [0, 8], "72b": [0, 8], "instruct": [0, 8], "v1": 0, "v2": [0, 3, 8, 9, 10, 11], "rerank": [0, 3, 8, 9, 10, 11], "gte": [0, 3, 8, 9, 10, 11], "In": [0, 2], "futur": [0, 8], "more": [0, 12], "local": [0, 2, 8], "deploy": 0, "For": [0, 8, 12], "pleas": [0, 2], "md": 0, "simpl": [0, 8, 12], "usag": [0, 12], "With": [0, 2, 8], "advanc": [0, 4, 5, 8, 12], "custom": [0, 1, 8, 81, 84], "alwai": [0, 8], "encourag": 0, "highli": 0, "pre": [0, 2], "commit": 0, "hook": [0, 2], "repo": 0, "befor": [0, 8, 10], "pull": 0, "request": 0, "These": [0, 8], "hous": 0, "keep": [0, 2, 8], "script": 0, "everi": 0, "you": [0, 2, 4, 5, 6, 7, 8, 10], "make": [0, 6, 7, 8], "git": [0, 2, 3], "care": 0, "format": [0, 2], "lint": 0, "automat": 0, "pip": [0, 2, 3, 6, 7], "e": [0, 2, 3, 6, 7], "our": [0, 2, 8], "guid": 0, "detail": [0, 2, 8], "cite": 0, "paper": 0, "softwar": 0, "author": 0, "li": 0, "yu": 0, "tiancheng": 0, "qin": 0, "qingxu": 0, "fu": 0, "sen": 0, "huang": 0, "xianzh": 0, "xu": 0, "zhaoyang": 0, "liu": 0, "boyin": 0, "month": [0, 8], "titl": [0, 2], "url": 0, "http": [0, 2, 3], "github": [0, 2, 3], "com": [0, 2, 3], "modelscop": [0, 3], "year": [0, 8], "memoryscop": [1, 4, 5, 6, 7], "api": [1, 3, 6, 7], "document": [1, 2, 3, 6, 7], "class": [1, 4, 5, 8, 10, 81, 82, 83, 84, 85, 86, 87], "actionstatusenum": [1, 12, 81, 82], "valu": [1, 81, 82, 83, 84, 85, 86, 87], "sourc": [1, 8, 12, 81, 82, 83, 84, 85, 86, 87], "repres": [1, 81, 82, 83, 84, 86], "status": [1, 81, 82], "node": [1, 3, 6, 7, 81, 82], "each": [1, 2, 4, 5, 8, 81, 82, 84], "statu": [1, 8, 81, 82], "differ": [1, 8, 10, 81, 82, 84, 85, 86], "state": [1, 81, 82], "its": [1, 2, 4, 5, 8, 81, 82], "lifecycl": [1, 81, 82], "new": [1, 4, 8, 9, 12, 81, 82], "indic": [1, 10, 81, 82, 84], "creat": [1, 4, 8, 10, 81, 82, 86], "modifi": [1, 8, 9, 81, 82], "signifi": [1, 81, 82], "been": [1, 2, 8, 81, 82], "alter": [1, 81, 82], "content_modifi": [1, 81, 82], "specifi": [1, 8, 10, 81, 82], "chang": [1, 3, 81, 82], "actual": [1, 8, 81, 82], "none": [1, 8, 9, 81, 82], "do": [1, 8, 10, 81, 82], "noth": [1, 8, 81, 82], "delet": [1, 81, 82], "languageenum": [1, 12, 81, 83], "an": [1, 2, 8, 81, 83, 84, 86, 87], "support": [1, 12, 81, 83], "languag": [1, 3, 8, 9, 10, 11, 81, 83], "member": [1, 2, 81, 83, 84, 86], "cn": [1, 3, 9, 10, 11, 81, 83], "chines": [1, 3, 10, 81, 83], "en": [1, 3, 8, 10, 11, 81, 83], "memorytypeenum": [1, 12, 81, 84], "defin": [1, 81, 84], "type": [1, 3, 6, 7, 81, 84, 86], "categori": [1, 81, 84], "distinct": [1, 81, 84, 85], "convers": [1, 8, 10, 81, 84, 85], "denot": [1, 81, 84, 86], "deriv": [1, 81, 84], "analysi": [1, 81, 84], "obs_custom": [1, 81, 84], "messageroleenum": [1, 12, 81, 85], "messag": [1, 2, 8, 9, 81, 85], "role": [1, 8, 81, 85], "within": [1, 8, 81, 85, 86], "context": [1, 2, 4, 5, 8, 81, 85], "predefin": [1, 81, 85], "categor": [1, 81, 85], "ai": [1, 3, 8, 9, 10, 11, 81, 85], "interact": [1, 8, 81, 85], "ani": [1, 2, 8, 81, 85], "particip": [1, 81, 85], "modelenum": [1, 12, 81, 86], "generation_model": [1, 3, 4, 5, 8, 9, 10, 11, 81, 86], "embedding_model": [1, 3, 8, 9, 10, 11, 81, 86], "typic": [1, 81, 86], "transform": [1, 81, 86], "data": [1, 8, 81, 86], "numer": [1, 81, 86], "suitabl": [1, 81, 86], "machin": [1, 81, 86], "rank_model": [1, 3, 8, 9, 10, 11, 81, 86], "special": [1, 8, 81, 86], "rank": [1, 10, 81, 86], "often": [1, 81, 86], "order": [1, 81, 86], "item": [1, 81, 86], "storestatusenum": [1, 12, 81, 87], "commun": [2, 8], "thrive": 2, "divers": [2, 8], "idea": [2, 8], "whether": [2, 8, 10], "fix": 2, "ad": 2, "improv": 2, "exampl": [2, 4, 5, 6, 7, 12], "help": [2, 8], "i": [2, 4, 6, 7, 8, 10, 12], "welcom": 2, "here": [2, 8, 10], "how": [2, 8], "did": 2, "find": [2, 8], "have": [2, 6, 7, 8], "first": [2, 6, 7, 8, 10], "check": [2, 8], "issu": 2, "tracker": 2, "see": [2, 8], "alreadi": 2, "If": [2, 8, 10], "feel": [2, 8], "free": [2, 8], "open": 2, "much": 2, "possibl": [2, 8], "A": [2, 8, 10], "descript": [2, 4, 5], "clear": 2, "step": 2, "reproduc": 2, "problem": [2, 8], "version": 2, "snippet": 2, "error": 2, "To": 2, "work": [2, 8], "start": [2, 3, 4, 5, 6, 7, 8, 10, 12], "usernam": 2, "cd": [2, 3], "propos": 2, "organ": 2, "separ": 2, "main": [2, 8], "checkout": 2, "b": 2, "name": [2, 4, 8, 10], "focus": 2, "address": 2, "multipl": 2, "better": 2, "develop": 2, "addit": 2, "compar": 2, "offici": [2, 8], "instal": [2, 6, 7, 8, 9, 10, 11, 12], "onc": 2, "ve": [2, 8], "made": 2, "them": [2, 8], "write": [2, 4, 8], "concis": 2, "explain": 2, "add": [2, 3, 4, 5], "m": [2, 8, 9], "brief": 2, "might": [2, 8], "get": [2, 8], "rais": 2, "resolv": 2, "accord": 2, "again": 2, "readi": [2, 8], "feedback": 2, "other": [2, 8], "process": 2, "discuss": [2, 8], "part": [2, 8], "wait": 2, "u": 2, "mai": [2, 8], "suggest": 2, "ey": [2, 8], "notif": 2, "clone": 3, "repositori": 3, "edit": 3, "set": [3, 8, 10], "project": [3, 8], "configur": [3, 8], "g": 3, "vim": [3, 4, 5], "config": [3, 4, 5, 10, 11, 12], "demo_config": [3, 4, 10], "yaml": [3, 4, 5], "imag": [3, 8, 10], "sudo": [3, 6, 7], "network": [3, 8], "host": 3, "t": [3, 8], "launch": [3, 10], "contain": 3, "run": [3, 6, 7, 8, 10], "rm": 3, "net": 3, "yml": 3, "environ": [3, 8], "variabl": 3, "openai_api_kei": 3, "sk": 3, "0000000000": 3, "memory_scope_main": 3, "scope": 3, "method": [3, 6, 7, 10], "p": [3, 6, 7], "9200": [3, 6, 7], "discoveri": [3, 6, 7], "singl": [3, 6, 7], "xpack": [3, 6, 7], "secur": [3, 6, 7], "enabl": [3, 6, 7], "fals": [3, 6, 7, 10, 11], "licens": [3, 6, 7], "self_gener": [3, 6, 7], "trial": [3, 6, 7], "elast": [3, 6, 7], "co": [3, 6, 7], "8": [3, 6, 7, 8], "13": [3, 6, 7, 8], "2": [3, 6, 7, 8, 9], "test": [3, 8], "dashscop": [3, 10], "export": 3, "dashscope_api_kei": 3, "memory_chat_class": [3, 8, 9, 10, 11], "cli_memory_chat": [3, 10, 11], "human_nam": [3, 8, 9, 10, 11], "\u7528\u6237": [3, 9, 10, 11], "assistant_nam": [3, 8, 9, 10, 11], "generation_backend": [3, 8, 9, 10, 11], "dashscope_gener": [3, 8, 9, 10, 11], "embedding_backend": [3, 8, 9, 10, 11], "dashscope_embed": [3, 8, 9, 10, 11], "enable_rank": [3, 8, 9, 10, 11], "true": [3, 8, 9, 10, 11], "rank_backend": [3, 8, 9, 10, 11], "dashscope_rank": [3, 8, 9, 10, 11], "openai": [3, 10], "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx": 3, "openai_gener": [3, 10, 11], "openai_embed": [3, 10, 11], "python": [3, 4, 5, 6, 7], "quick": [3, 4, 5, 12], "demo": [3, 4, 5, 6, 7], "py": [3, 4, 5, 6, 7], "config_path": [3, 10, 11], "demo_config_zh": [3, 5, 11], "example_query_work": [4, 5], "contrib": [4, 5], "directori": 4, "program": 4, "note": [4, 8], "must": [4, 5], "match": 4, "filenam": 4, "examplequerywork": [4, 5], "datetim": [4, 5], "constant": [4, 5], "common_const": [4, 5], "query_with_t": [4, 5], "memory_base_work": [4, 5], "memorybasework": [4, 5], "def": [4, 5], "_run": [4, 5], "self": [4, 5], "timestamp": [4, 5], "int": [4, 5], "assert": [4, 5], "chat_kwarg": [4, 5], "els": [4, 5], "strip": [4, 5], "n": [4, 5, 8, 9], "meow": [4, 5], "end": [4, 5], "answer": [4, 5], "determin": [4, 5, 8], "set_workflow_context": [4, 5], "startup": 4, "file": 4, "copi": 4, "cp": [4, 5], "replac": [4, 5], "bottom": 4, "insert": 4, "definit": 4, "previou": 4, "set_queri": [4, 5], "workflow": [4, 5, 8, 9], "rewrite_queri": [4, 5], "retrieve_memori": [4, 5], "frontend_oper": [4, 5], "extract_tim": [4, 5], "retrieve_obs_in": [4, 5], "semantic_rank": [4, 5], "fuse_rerank": [4, 5], "verifi": 4, "\u5728": 5, "\u8def\u5f84\u4e0b\u521b\u5efa\u65b0worker": 5, "\u547d\u540d\u4e3a": 5, "\u5199\u5165\u65b0\u7684\u81ea\u5b9a\u4e49worker\u7684\u7a0b\u5e8f": 5, "\u6ce8\u610f": 5, "\u7684\u547d\u540d\u9700\u8981\u4e0e\u6587\u4ef6\u540d\u4fdd\u6301\u4e00\u81f4": 5, "\u4e3a": 5, "\u521b\u5efayaml\u542f\u52a8\u6587\u4ef6": 5, "\u590d\u5236demo_config_zh": 5, "\u5728\u6700\u4e0b\u9762\u63d2\u5165\u65b0worker\u7684\u5b9a\u4e49": 5, "\u5e76\u4e14\u53d6\u4ee3\u4e4b\u524d\u7684\u9ed8\u8ba4": 5, "\u5e76\u66ff\u6362operation\u7684workflow": 5, "\u9a8c\u8bc1": 5, "sure": [6, 7], "up": [6, 7, 8], "docker": [6, 7, 8, 9, 10, 11, 12], "final": [6, 7, 8], "agentscope_exampl": 6, "pyautogen": 7, "autogen_exampl": 7, "notebook": 8, "show": 8, "along": 8, "featur": [8, 12], "follow": [8, 10], "guidelin": [8, 10], "readm": [8, 9, 10, 11], "need": 8, "argument": [8, 9], "api_memory_chat": [8, 9], "worker_param": 8, "get_reflection_subject": 8, "reflect_num_quest": 8, "come": 8, "so": [8, 10], "veri": 8, "easi": 8, "just": 8, "what": [8, 12], "ll": 8, "memory_chat": [8, 9], "default_memory_chat": [8, 9], "run_service_oper": [8, 9], "delete_al": [8, 9], "chat_with_memori": [8, 9], "my": 8, "hobbi": 8, "plai": 8, "piano": 8, "print": [8, 9], "That": 8, "39": 8, "wonder": 8, "beauti": 8, "express": 8, "bring": 8, "joi": 8, "relax": 8, "achiev": 8, "engag": 8, "creativ": 8, "technic": 8, "aspect": 8, "mind": 8, "enhanc": 8, "cognit": 8, "skill": 8, "foster": 8, "enjoi": 8, "classic": 8, "modern": 8, "composit": 8, "improvis": 8, "vast": 8, "repertoir": 8, "explor": 8, "music": 8, "journei": 8, "choos": 8, "multi": 8, "round": 8, "howev": 8, "sinc": 8, "call": 8, "yet": 8, "know": 8, "instrument": 8, "history_message_strategi": [8, 9], "mention": 8, "ye": 8, "sorri": 8, "don": 8, "access": 8, "about": [8, 12], "unless": 8, "share": 8, "me": 8, "dure": 8, "cannot": 8, "bit": 8, "try": 8, "meta": 8, "fruit": 8, "should": 8, "eat": 8, "afternoon": 8, "watermelon": 8, "6": [8, 9], "short": 8, "birthdai": 8, "wish": 8, "friend": 8, "7": 8, "thank": 8, "let": 8, "formerli": 8, "known": 8, "facebook": 8, "impli": 8, "compani": 8, "forefront": 8, "technologi": 8, "social": 8, "media": 8, "innov": 8, "influenti": 8, "platform": 8, "instagram": 8, "whatsapp": 8, "virtual": 8, "realiti": 8, "oculu": 8, "effort": 8, "toward": 8, "metavers": 8, "excit": 8, "shape": 8, "digit": 8, "great": 8, "wai": [8, 10], "nourish": 8, "bodi": 8, "satisfi": 8, "tast": 8, "bud": 8, "consid": 8, "refresh": 8, "nutriti": 8, "option": [8, 10], "juici": 8, "orang": 8, "sweet": 8, "appl": 8, "hand": 8, "berri": 8, "strawberri": 8, "blueberri": 8, "raspberri": 8, "slice": 8, "delici": 8, "pack": 8, "vitamin": 8, "antioxid": 8, "fiber": 8, "energ": 8, "throughout": 8, "dai": 8, "one": 8, "appeal": 8, "most": 8, "mix": 8, "few": 8, "color": 8, "salad": 8, "excel": 8, "choic": 8, "hydrat": 8, "calori": 8, "rich": 8, "nutrient": 8, "c": 8, "lycopen": 8, "Its": 8, "water": 8, "perfect": 8, "snack": 8, "warm": 8, "tasti": 8, "healthi": 8, "treat": 8, "yourself": 8, "34": [8, 9], "happi": 8, "dear": 8, "fill": 8, "love": 8, "laughter": 8, "unforgett": 8, "moment": 8, "success": 8, "adventur": 8, "heart": 8, "sing": 8, "cheer": 8, "anoth": 8, "friendship": 8, "fullest": 8, "memory_servic": [8, 9], "default_memory_servic": [8, 9], "init_servic": [8, 9], "result": [8, 9], "consolidate_memori": [8, 9], "f": [8, 9], "action": [8, 9], "valid": [8, 9, 81, 87], "uninform": 8, "ones": 8, "case": 8, "prospect": 8, "go": 8, "amazon": 8, "am": 8, "plan": 8, "busi": 8, "trip": 8, "seattl": 8, "next": 8, "week": 8, "9": 8, "classmat": 8, "liam": 8, "googl": 8, "he": 8, "york": 8, "meal": 8, "him": 8, "cynthia": 8, "she": 8, "decid": 8, "univers": 8, "iowa": 8, "80": 8, "word": 8, "micro": [8, 9], "drama": 8, "11": 8, "kind": 8, "smci": 8, "thei": 8, "12": 8, "quit": 8, "promis": 8, "given": 8, "world": 8, "lead": 8, "tech": 8, "expect": 8, "competit": 8, "compens": 8, "career": 8, "growth": 8, "opportun": 8, "dynam": 8, "chanc": 8, "vari": 8, "team": 8, "good": 8, "research": 8, "specif": 8, "posit": 8, "cultur": 8, "employe": 8, "review": 8, "comprehens": 8, "point": 8, "weather": 8, "forecast": 8, "appropri": 8, "mild": 8, "marin": 8, "climat": 8, "rainfal": 8, "transport": 8, "familiar": 8, "sea": 8, "tac": 8, "airport": 8, "light": 8, "rail": 8, "buse": 8, "ride": 8, "around": 8, "accommod": 8, "book": 8, "hotel": 8, "meet": 8, "locat": 8, "conveni": 8, "area": 8, "downtown": 8, "amen": 8, "confirm": 8, "schedul": 8, "outsid": 8, "pacif": 8, "zone": 8, "etiquett": 8, "brush": 8, "especi": 8, "client": [8, 12], "partner": 8, "look": 8, "industri": 8, "event": 8, "stai": 8, "dine": 8, "culinari": 8, "scene": 8, "leisur": 8, "permit": 8, "attract": 8, "pike": 8, "place": 8, "market": 8, "space": 8, "needl": 8, "stroll": 8, "puget": 8, "sound": 8, "safe": 8, "travel": 8, "product": 8, "nice": 8, "catch": 8, "after": 8, "hi": 8, "exchang": 8, "stori": 8, "tip": 8, "venu": 8, "pick": 8, "restaur": 8, "suit": 8, "perhap": 8, "somewher": 8, "central": 8, "signific": 8, "coordin": 8, "date": 8, "adjust": 8, "topic": 8, "prepar": 8, "starter": 8, "life": 8, "interest": 8, "togeth": 8, "profession": 8, "valuabl": 8, "could": 8, "benefici": 8, "own": 8, "too": 8, "spark": 8, "reunion": 8, "As": 8, "hug": 8, "her": 8, "tightli": 8, "felt": 8, "bittersweet": 8, "pang": 8, "close": 8, "whisper": 8, "stare": 8, "luggag": 8, "adorn": 8, "sticker": 8, "smile": 8, "glisten": 8, "distanc": 8, "mean": 8, "intertwin": 8, "laugh": 8, "late": 8, "night": 8, "studi": 8, "session": 8, "fuel": 8, "echo": 8, "melodi": 8, "apart": 8, "cab": 8, "honk": 8, "reluctantli": 8, "dream": 8, "chapter": 8, "anew": 8, "unabl": 8, "real": 8, "prior": 8, "hypothet": 8, "fiction": 8, "would": 8, "search": 8, "onlin": 8, "natur": 8, "activ": 8, "inquir": 8, "infer": 8, "august": 8, "successfulli": 8, "resolut": 8, "conflict": 8, "realli": 8, "mango": 8, "todai": 8, "want": 8, "14": 8, "recent": 8, "switch": 8, "job": 8, "join": 8, "15": 8, "peach": 8, "16": 8, "coconut": 8, "17": 8, "surf": 8, "florida": 8, "18": 8, "tomorrow": 8, "19": 8, "congratul": 8, "far": 8, "whenev": 8, "No": 8, "everyon": 8, "plenti": 8, "spot": 8, "wave": 8, "fantast": 8, "memor": 8, "doesn": 8, "accumul": 8, "enough": 8, "reflect_and_reconsolid": [8, 9], "dislik": 8, "respond": 8, "start_tim": [8, 9], "end_tim": [8, 9], "total_tim": [8, 9], "nrespons": 8, "second": 8, "21": 8, "22": 8, "23": 8, "494797706604004": 8, "sometim": 8, "400442123413086": 8, "anyth": 8, "8412117958068848": 8, "haven": 8, "had": 8, "extern": 8, "calendar": 8, "knowledg": 8, "train": 8, "7565529346466064": 8, "doe": 8, "increas": 8, "direct": 8, "reader": 8, "guidanc": 8, "addition": 8, "asynchron": 8, "incur": 8, "\u8fd9\u4e2a\u7b14\u8bb0\u672c\u5c55\u793a\u4e86": 9, "\u7684": 9, "\u63a5\u53e3\u7684\u7b80\u5355\u7528\u6cd5": 9, "\u4ee5\u53ca\u5b83\u7684\u4e3b\u8981\u529f\u80fd": 9, "\u5728\u8fd0\u884c\u8fd9\u4e2a\u7b14\u8bb0\u672c\u4e4b\u524d": 9, "\u8bf7\u5148\u6309\u7167": [9, 11], "\u4e2d\u7684": [9, 11], "\u6307\u5357\u8fdb\u884c\u5b89\u88c5": [9, 11], "\u5e76\u542f\u52a8": [9, 11], "\u955c\u50cf": [9, 11], "\u9996\u5148": 9, "\u6211\u4eec\u9700\u8981\u6307\u5b9a\u4e00\u4e2a\u914d\u7f6e\u5e76\u521d\u59cb\u5316\u4e00\u4e2a": 9, "\u914d\u6709\u9ed8\u8ba4\u7684": 9, "\u63a5\u53e3": 9, "\u56e0\u6b64\u5f00\u59cb\u804a\u5929\u975e\u5e38\u5bb9\u6613": 9, "\u5c31\u50cf\u4f7f\u7528\u4efb\u4f55\u5927\u578b\u8bed\u8a00\u6a21\u578b\u804a\u5929\u673a\u5668\u4eba\u4e00\u6837": 9, "\u6211\u7684\u7231\u597d\u662f\u5f39\u7434": 9, "\u56de\u7b541": 9, "\u5f88\u9ad8\u5174\u4e86\u89e3\u5230\u60a8\u7684\u7231\u597d\u662f\u5f39\u7434": 9, "\u8fd9\u662f\u4e00\u79cd\u65e2\u80fd\u9676\u51b6\u60c5\u64cd\u53c8\u80fd\u63d0\u5347\u97f3\u4e50\u6280\u80fd\u7684\u7f8e\u5999\u827a\u672f\u5f62\u5f0f": 9, "\u65e0\u8bba\u662f\u53e4\u5178\u94a2\u7434": 9, "\u7235\u58eb\u4e50\u8fd8\u662f\u73b0\u4ee3\u6d41\u884c\u66f2\u76ee": 9, "\u6bcf\u4e00\u79cd\u98ce\u683c\u90fd\u80fd\u5e26\u6765\u4e0d\u540c\u7684\u4eab\u53d7\u548c\u6311\u6218": 9, "\u5e0c\u671b\u60a8\u5728\u5f39\u7434\u7684\u8fc7\u7a0b\u4e2d\u80fd\u591f\u6301\u7eed\u53d1\u73b0\u4e50\u8da3": 9, "\u521b\u9020\u51fa\u66f4\u591a\u52a8\u4eba\u7684\u65cb\u5f8b": 9, "\u4f60\u53ef\u4ee5\u9009\u62e9\u8fdb\u884c\u542b\u6709\u6216\u4e0d\u542b\u6709\u591a\u8f6e\u5bf9\u8bdd\u4e0a\u4e0b\u6587\u7684\u804a\u5929": 9, "\u7136\u800c": 9, "\u7531\u4e8e\u5c1a\u672a\u8c03\u7528": 9, "\u529f\u80fd": 9, "\u7cfb\u7edf\u4e2d\u8fd8\u6ca1\u6709\u4efb\u4f55\u8bb0\u5fc6\u7247\u6bb5": 9, "\u4f60\u77e5\u9053\u6211\u6709\u4ec0\u4e48\u4e50\u5668\u7231\u597d\u5417": 9, "\u56de\u7b542": 9, "\u56de\u7b543": 9, "\u662f\u7684": 9, "\u60a8\u63d0\u5230\u8fc7\u60a8\u7684\u7231\u597d\u662f\u5f39\u7434": 9, "\u6240\u4ee5\u6211\u8ba4\u4e3a\u60a8\u5bf9\u952e\u76d8\u4e50\u5668": 9, "\u7279\u522b\u662f\u94a2\u7434\u6709\u4e00\u5b9a\u7684\u7231\u597d": 9, "\u4f5c\u4e3a\u57fa\u4e8e\u5f53\u524d\u5bf9\u8bdd\u7684memoryscope\u667a\u80fd\u52a9\u7406": 9, "\u6211\u6ca1\u6709\u4e4b\u524d\u5173\u4e8e\u60a8\u4e50\u5668\u7231\u597d\u7684\u4fe1\u606f": 9, "\u8bf7\u544a\u8bc9\u6211": 9, "\u60a8\u559c\u6b22\u54ea\u79cd\u4e50\u5668": 9, "\u8fd9\u6837\u6211\u5c31\u53ef\u4ee5\u8bb0\u4f4f\u5e76\u63d0\u4f9b\u76f8\u5173\u5e2e\u52a9\u4e86": 9, "\u73b0\u5728": 9, "\u6211\u4eec\u518d\u804a\u591a\u51e0\u53e5": 9, "\u7136\u540e\u5c1d\u8bd5": 9, "\u6211\u5728\u963f\u91cc\u5df4\u5df4\u5e72\u6d3b": 9, "\u56de\u7b544": 9, "\u4eca\u5929\u4e0b\u5348\u5403\u4ec0\u4e48\u6c34\u679c\u597d": 9, "\u56de\u7b545": 9, "\u6211\u559c\u6b22\u5403\u897f\u74dc": 9, "\u56de\u7b546": 9, "\u5e2e\u6211\u5199\u4e00\u53e5\u7ed9\u670b\u53cb\u7684\u751f\u65e5\u795d\u798f\u8bed": 9, "\u7b80\u77ed\u4e00\u70b9": 9, "\u56de\u7b547": 9, "\u4e86\u89e3": 9, "\u60a8\u5728\u963f\u91cc\u5df4\u5df4\u5de5\u4f5c": 9, "\u963f\u91cc\u5df4\u5df4\u96c6\u56e2\u662f\u4e00\u5bb6\u603b\u90e8\u4f4d\u4e8e\u4e2d\u56fd\u676d\u5dde\u7684\u5168\u7403\u9886\u5148\u7684\u7535\u5b50\u5546\u52a1\u548c\u79d1\u6280\u516c\u53f8": 9, "\u4ee5\u5176\u7535\u5b50\u5546\u52a1\u5e73\u53f0\u5982\u6dd8\u5b9d": 9, "\u5929\u732b\u95fb\u540d": 9, "\u540c\u65f6\u5728\u4e91\u8ba1\u7b97": 9, "\u6570\u5b57\u5a92\u4f53\u53ca\u5a31\u4e50": 9, "\u91d1\u878d\u79d1\u6280\u7b49\u9886\u57df\u4e5f\u6709\u5e7f\u6cdb\u5e03\u5c40": 9, "\u5982\u679c\u60a8\u6709\u5173\u4e8e\u5de5\u4f5c": 9, "\u6280\u672f\u6216\u516c\u53f8\u6587\u5316\u65b9\u9762\u7684\u95ee\u9898": 9, "\u6b22\u8fce\u968f\u65f6\u8be2\u95ee": 9, "\u9009\u62e9\u6c34\u679c\u53ef\u4ee5\u6839\u636e\u4e2a\u4eba\u53e3\u5473": 9, "\u8425\u517b\u9700\u6c42\u4ee5\u53ca\u5b63\u8282\u6765\u51b3\u5b9a": 9, "\u590f\u5929": 9, "\u4e00\u4e9b\u6e05\u723d\u89e3\u6691\u7684\u6c34\u679c\u4f1a\u662f\u4e0d\u9519\u7684\u9009\u62e9": 9, "\u6bd4\u5982\u897f\u74dc": 9, "\u54c8\u5bc6\u74dc": 9, "\u8461\u8404": 9, "\u6843\u5b50\u6216\u8005\u674e\u5b50": 9, "\u5b83\u4eec\u90fd\u542b\u6709\u4e30\u5bcc\u7684\u6c34\u5206\u548c\u7ef4\u751f\u7d20": 9, "\u6709\u52a9\u4e8e\u6d88\u6691\u964d\u6e29": 9, "\u5982\u679c\u60a8\u60f3\u8981\u8865\u5145\u7ea4\u7ef4\u7d20": 9, "\u706b\u9f99\u679c\u6216\u8005\u7315\u7334\u6843\u4e5f\u662f\u5f88\u597d\u7684\u9009\u62e9": 9, "\u6700\u7ec8": 9, "\u9009\u62e9\u54ea\u79cd\u6c34\u679c": 9, "\u8fd8\u662f\u8981\u770b\u60a8\u81ea\u5df1\u7684\u559c\u597d\u548c\u8eab\u4f53\u72b6\u51b5": 9, "\u897f\u74dc\u662f\u590f\u5b63\u7684\u7406\u60f3\u9009\u62e9": 9, "\u5b83\u4e0d\u4ec5\u6e05\u51c9\u89e3\u6e34": 9, "\u8fd8\u542b\u6709\u5927\u91cf\u7684\u6c34\u5206\u548c\u7535\u89e3\u8d28": 9, "\u53ef\u4ee5\u5e2e\u52a9\u8eab\u4f53\u8865\u5145\u6d41\u5931\u7684\u6c34\u5206": 9, "\u897f\u74dc\u8fd8\u5bcc\u542b\u7ef4\u751f\u7d20c": 9, "a\u548c\u6297\u6c27\u5316\u5242": 9, "\u5982\u756a\u8304\u7ea2\u7d20": 9, "\u5bf9\u76ae\u80a4\u5065\u5eb7\u548c\u5fc3\u8840\u7ba1\u7cfb\u7edf\u90fd\u6709\u76ca\u5904": 9, "\u4eab\u7528\u7f8e\u5473\u7684\u897f\u74dc\u65f6": 9, "\u8bb0\u5f97\u5207\u5757\u540e\u51b7\u85cf\u4e00\u4e0b": 9, "\u53e3\u611f\u4f1a\u66f4\u52a0\u6e05\u723d\u54e6": 9, "\u751f\u65e5\u5feb\u4e50": 9, "\u613f\u4f60\u7684\u6bcf\u4e00\u5929\u90fd\u5982\u86cb\u7cd5\u822c\u751c\u871c": 9, "\u7b11\u5bb9\u6bd4\u70db\u5149\u66f4\u707f\u70c2": 9, "\u7528\u6237\u7231\u597d\u5f39\u7434": 9, "\u7528\u6237\u5728\u963f\u91cc\u5df4\u5df4\u5de5\u4f5c": 9, "\u7528\u6237\u559c\u6b22\u5403\u897f\u74dc": 9, "\u4ece\u7528\u6237\u76847\u6761\u804a\u5929\u6d88\u606f\u4e2d\u63d0\u53d6\u4e863\u6761": 9, "\u5176\u4f59\u65e0\u6548\u7684\u4fe1\u606f\u88ab\u8fc7\u6ee4\u6389\u4e86": 9, "\u6211\u4eec\u5c1d\u8bd5\u66f4\u591a\u7684\u60c5\u51b5": 9, "\u4ee5\u6d4b\u8bd5\u5176\u65f6\u95f4\u611f\u77e5\u80fd\u529b\u548c\u8fc7\u6ee4\u7528\u6237\u865a\u6784\u7684\u5185\u5bb9\u7684\u80fd\u529b": 9, "\u5047\u5982\u6211\u53bb\u4eac\u4e1c\u5de5\u4f5c": 9, "\u524d\u666f\u600e\u4e48\u6837": 9, "\u56de\u7b548": 9, "\u8bb0\u4e00\u4e0b": 9, "\u4e0b\u5468\u6211\u51c6\u5907\u53bb\u5317\u4eac\u51fa\u5dee": 9, "\u56de\u7b549": 9, "\u6211\u540c\u5b66\u674e\u4e9a\u5e73\u73b0\u5728\u5728\u4e9a\u9a6c\u900a\u5de5\u4f5c": 9, "\u4ed6\u4e0b\u4e2a\u6708\u56de\u4e0a\u6d77": 9, "\u6211\u8981\u548c\u4ed6\u5403\u4e2a\u996d": 9, "\u56de\u7b5410": 9, "\u5c0f\u4eae\u662f\u6211\u6700\u597d\u7684\u670b\u53cb": 9, "\u4ed6\u51b3\u5b9a\u53bb\u5c71\u897f\u4e0a\u5927\u5b66": 9, "\u4ee5\u8fd9\u4e2a\u4e3a\u5f00\u5934\u5199\u4e00\u4e2a80\u5b57\u7684\u5fae\u5267\u672c": 9, "\u56de\u7b5411": 9, "smci\u662f\u4ec0\u4e48\u516c\u53f8": 9, "\u505a\u4ec0\u4e48\u7684": 9, "\u56de\u7b5412": 9, "\u4eac\u4e1c\u4f5c\u4e3a\u4e2d\u56fd\u9886\u5148\u7684\u7535\u5546\u5e73\u53f0\u4e4b\u4e00": 9, "\u62e5\u6709\u5e7f\u6cdb\u7684\u4e1a\u52a1\u8303\u56f4\u548c\u826f\u597d\u7684\u884c\u4e1a\u58f0\u8a89": 9, "\u52a0\u5165\u4eac\u4e1c\u5de5\u4f5c": 9, "\u60a8\u53ef\u80fd\u4f1a\u4eab\u53d7\u5230\u4ee5\u4e0b\u51e0\u65b9\u9762\u7684\u524d\u666f\u4f18\u52bf": 9, "\u804c\u4e1a\u53d1\u5c55": 9, "\u4eac\u4e1c\u63d0\u4f9b\u591a\u5143\u5316\u7684\u804c\u4e1a\u8def\u5f84\u548c\u664b\u5347\u673a\u4f1a": 9, "\u60a8\u53ef\u4ee5\u5728\u7535\u5546": 9, "\u7269\u6d41": 9, "\u79d1\u6280": 9, "\u91d1\u878d\u7b49\u591a\u4e2a\u9886\u57df\u627e\u5230\u9002\u5408\u81ea\u5df1\u7684\u4f4d\u7f6e\u548c\u53d1\u5c55\u7a7a\u95f4": 9, "\u6280\u672f\u4e0e\u521b\u65b0": 9, "\u4eac\u4e1c\u6301\u7eed\u6295\u5165\u4e8e\u6280\u672f\u521b\u65b0": 9, "\u5c24\u5176\u662f\u5728\u4eba\u5de5\u667a\u80fd": 9, "\u5927\u6570\u636e": 9, "\u4e91\u8ba1\u7b97\u7b49\u65b9\u9762": 9, "\u4e3a\u5458\u5de5\u63d0\u4f9b\u4e86\u63a5\u89e6\u548c\u5b66\u4e60\u524d\u6cbf\u6280\u672f\u7684\u673a\u4f1a": 9, "\u4f01\u4e1a\u6587\u5316": 9, "\u4eac\u4e1c\u5f3a\u8c03": 9, "\u6b63\u9053\u6210\u529f": 9, "\u7684\u4f01\u4e1a\u6587\u5316": 9, "\u6ce8\u91cd\u8bda\u4fe1": 9, "\u56e2\u961f\u5408\u4f5c\u4e0e\u793e\u4f1a\u8d23\u4efb": 9, "\u6709\u5229\u4e8e\u5851\u9020\u79ef\u6781\u5411\u4e0a\u7684\u5de5\u4f5c\u6c1b\u56f4": 9, "\u798f\u5229\u5f85\u9047": 9, "\u4eac\u4e1c\u901a\u5e38\u4e3a\u5458\u5de5\u63d0\u4f9b\u6709\u7ade\u4e89\u529b\u7684\u85aa\u916c\u798f\u5229\u4f53\u7cfb": 9, "\u5305\u62ec\u4f46\u4e0d\u9650\u4e8e\u5065\u5eb7\u4fdd\u9669": 9, "\u5458\u5de5\u57f9\u8bad": 9, "\u80a1\u6743\u6fc0\u52b1\u7b49": 9, "\u884c\u4e1a\u5f71\u54cd\u529b": 9, "\u4f5c\u4e3a\u884c\u4e1a\u5de8\u5934": 9, "\u4eac\u4e1c\u7684\u4ece\u4e1a\u7ecf\u5386\u5bf9\u60a8\u7684\u804c\u4e1a\u751f\u6daf\u5c06\u662f\u4e00\u5927\u4eae\u70b9": 9, "\u6709\u52a9\u4e8e\u63d0\u5347\u4e2a\u4eba\u54c1\u724c\u548c\u672a\u6765\u7684\u804c\u4e1a\u9009\u62e9\u7075\u6d3b\u6027": 9, "\u5f53\u7136": 9, "\u5177\u4f53\u524d\u666f\u8fd8\u53d6\u51b3\u4e8e\u60a8\u7684\u804c\u4f4d": 9, "\u4e2a\u4eba\u80fd\u529b": 9, "\u884c\u4e1a\u8d8b\u52bf\u53ca\u4e2a\u4eba\u804c\u4e1a\u89c4\u5212\u7b49\u56e0\u7d20": 9, "\u5efa\u8bae\u60a8\u6df1\u5165\u4e86\u89e3\u76ee\u6807\u5c97\u4f4d\u7684\u5177\u4f53\u8981\u6c42": 9, "\u8bc4\u4f30\u4e2a\u4eba\u4e0e\u5c97\u4f4d\u7684\u5339\u914d\u5ea6": 9, "\u5e76\u5173\u6ce8\u884c\u4e1a\u52a8\u6001": 9, "\u4e3a\u81ea\u5df1\u7684\u804c\u4e1a\u53d1\u5c55\u505a\u51fa\u5408\u7406\u89c4\u5212": 9, "\u597d\u7684": 9, "\u5df2\u8bb0\u5f55\u60a8\u8ba1\u5212\u4e0b\u5468\u53bb\u5317\u4eac\u51fa\u5dee": 9, "\u8bf7\u968f\u65f6\u544a\u8bc9\u6211\u5982\u679c\u60a8\u9700\u8981\u5173\u4e8e\u5317\u4eac\u7684\u51fa\u884c\u5efa\u8bae": 9, "\u5929\u6c14\u9884\u62a5\u6216\u662f\u5176\u4ed6\u76f8\u5173\u4fe1\u606f": 9, "\u795d\u60a8\u51fa\u5dee\u987a\u5229": 9, "\u5df2\u8bb0\u5f55\u60a8\u7684\u5b89\u6392": 9, "\u60a8\u5c06\u4e8e\u4e0b\u4e2a\u6708\u4e0e\u5728\u4e9a\u9a6c\u900a\u5de5\u4f5c\u7684\u540c\u5b66\u674e\u4e9a\u5e73\u5728\u4e0a\u6d77\u5171\u8fdb\u665a\u9910": 9, "\u4e34\u8fd1\u65e5\u671f\u65f6": 9, "\u4e0d\u59a8\u63d0\u524d\u8054\u7cfb\u674e\u4e9a\u5e73\u786e\u8ba4\u5177\u4f53\u65f6\u95f4\u548c\u5730\u70b9": 9, "\u4ee5\u4fbf\u6109\u5feb\u5730\u8fdb\u884c\u805a\u4f1a": 9, "\u5e0c\u671b\u4f60\u4eec\u6709\u4e2a\u7f8e\u597d\u7684\u91cd\u805a": 9, "\u573a\u666f": 9, "\u508d\u665a": 9, "\u516c\u56ed\u957f\u6905": 9, "\u5915\u9633\u4e0b": 9, "\u6211\u4eec\u80a9\u5e76\u80a9\u5750\u7740": 9, "\u6211": 9, "\u5c71\u897f\u7684\u9762\u98df\u53ef\u51fa\u540d\u4e86": 9, "\u4f60\u8fd9\u5c0f\u5403\u8d27\u6709\u798f\u4e86": 9, "\u5c0f\u4eae\u7b11": 9, "\u90a3\u5fc5\u987b\u7684": 9, "\u8bf4\u597d\u4f60\u653e\u5047\u5c31\u6765\u627e\u6211": 9, "\u54b1\u4eec\u4e00\u8d77\u5403\u904d\u5c71\u897f": 9, "\u6211\u70b9\u5934": 9, "\u5fc3\u4e2d\u6cdb\u8d77\u4e0d\u820d": 9, "\u4e00\u8a00\u4e3a\u5b9a": 9, "\u522b\u5fd8\u4e86": 9, "\u90a3\u91cc\u8fd8\u6709\u5343\u5e74\u53e4\u57ce\u7b49\u4f60\u63a2\u7d22": 9, "\u5c0f\u4eae\u770b\u5411\u8fdc\u65b9": 9, "\u773c\u91cc\u95ea\u70c1\u7740\u68a6\u60f3\u7684\u5149": 9, "\u65b0\u65c5\u7a0b": 9, "\u6211\u4eec\u4e00\u8d77\u52a0\u6cb9": 9, "\u753b\u9762\u6e10\u6697": 9, "\u53cb\u60c5\u7684\u529b\u91cf\u6e29\u6696\u800c\u575a\u5b9a": 9, "smci\u53ef\u80fd\u6307\u4ee3\u7684\u662fsup": 9, "comput": 9, "inc": 9, "\u8d85\u5fae\u7535\u8111\u80a1\u4efd\u6709\u9650\u516c\u53f8": 9, "\u7b80\u79f0supermicro": 9, "\u8fd9\u662f\u4e00\u5bb6\u603b\u90e8\u4f4d\u4e8e\u7f8e\u56fd\u52a0\u5229\u798f\u5c3c\u4e9a\u5dde\u5723\u4f55\u585e\u7684\u516c\u53f8": 9, "\u6210\u7acb\u4e8e1993\u5e74": 9, "supermicro\u4e3b\u8981\u8bbe\u8ba1": 9, "\u5236\u9020\u548c\u9500\u552e\u9ad8\u6027\u80fd\u670d\u52a1\u5668\u548c\u6280\u672f\u89e3\u51b3\u65b9\u6848": 9, "\u5305\u62ec\u670d\u52a1\u5668": 9, "\u5b58\u50a8\u7cfb\u7edf": 9, "\u4e3b\u677f\u4ee5\u53ca\u652f\u6301\u4e91\u8ba1\u7b97": 9, "\u6570\u636e\u4e2d\u5fc3": 9, "\u4f01\u4e1ait": 9, "\u9ad8\u6027\u80fd\u8ba1\u7b97": 9, "hpc": 9, "\u548c\u5d4c\u5165\u5f0f\u7cfb\u7edf\u7684\u5176\u4ed6\u786c\u4ef6\u7ec4\u4ef6": 9, "\u5b83\u4eec\u7684\u4ea7\u54c1\u4ee5\u9ad8\u6548\u7387": 9, "\u7075\u6d3b\u6027\u548c\u5b9a\u5236\u5316\u9009\u9879\u8457\u79f0": 9, "\u5728\u5168\u7403\u8303\u56f4\u5185\u670d\u52a1\u4e8e\u5404\u79cd\u89c4\u6a21\u7684\u4f01\u4e1a\u548c\u7ec4\u7ec7": 9, "\u7528\u6237\u8ba1\u52122024\u5e748\u67089\u65e5\u53bb\u5317\u4eac\u51fa\u5dee": 9, "\u63a8\u65ad\u65f6\u95f4": 9, "2024\u5e748\u67089\u65e5": 9, "\u7528\u6237\u7684\u540c\u5b66\u674e\u4e9a\u5e73\u4e0b\u4e2a\u6708\u56de\u4e0a\u6d77": 9, "\u7528\u6237\u5c06\u4e0e\u5176\u89c1\u9762\u5403\u996d": 9, "2024\u5e749\u6708": 9, "\u6211\u4eec\u53ef\u4ee5\u770b\u5230": 9, "\u6210\u529f\u8fc7\u6ee4\u6389\u4e86\u865a\u5047\u5185\u5bb9": 9, "\u5e76\u5c55\u793a\u4e86\u826f\u597d\u7684\u65f6\u95f4\u654f\u611f\u6027": 9, "\u4ee5\u6d4b\u8bd5\u5176\u89e3\u51b3\u51b2\u7a81\u5185\u5bb9\u7684\u80fd\u529b": 9, "\u56de\u7b5413": 9, "\u897f\u74dc\u786e\u5b9e\u4e0d\u9519": 9, "\u4f46\u662f\u6211\u4e5f\u559c\u6b22\u5403\u8292\u679c": 9, "\u6211\u4eca\u5929\u60f3\u5403\u8292\u679c": 9, "\u56de\u7b5414": 9, "\u6211\u6700\u8fd1\u8df3\u69fd\u53bb\u4e86\u7f8e\u56e2": 9, "\u56de\u7b5415": 9, "\u6211\u8fd8\u559c\u6b22\u5403\u6843\u5b50\u548c\u82f9\u679c": 9, "\u56de\u7b5416": 9, "\u6211\u4e0d\u559c\u6b22\u5403\u6930\u5b50": 9, "\u56de\u7b5417": 9, "\u6211\u51c6\u5907\u4e0b\u4e2a\u6708\u53bb\u6d77\u5357\u51b2\u6d6a": 9, "\u56de\u7b5418": 9, "\u660e\u5929\u662f\u6211\u751f\u65e5": 9, "\u56de\u7b5419": 9, "\u65e2\u7136\u60a8\u559c\u6b22\u5403\u897f\u74dc": 9, "\u4eca\u5929\u4e0b\u5348\u5403\u897f\u74dc\u662f\u4e2a\u4e0d\u9519\u7684\u9009\u62e9": 9, "\u90a3\u592a\u597d\u4e86": 9, "\u5982\u679c\u60a8\u4eca\u5929\u60f3\u6362\u6362\u53e3\u5473": 9, "\u5403\u8292\u679c\u4e5f\u662f\u5f88\u597d\u7684\u9009\u62e9": 9, "\u4eab\u53d7\u5b83\u7684\u9999\u751c\u5427": 9, "\u606d\u559c\u60a8\u52a0\u5165\u7f8e\u56e2": 9, "\u5e0c\u671b\u60a8\u7684\u65b0\u5de5\u4f5c\u4e00\u5207\u987a\u5229": 9, "\u6709\u65b0\u7684\u6311\u6218\u548c\u673a\u9047": 9, "\u4e86\u89e3\u4e86": 9, "\u6843\u5b50\u548c\u82f9\u679c\u90fd\u662f\u65e2\u8425\u517b\u53c8\u7f8e\u5473\u7684\u9009\u62e9": 9, "\u591a\u5403\u6c34\u679c\u5bf9\u8eab\u4f53\u6709\u76ca": 9, "\u60a8\u53ef\u4ee5\u6839\u636e\u5b63\u8282\u548c\u4e2a\u4eba\u559c\u597d\u6765\u6311\u9009": 9, "\u77e5\u9053\u60a8\u4e0d\u559c\u6b22\u6930\u5b50": 9, "\u4ee5\u540e\u5728\u63a8\u8350\u6c34\u679c\u65f6\u4f1a\u7559\u610f\u8fd9\u4e00\u70b9": 9, "\u542c\u8d77\u6765\u5f88\u6709\u8da3": 9, "\u53bb\u6d77\u5357\u51b2\u6d6a\u662f\u4e2a\u5f88\u68d2\u7684\u8ba1\u5212": 9, "\u4e0b\u4e2a\u6708\u90a3\u8fb9\u7684\u5929\u6c14\u5e94\u8be5\u5f88\u9002\u5408\u6c34\u4e0a\u6d3b\u52a8": 9, "\u795d\u60a8\u73a9\u5f97\u5f00\u5fc3": 9, "\u522b\u5fd8\u4e86\u505a\u597d\u9632\u6652\u54e6": 9, "\u5e0c\u671b\u60a8\u660e\u5929\u80fd\u5ea6\u8fc7\u4e00\u4e2a\u7279\u522b\u4e14\u96be\u5fd8\u7684\u4e00\u5929": 9, "\u6ee1\u6ee1\u7684\u795d\u798f\u7ed9\u60a8": 9, "\u6709\u4efb\u4f55\u5e86\u795d\u8ba1\u5212\u5417": 9, "\u7528\u6237\u559c\u6b22\u5403\u6843\u5b50\u548c\u82f9\u679c": 9, "\u7528\u6237\u4e0d\u559c\u6b22\u5403\u6930\u5b50": 9, "\u7528\u6237\u559c\u6b22\u5403\u8292\u679c": 9, "\u7528\u6237\u8ba1\u52122024\u5e749\u6708\u53bb\u6d77\u5357\u51b2\u6d6a": 9, "\u7528\u6237\u7684\u751f\u65e5\u662f\u6bcf\u5e748\u67083\u65e5": 9, "\u6bcf\u5e748\u67083\u65e5": 9, "expir": [9, 81, 87], "\u7528\u6237\u6700\u8fd1\u8df3\u69fd\u81f3\u7f8e\u56e2": 9, "\u6211\u4eec\u5728\u7cfb\u7edf\u4e2d\u5df2\u7ecf\u79ef\u7d2f\u4e86\u8db3\u591f\u591a\u7684\u65b0\u7684": 9, "\u56e0\u6b64\u6211\u4eec\u53ef\u4ee5\u8c03\u7528": 9, "\u8ba9\u6211\u4eec\u770b\u770b\u4f1a\u5f97\u5230\u4ec0\u4e48": 9, "\u7528\u6237\u7684\u51fa\u5dee\u8ba1\u5212": 9, "2024\u5e748\u67089\u65e5\u53bb\u5317\u4eac\u51fa\u5dee": 9, "\u7528\u6237\u7684\u751f\u65e5": 9, "\u7528\u6237\u7684\u6c34\u679c\u504f\u597d": 9, "\u559c\u6b22\u6843\u5b50": 9, "\u82f9\u679c": 9, "\u897f\u74dc": 9, "\u8292\u679c": 9, "\u4e0d\u559c\u6b22\u5403\u6930\u5b50": 9, "\u6700\u540e": 9, "\u6211\u4eec\u6d4b\u8bd5": 9, "\u7cfb\u7edf\u5bf9\u7528\u6237\u7684\u54cd\u5e94\u65f6\u95f4": 9, "\u5177\u4f53\u6765\u8bf4": 9, "\u6211\u4eec\u6d4b\u8bd5\u5728\u6709\u548c\u6ca1\u6709\u4ece\u7cfb\u7edf\u4e2d\u68c0\u7d22\u8bb0\u5fc6\u7247\u6bb5\u65f6\u804a\u5929\u7684\u54cd\u5e94\u65f6\u95f4\u7684\u5dee\u5f02": 9, "\u4f60\u77e5\u9053\u6211\u7684\u4e50\u5668\u7231\u597d\u662f\u4ec0\u4e48\u5417": 9, "\u4f7f\u7528\u8bb0\u5fc6\u68c0\u7d22": 9, "n\u56de\u7b5420": 9, "\u8017\u65f6": 9, "\u79d2": 9, "\u4f60\u77e5\u9053\u6211\u63a5\u4e0b\u53bb\u7684\u4e00\u4e2a\u6708\u5185\u6709\u4ec0\u4e48\u8ba1\u5212\u5417": 9, "n\u56de\u7b5421": 9, "\u4e0d\u4f7f\u7528\u8bb0\u5fc6\u68c0\u7d22": 9, "\u56de\u7b5420": 9, "\u60a8\u559c\u6b22\u5f39\u7434": 9, "3783161640167236\u79d2": 9, "\u56de\u7b5421": 9, "\u60a8\u63a5\u4e0b\u6765\u4e00\u4e2a\u6708\u5185\u7684\u8ba1\u5212\u5305\u62ec": 9, "\u8ba1\u5212\u57282024\u5e749\u6708\u53bb\u6d77\u5357\u51b2\u6d6a": 9, "\u60a8\u7684\u540c\u5b66\u674e\u4e9a\u5e73\u56de\u4e0a\u6d77": 9, "\u60a8\u5c06\u4e0e\u4ed6\u89c1\u9762\u5403\u996d": 9, "538439035415649\u79d2": 9, "\u5bf9\u4e0d\u8d77": 9, "\u6211\u6ca1\u6709\u8bb0\u5f55\u60a8\u7684\u4e2a\u4eba\u4fe1\u606f": 9, "\u5305\u62ec\u60a8\u7684\u4e50\u5668\u7231\u597d": 9, "\u5982\u679c\u60a8\u544a\u8bc9\u6211": 9, "\u6211\u53ef\u4ee5\u5e2e\u60a8\u8bb0\u4f4f": 9, "597784996032715\u79d2": 9, "\u4f5c\u4e3a\u57fa\u4e8e\u5f53\u524d\u4f1a\u8bdd\u7684memoryscope\u667a\u80fd\u52a9\u7406": 9, "\u6211\u65e0\u6cd5\u83b7\u53d6\u6216\u5b58\u50a8\u60a8\u7684\u4e2a\u4eba\u65e5\u7a0b\u4fe1\u606f": 9, "\u5982\u679c\u60a8\u9700\u8981\u67e5\u8be2\u81ea\u5df1\u7684\u8ba1\u5212": 9, "\u5efa\u8bae\u60a8\u67e5\u770b\u81ea\u5df1\u7684\u65e5\u5386\u6216\u8005\u5907\u5fd8\u5f55": 9, "246160984039307\u79d2": 9, "\u4ece": 9, "\u68c0\u7d22\u8bb0\u5fc6\u7247\u6bb5\u4e0d\u4f1a\u589e\u52a0\u804a\u5929\u7684\u54cd\u5e94\u65f6\u95f4": 9, "\u6211\u4eec\u5efa\u8bae\u8bfb\u8005\u53c2\u8003": 9, "\u8fdb\u9636\u81ea\u5b9a\u4e49\u7528\u6cd5": 9, "\u6765\u5bf9memoryscope\u7cfb\u7edf\u8fdb\u884c\u5404\u79cd\u81ea\u5b9a\u4e49\u8bbe\u7f6e": 9, "\u60a8\u8fd8\u53ef\u4ee5\u901a\u8fc7\u81ea\u5b9a\u4e49": 9, "\u548c\u5bf9\u5e94\u7684": 9, "\u6765\u521b\u5efa\u6216\u5b9a\u5236\u6ee1\u8db3\u60a8\u7279\u5b9a\u9700\u6c42\u7684": 9, "\u6b64\u5916": 9, "\u60a8\u8fd8\u53ef\u4ee5\u5c1d\u8bd5\u4f7f\u7528": 9, "\u5728\u547d\u4ee4\u884c\u4e0ememoryscope\u804a\u5929\u673a\u5668\u4eba\u4ea4\u4e92": 9, "\u6211\u4eec\u5728\u8fd9\u91cc\u5b9e\u73b0\u4e86\u59cb\u7ec8\u5728\u540e\u53f0\u5f02\u6b65\u8fd0\u884c": 9, "\u8fd9\u4e24\u4e2a\u64cd\u4f5c": 9, "\u4ece\u800c\u4f7f\u5f97\u5b83\u4eec\u4e0d\u4f1a\u589e\u52a0\u804a\u5929\u7684\u54cd\u5e94\u65f6\u95f4": 9, "two": 10, "via": 10, "path": 10, "altern": 10, "paramet": 10, "directli": 10, "either": 10, "manag": 10, "chat": [10, 12, 81, 85], "histori": 10, "human": 10, "model": [10, 12, 81, 86], "boolean": 10, "dummi": 10, "ranker": 10, "\u5728\u8fd0\u884c\u4e4b\u524d": 11, "\u53ef\u4ee5\u901a\u8fc7\u4e24\u79cd\u4e0d\u540c\u7684\u65b9\u5f0f\u542f\u52a8": 11, "\u5982\u679c\u60a8\u66f4\u559c\u6b22\u901a\u8fc7": 11, "\u6587\u4ef6\u914d\u7f6e\u8bbe\u7f6e": 11, "\u53ef\u4ee5\u901a\u8fc7\u63d0\u4f9b\u914d\u7f6e\u6587\u4ef6\u7684\u8def\u5f84\u6765\u5b9e\u73b0": 11, "\u6216\u8005": 11, "\u60a8\u53ef\u4ee5\u76f4\u63a5\u5728\u547d\u4ee4\u884c\u4e0a\u6307\u5b9a\u6240\u6709\u53c2\u6570": 11, "\u82f1\u6587": 11, "\u4ee5\u4e0b\u662f\u53ef\u4ee5\u901a\u8fc7\u4efb\u4e00\u65b9\u6cd5\u8bbe\u7f6e\u7684\u53ef\u7528\u9009\u9879": 11, "\u5bf9\u8bdd\u4e2d\u4f7f\u7528\u7684\u8bed\u8a00": 11, "\u7ba1\u7406\u804a\u5929\u8bb0\u5f55\u7684\u7c7b\u540d": 11, "\u4eba\u7c7b\u7528\u6237\u7684\u540d\u5b57": 11, "\u52a9\u624b\u7684\u540d\u5b57": 11, "\u7528\u4e8e\u751f\u6210\u56de\u590d\u7684\u540e\u7aef": 11, "\u7528\u4e8e\u751f\u6210\u56de\u590d\u7684\u6a21\u578b": 11, "\u7528\u4e8e\u6587\u672c\u5d4c\u5165\u7684\u540e\u7aef": 11, "\u7528\u4e8e\u521b\u5efa\u6587\u672c\u5d4c\u5165\u7684\u6a21\u578b": 11, "\u4e00\u4e2a\u5e03\u5c14\u503c": 11, "\u6307\u793a\u662f\u5426\u4f7f\u7528\u6392\u540d\u5668": 11, "\u9ed8\u8ba4\u4e3a": 11, "\u7528\u4e8e\u6392\u540d\u56de\u590d\u7684\u540e\u7aef": 11, "\u7528\u4e8e\u6392\u540d\u56de\u590d\u7684\u6a21\u578b": 11, "contribut": 12, "citat": 12, "ii": 12, "compos": 12, "iii": 12, "iv": 12, "initi": 12, "instanc": 12, "without": 12, "report": 12, "bug": 12, "ask": 12, "codebas": 12, "enumer": 12, "scheme": 12, "storag": 12, "str": [81, 82, 83, 84, 85, 86, 87], "enum": [81, 82, 83, 84, 85, 86, 87]}, "objects": {"memoryscope": [[14, 0, 0, "-", "constants"], [81, 0, 0, "-", "enumeration"]], "memoryscope.constants": [[15, 0, 0, "-", "common_constants"], [16, 0, 0, "-", "language_constants"]], "memoryscope.enumeration": [[81, 1, 1, "", "ActionStatusEnum"], [81, 1, 1, "", "LanguageEnum"], [81, 1, 1, "", "MemoryTypeEnum"], [81, 1, 1, "", "MessageRoleEnum"], [81, 1, 1, "", "ModelEnum"], [81, 1, 1, "", "StoreStatusEnum"], [82, 0, 0, "-", "action_status_enum"], [83, 0, 0, "-", "language_enum"], [84, 0, 0, "-", "memory_type_enum"], [85, 0, 0, "-", "message_role_enum"], [86, 0, 0, "-", "model_enum"], [87, 0, 0, "-", "store_status_enum"]], "memoryscope.enumeration.ActionStatusEnum": [[81, 2, 1, "", "CONTENT_MODIFIED"], [81, 2, 1, "", "DELETE"], [81, 2, 1, "", "MODIFIED"], [81, 2, 1, "", "NEW"], [81, 2, 1, "", "NONE"]], "memoryscope.enumeration.LanguageEnum": [[81, 2, 1, "", "CN"], [81, 2, 1, "", "EN"]], "memoryscope.enumeration.MemoryTypeEnum": [[81, 2, 1, "", "CONVERSATION"], [81, 2, 1, "", "INSIGHT"], [81, 2, 1, "", "OBSERVATION"], [81, 2, 1, "", "OBS_CUSTOMIZED"]], "memoryscope.enumeration.MessageRoleEnum": [[81, 2, 1, "", "ASSISTANT"], [81, 2, 1, "", "SYSTEM"], [81, 2, 1, "", "USER"]], "memoryscope.enumeration.ModelEnum": [[81, 2, 1, "", "EMBEDDING_MODEL"], [81, 2, 1, "", "GENERATION_MODEL"], [81, 2, 1, "", "RANK_MODEL"]], "memoryscope.enumeration.StoreStatusEnum": [[81, 2, 1, "", "EXPIRED"], [81, 2, 1, "", "VALID"]], "memoryscope.enumeration.action_status_enum": [[82, 1, 1, "", "ActionStatusEnum"]], "memoryscope.enumeration.action_status_enum.ActionStatusEnum": [[82, 2, 1, "", "CONTENT_MODIFIED"], [82, 2, 1, "", "DELETE"], [82, 2, 1, "", "MODIFIED"], [82, 2, 1, "", "NEW"], [82, 2, 1, "", "NONE"]], "memoryscope.enumeration.language_enum": [[83, 1, 1, "", "LanguageEnum"]], "memoryscope.enumeration.language_enum.LanguageEnum": [[83, 2, 1, "", "CN"], [83, 2, 1, "", "EN"]], "memoryscope.enumeration.memory_type_enum": [[84, 1, 1, "", "MemoryTypeEnum"]], "memoryscope.enumeration.memory_type_enum.MemoryTypeEnum": [[84, 2, 1, "", "CONVERSATION"], [84, 2, 1, "", "INSIGHT"], [84, 2, 1, "", "OBSERVATION"], [84, 2, 1, "", "OBS_CUSTOMIZED"]], "memoryscope.enumeration.message_role_enum": [[85, 1, 1, "", "MessageRoleEnum"]], "memoryscope.enumeration.message_role_enum.MessageRoleEnum": [[85, 2, 1, "", "ASSISTANT"], [85, 2, 1, "", "SYSTEM"], [85, 2, 1, "", "USER"]], "memoryscope.enumeration.model_enum": [[86, 1, 1, "", "ModelEnum"]], "memoryscope.enumeration.model_enum.ModelEnum": [[86, 2, 1, "", "EMBEDDING_MODEL"], [86, 2, 1, "", "GENERATION_MODEL"], [86, 2, 1, "", "RANK_MODEL"]], "memoryscope.enumeration.store_status_enum": [[87, 1, 1, "", "StoreStatusEnum"]], "memoryscope.enumeration.store_status_enum.StoreStatusEnum": [[87, 2, 1, "", "EXPIRED"], [87, 2, 1, "", "VALID"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"]}, "titleterms": {"memoryscop": [0, 2, 3, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92], "new": [0, 2], "what": 0, "i": [0, 3], "demo": 0, "framework": [0, 12], "main": 0, "featur": [0, 2], "support": 0, "model": [0, 1, 27, 28, 29, 30, 31, 32], "api": [0, 12], "instal": [0, 3], "quick": 0, "start": 0, "contribut": [0, 2], "citat": 0, "enumer": [1, 81, 82, 83, 84, 85, 86, 87], "scheme": [1, 88, 89, 90, 91], "config": [1, 22, 23, 24], "storag": [1, 42, 43, 44, 45, 46, 47, 48], "worker": [1, 4, 5, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80], "base": 1, "frontend": [1, 71, 72, 73, 74, 75, 76, 77, 78], "backend": [1, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68], "oper": [1, 4, 5, 33, 34, 35, 36, 37, 38], "servic": [1, 8, 9, 39, 40, 41], "chat": [1, 8, 9, 18, 19, 20, 21], "report": 2, "bug": 2, "ask": 2, "For": 2, "codebas": 2, "fork": 2, "clone": 2, "repositori": 2, "creat": 2, "branch": 2, "make": 2, "chang": 2, "commit": 2, "your": 2, "submit": 2, "pull": 2, "request": 2, "code": 2, "review": 2, "docker": 3, "recommend": 3, "ii": 3, "compos": 3, "iii": 3, "from": 3, "pypi": 3, "iv": 3, "sourc": 3, "custom": 4, "\u81ea\u5b9a\u4e49": 5, "\u548c": [5, 9], "work": [6, 7], "agentscop": 6, "autogen": 7, "exampl": 8, "usag": [8, 10], "interfac": [8, 10], "initi": 8, "instanc": 8, "without": 8, "memori": 8, "consolid": 8, "reflect": 8, "re": 8, "low": 8, "respons": 8, "time": 8, "rt": [8, 9], "user": 8, "more": 8, "\u63a5\u53e3\u7684\u793a\u4f8b\u7528\u6cd5": 9, "\u521d\u59cb\u5316\u4e00\u4e2a": 9, "\u5b9e\u4f8b": 9, "\u804a\u5929": 9, "\u4e0d\u542b\u8bb0\u5fc6": 9, "\u8bb0\u5fc6\u5de9\u56fa": 9, "\u53cd\u601d\u4e0e\u518d\u5de9\u56fa": 9, "\u4f4e\u7528\u6237\u65f6\u5ef6": 9, "\u66f4\u591a\u7528\u6cd5": 9, "The": 10, "cli": 10, "1": [10, 11], "us": 10, "yaml": [10, 11], "configur": 10, "file": 10, "2": [10, 11], "command": 10, "line": 10, "argument": [10, 23], "\u7684\u547d\u4ee4\u884c\u63a5\u53e3": 11, "\u4f7f\u7528\u65b9\u6cd5": 11, "\u4f7f\u7528": 11, "\u914d\u7f6e\u6587\u4ef6": 11, "\u4f7f\u7528\u547d\u4ee4\u884c\u53c2\u6570": 11, "document": 12, "welcom": 12, "tutori": 12, "refer": 12, "constant": [14, 15, 16], "common_const": 15, "language_const": 16, "core": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80], "api_memory_chat": 19, "base_memory_chat": 20, "cli_memory_chat": 21, "config_manag": 24, "memoryscope_context": 26, "base_model": 28, "dummy_generation_model": 29, "llama_index_embedding_model": 30, "llama_index_generation_model": 31, "llama_index_rank_model": 32, "backend_oper": 34, "base_oper": 35, "base_workflow": 36, "consolidate_memory_op": 37, "frontend_oper": 38, "base_memory_servic": 40, "memory_scope_servic": 41, "base_memory_stor": 43, "base_monitor": 44, "dummy_memory_stor": 45, "dummy_monitor": 46, "llama_index_es_memory_stor": 47, "llama_index_sync_elasticsearch": 48, "util": [49, 50, 51, 52, 53, 54, 55, 56, 57], "datetime_handl": 50, "logger": 51, "prompt_handl": 52, "registri": 53, "response_text_pars": 54, "singleton": 55, "timer": 56, "tool_funct": 57, "contra_repeat_work": 60, "get_observation_with_time_work": 61, "get_observation_work": 62, "get_reflection_subject_work": 63, "info_filter_work": 64, "load_memory_work": 65, "long_contra_repeat_work": 66, "update_insight_work": 67, "update_memory_work": 68, "base_work": 69, "dummy_work": 70, "extract_time_work": 72, "fuse_rerank_work": 73, "print_memory_work": 74, "read_message_work": 75, "retrieve_memory_work": 76, "semantic_rank_work": 77, "set_query_work": 78, "memory_base_work": 79, "memory_manag": 80, "action_status_enum": 82, "language_enum": 83, "memory_type_enum": 84, "message_role_enum": 85, "model_enum": 86, "store_status_enum": 87, "memory_nod": 89, "messag": 90, "model_respons": 91}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "nbsphinx": 4, "sphinx": 58}, "alltitles": {"MemoryScope": [[0, "memoryscope"]], "\ud83d\udcf0 News": [[0, "news"]], "\ud83c\udf1f What is MemoryScope\uff1f": [[0, "what-is-memoryscope"]], "Demo": [[0, "demo"]], "Framework": [[0, "framework"], [12, "framework"]], "Main Features": [[0, "main-features"]], "\ud83d\udcbc Supported Model API": [[0, "supported-model-api"]], "\ud83d\ude80 Installation": [[0, "installation"]], "\ud83c\udf55 Quick Start": [[0, "quick-start"]], "\ud83d\udca1 Contribute": [[0, "contribute"]], "\ud83d\udcd6 Citation": [[0, "citation"]], "Enumeration": [[1, "module-memoryscope.enumeration"]], "Scheme": [[1, "scheme"]], "Config": [[1, "config"]], "Models": [[1, "models"]], "Storage": [[1, "storage"]], "Worker": [[1, "worker"]], "Base": [[1, "base"]], "Frontend": [[1, "frontend"]], "Backend": [[1, "backend"]], "Operation": [[1, "operation"]], "Service": [[1, "service"]], "Chat": [[1, "chat"]], "Contribute to MemoryScope": [[2, "contribute-to-memoryscope"]], "Report Bugs and Ask For New Features?": [[2, "report-bugs-and-ask-for-new-features"]], "Contribute to Codebase": [[2, "contribute-to-codebase"]], "Fork and Clone the Repository": [[2, "fork-and-clone-the-repository"]], "Create a New Branch": [[2, "create-a-new-branch"]], "Making Changes": [[2, "making-changes"]], "Commit Your Changes": [[2, "commit-your-changes"]], "Submit a Pull Request": [[2, "submit-a-pull-request"]], "Code Review": [[2, "code-review"]], "Installing MemoryScope": [[3, "installing-memoryscope"]], "I. Install with docker [Recommended]": [[3, "i-install-with-docker-recommended"]], "II. Install with docker compose [Recommended]": [[3, "ii-install-with-docker-compose-recommended"]], "III. Install from PyPI": [[3, "iii-install-from-pypi"]], "IV. Install from source": [[3, "iv-install-from-source"]], "Custom Operator and Worker": [[4, "custom-operator-and-worker"]], "\u81ea\u5b9a\u4e49 Operator \u548c Worker": [[5, "operator-worker"]], "Working with AgentScope": [[6, "working-with-agentscope"]], "Working with AutoGen": [[7, "working-with-autogen"]], "Example usages of chat and service interfaces": [[8, "Example-usages-of-chat-and-service-interfaces"]], "Initiate a MemoryScope instance": [[8, "Initiate-a-MemoryScope-instance"]], "Chat without memory": [[8, "Chat-without-memory"]], "Memory Consolidation": [[8, "Memory-Consolidation"]], "Reflection and Re-Consolidation": [[8, "Reflection-and-Re-Consolidation"]], "Low response-time (RT) for the user": [[8, "Low-response-time-(RT)-for-the-user"]], "More Examples": [[8, "More-Examples"]], "chat \u548c service \u63a5\u53e3\u7684\u793a\u4f8b\u7528\u6cd5": [[9, "chat-\u548c-service-\u63a5\u53e3\u7684\u793a\u4f8b\u7528\u6cd5"]], "\u521d\u59cb\u5316\u4e00\u4e2a MemoryScope \u5b9e\u4f8b": [[9, "\u521d\u59cb\u5316\u4e00\u4e2a-MemoryScope-\u5b9e\u4f8b"]], "\u804a\u5929\uff08\u4e0d\u542b\u8bb0\u5fc6\uff09": [[9, "\u804a\u5929\uff08\u4e0d\u542b\u8bb0\u5fc6\uff09"]], "\u8bb0\u5fc6\u5de9\u56fa": [[9, "\u8bb0\u5fc6\u5de9\u56fa"]], "\u53cd\u601d\u4e0e\u518d\u5de9\u56fa": [[9, "\u53cd\u601d\u4e0e\u518d\u5de9\u56fa"]], "\u4f4e\u7528\u6237\u65f6\u5ef6\uff08RT\uff09": [[9, "\u4f4e\u7528\u6237\u65f6\u5ef6\uff08RT\uff09"]], "\u66f4\u591a\u7528\u6cd5": [[9, "\u66f4\u591a\u7528\u6cd5"]], "The Cli Interface of MemoryScope": [[10, "the-cli-interface-of-memoryscope"]], "Usage": [[10, "usage"]], "1. Using YAML Configuration File": [[10, "using-yaml-configuration-file"]], "2. Using Command Line Arguments": [[10, "using-command-line-arguments"]], "MemoryScope \u7684\u547d\u4ee4\u884c\u63a5\u53e3": [[11, "memoryscope"]], "\u4f7f\u7528\u65b9\u6cd5": [[11, "id1"]], "1. \u4f7f\u7528 YAML \u914d\u7f6e\u6587\u4ef6": [[11, "yaml"]], "2. \u4f7f\u7528\u547d\u4ee4\u884c\u53c2\u6570": [[11, "id2"]], "MemoryScope Documentation": [[12, "memoryscope-documentation"]], "Welcome to MemoryScope Tutorial": [[12, "welcome-to-memoryscope-tutorial"]], "MemoryScope Tutorial": [[12, null]], "MemoryScope API Reference": [[12, null]], "memoryscope": [[13, "memoryscope"], [92, "memoryscope"]], "memoryscope.constants": [[14, "module-memoryscope.constants"]], "memoryscope.constants.common_constants": [[15, "module-memoryscope.constants.common_constants"]], "memoryscope.constants.language_constants": [[16, "module-memoryscope.constants.language_constants"]], "memoryscope.core": [[17, "memoryscope-core"]], "memoryscope.core.chat": [[18, "memoryscope-core-chat"]], "memoryscope.core.chat.api_memory_chat": [[19, "memoryscope-core-chat-api-memory-chat"]], "memoryscope.core.chat.base_memory_chat": [[20, "memoryscope-core-chat-base-memory-chat"]], "memoryscope.core.chat.cli_memory_chat": [[21, "memoryscope-core-chat-cli-memory-chat"]], "memoryscope.core.config": [[22, "memoryscope-core-config"]], "memoryscope.core.config.arguments": [[23, "memoryscope-core-config-arguments"]], "memoryscope.core.config.config_manager": [[24, "memoryscope-core-config-config-manager"]], "memoryscope.core.memoryscope": [[25, "memoryscope-core-memoryscope"]], "memoryscope.core.memoryscope_context": [[26, "memoryscope-core-memoryscope-context"]], "memoryscope.core.models": [[27, "memoryscope-core-models"]], "memoryscope.core.models.base_model": [[28, "memoryscope-core-models-base-model"]], "memoryscope.core.models.dummy_generation_model": [[29, "memoryscope-core-models-dummy-generation-model"]], "memoryscope.core.models.llama_index_embedding_model": [[30, "memoryscope-core-models-llama-index-embedding-model"]], "memoryscope.core.models.llama_index_generation_model": [[31, "memoryscope-core-models-llama-index-generation-model"]], "memoryscope.core.models.llama_index_rank_model": [[32, "memoryscope-core-models-llama-index-rank-model"]], "memoryscope.core.operation": [[33, "memoryscope-core-operation"]], "memoryscope.core.operation.backend_operation": [[34, "memoryscope-core-operation-backend-operation"]], "memoryscope.core.operation.base_operation": [[35, "memoryscope-core-operation-base-operation"]], "memoryscope.core.operation.base_workflow": [[36, "memoryscope-core-operation-base-workflow"]], "memoryscope.core.operation.consolidate_memory_op": [[37, "memoryscope-core-operation-consolidate-memory-op"]], "memoryscope.core.operation.frontend_operation": [[38, "memoryscope-core-operation-frontend-operation"]], "memoryscope.core.service": [[39, "memoryscope-core-service"]], "memoryscope.core.service.base_memory_service": [[40, "memoryscope-core-service-base-memory-service"]], "memoryscope.core.service.memory_scope_service": [[41, "memoryscope-core-service-memory-scope-service"]], "memoryscope.core.storage": [[42, "memoryscope-core-storage"]], "memoryscope.core.storage.base_memory_store": [[43, "memoryscope-core-storage-base-memory-store"]], "memoryscope.core.storage.base_monitor": [[44, "memoryscope-core-storage-base-monitor"]], "memoryscope.core.storage.dummy_memory_store": [[45, "memoryscope-core-storage-dummy-memory-store"]], "memoryscope.core.storage.dummy_monitor": [[46, "memoryscope-core-storage-dummy-monitor"]], "memoryscope.core.storage.llama_index_es_memory_store": [[47, "memoryscope-core-storage-llama-index-es-memory-store"]], "memoryscope.core.storage.llama_index_sync_elasticsearch": [[48, "memoryscope-core-storage-llama-index-sync-elasticsearch"]], "memoryscope.core.utils": [[49, "memoryscope-core-utils"]], "memoryscope.core.utils.datetime_handler": [[50, "memoryscope-core-utils-datetime-handler"]], "memoryscope.core.utils.logger": [[51, "memoryscope-core-utils-logger"]], "memoryscope.core.utils.prompt_handler": [[52, "memoryscope-core-utils-prompt-handler"]], "memoryscope.core.utils.registry": [[53, "memoryscope-core-utils-registry"]], "memoryscope.core.utils.response_text_parser": [[54, "memoryscope-core-utils-response-text-parser"]], "memoryscope.core.utils.singleton": [[55, "memoryscope-core-utils-singleton"]], "memoryscope.core.utils.timer": [[56, "memoryscope-core-utils-timer"]], "memoryscope.core.utils.tool_functions": [[57, "memoryscope-core-utils-tool-functions"]], "memoryscope.core.worker": [[58, "memoryscope-core-worker"]], "memoryscope.core.worker.backend": [[59, "memoryscope-core-worker-backend"]], "memoryscope.core.worker.backend.contra_repeat_worker": [[60, "memoryscope-core-worker-backend-contra-repeat-worker"]], "memoryscope.core.worker.backend.get_observation_with_time_worker": [[61, "memoryscope-core-worker-backend-get-observation-with-time-worker"]], "memoryscope.core.worker.backend.get_observation_worker": [[62, "memoryscope-core-worker-backend-get-observation-worker"]], "memoryscope.core.worker.backend.get_reflection_subject_worker": [[63, "memoryscope-core-worker-backend-get-reflection-subject-worker"]], "memoryscope.core.worker.backend.info_filter_worker": [[64, "memoryscope-core-worker-backend-info-filter-worker"]], "memoryscope.core.worker.backend.load_memory_worker": [[65, "memoryscope-core-worker-backend-load-memory-worker"]], "memoryscope.core.worker.backend.long_contra_repeat_worker": [[66, "memoryscope-core-worker-backend-long-contra-repeat-worker"]], "memoryscope.core.worker.backend.update_insight_worker": [[67, "memoryscope-core-worker-backend-update-insight-worker"]], "memoryscope.core.worker.backend.update_memory_worker": [[68, "memoryscope-core-worker-backend-update-memory-worker"]], "memoryscope.core.worker.base_worker": [[69, "memoryscope-core-worker-base-worker"]], "memoryscope.core.worker.dummy_worker": [[70, "memoryscope-core-worker-dummy-worker"]], "memoryscope.core.worker.frontend": [[71, "memoryscope-core-worker-frontend"]], "memoryscope.core.worker.frontend.extract_time_worker": [[72, "memoryscope-core-worker-frontend-extract-time-worker"]], "memoryscope.core.worker.frontend.fuse_rerank_worker": [[73, "memoryscope-core-worker-frontend-fuse-rerank-worker"]], "memoryscope.core.worker.frontend.print_memory_worker": [[74, "memoryscope-core-worker-frontend-print-memory-worker"]], "memoryscope.core.worker.frontend.read_message_worker": [[75, "memoryscope-core-worker-frontend-read-message-worker"]], "memoryscope.core.worker.frontend.retrieve_memory_worker": [[76, "memoryscope-core-worker-frontend-retrieve-memory-worker"]], "memoryscope.core.worker.frontend.semantic_rank_worker": [[77, "memoryscope-core-worker-frontend-semantic-rank-worker"]], "memoryscope.core.worker.frontend.set_query_worker": [[78, "memoryscope-core-worker-frontend-set-query-worker"]], "memoryscope.core.worker.memory_base_worker": [[79, "memoryscope-core-worker-memory-base-worker"]], "memoryscope.core.worker.memory_manager": [[80, "memoryscope-core-worker-memory-manager"]], "memoryscope.enumeration": [[81, "module-memoryscope.enumeration"]], "memoryscope.enumeration.action_status_enum": [[82, "module-memoryscope.enumeration.action_status_enum"]], "memoryscope.enumeration.language_enum": [[83, "module-memoryscope.enumeration.language_enum"]], "memoryscope.enumeration.memory_type_enum": [[84, "module-memoryscope.enumeration.memory_type_enum"]], "memoryscope.enumeration.message_role_enum": [[85, "module-memoryscope.enumeration.message_role_enum"]], "memoryscope.enumeration.model_enum": [[86, "module-memoryscope.enumeration.model_enum"]], "memoryscope.enumeration.store_status_enum": [[87, "module-memoryscope.enumeration.store_status_enum"]], "memoryscope.scheme": [[88, "memoryscope-scheme"]], "memoryscope.scheme.memory_node": [[89, "memoryscope-scheme-memory-node"]], "memoryscope.scheme.message": [[90, "memoryscope-scheme-message"]], "memoryscope.scheme.model_response": [[91, "memoryscope-scheme-model-response"]]}, "indexentries": {"actionstatusenum (class in memoryscope.enumeration)": [[1, "memoryscope.enumeration.ActionStatusEnum"], [81, "memoryscope.enumeration.ActionStatusEnum"]], "languageenum (class in memoryscope.enumeration)": [[1, "memoryscope.enumeration.LanguageEnum"], [81, "memoryscope.enumeration.LanguageEnum"]], "memorytypeenum (class in memoryscope.enumeration)": [[1, "memoryscope.enumeration.MemoryTypeEnum"], [81, "memoryscope.enumeration.MemoryTypeEnum"]], "messageroleenum (class in memoryscope.enumeration)": [[1, "memoryscope.enumeration.MessageRoleEnum"], [81, "memoryscope.enumeration.MessageRoleEnum"]], "modelenum (class in memoryscope.enumeration)": [[1, "memoryscope.enumeration.ModelEnum"], [81, "memoryscope.enumeration.ModelEnum"]], "storestatusenum (class in memoryscope.enumeration)": [[1, "memoryscope.enumeration.StoreStatusEnum"], [81, "memoryscope.enumeration.StoreStatusEnum"]], "memoryscope.enumeration": [[1, "module-memoryscope.enumeration"], [81, "module-memoryscope.enumeration"]], "module": [[1, "module-memoryscope.enumeration"], [14, "module-memoryscope.constants"], [15, "module-memoryscope.constants.common_constants"], [16, "module-memoryscope.constants.language_constants"], [81, "module-memoryscope.enumeration"], [82, "module-memoryscope.enumeration.action_status_enum"], [83, "module-memoryscope.enumeration.language_enum"], [84, "module-memoryscope.enumeration.memory_type_enum"], [85, "module-memoryscope.enumeration.message_role_enum"], [86, "module-memoryscope.enumeration.model_enum"], [87, "module-memoryscope.enumeration.store_status_enum"]], "memoryscope.constants": [[14, "module-memoryscope.constants"]], "memoryscope.constants.common_constants": [[15, "module-memoryscope.constants.common_constants"]], "memoryscope.constants.language_constants": [[16, "module-memoryscope.constants.language_constants"]], "assistant (memoryscope.enumeration.messageroleenum attribute)": [[81, "memoryscope.enumeration.MessageRoleEnum.ASSISTANT"]], "cn (memoryscope.enumeration.languageenum attribute)": [[81, "memoryscope.enumeration.LanguageEnum.CN"]], "content_modified (memoryscope.enumeration.actionstatusenum attribute)": [[81, "memoryscope.enumeration.ActionStatusEnum.CONTENT_MODIFIED"]], "conversation (memoryscope.enumeration.memorytypeenum attribute)": [[81, "memoryscope.enumeration.MemoryTypeEnum.CONVERSATION"]], "delete (memoryscope.enumeration.actionstatusenum attribute)": [[81, "memoryscope.enumeration.ActionStatusEnum.DELETE"]], "embedding_model (memoryscope.enumeration.modelenum attribute)": [[81, "memoryscope.enumeration.ModelEnum.EMBEDDING_MODEL"]], "en (memoryscope.enumeration.languageenum attribute)": [[81, "memoryscope.enumeration.LanguageEnum.EN"]], "expired (memoryscope.enumeration.storestatusenum attribute)": [[81, "memoryscope.enumeration.StoreStatusEnum.EXPIRED"]], "generation_model (memoryscope.enumeration.modelenum attribute)": [[81, "memoryscope.enumeration.ModelEnum.GENERATION_MODEL"]], "insight (memoryscope.enumeration.memorytypeenum attribute)": [[81, "memoryscope.enumeration.MemoryTypeEnum.INSIGHT"]], "modified (memoryscope.enumeration.actionstatusenum attribute)": [[81, "memoryscope.enumeration.ActionStatusEnum.MODIFIED"]], "new (memoryscope.enumeration.actionstatusenum attribute)": [[81, "memoryscope.enumeration.ActionStatusEnum.NEW"]], "none (memoryscope.enumeration.actionstatusenum attribute)": [[81, "memoryscope.enumeration.ActionStatusEnum.NONE"]], "observation (memoryscope.enumeration.memorytypeenum attribute)": [[81, "memoryscope.enumeration.MemoryTypeEnum.OBSERVATION"]], "obs_customized (memoryscope.enumeration.memorytypeenum attribute)": [[81, "memoryscope.enumeration.MemoryTypeEnum.OBS_CUSTOMIZED"]], "rank_model (memoryscope.enumeration.modelenum attribute)": [[81, "memoryscope.enumeration.ModelEnum.RANK_MODEL"]], "system (memoryscope.enumeration.messageroleenum attribute)": [[81, "memoryscope.enumeration.MessageRoleEnum.SYSTEM"]], "user (memoryscope.enumeration.messageroleenum attribute)": [[81, "memoryscope.enumeration.MessageRoleEnum.USER"]], "valid (memoryscope.enumeration.storestatusenum attribute)": [[81, "memoryscope.enumeration.StoreStatusEnum.VALID"]], "actionstatusenum (class in memoryscope.enumeration.action_status_enum)": [[82, "memoryscope.enumeration.action_status_enum.ActionStatusEnum"]], "content_modified (memoryscope.enumeration.action_status_enum.actionstatusenum attribute)": [[82, "memoryscope.enumeration.action_status_enum.ActionStatusEnum.CONTENT_MODIFIED"]], "delete (memoryscope.enumeration.action_status_enum.actionstatusenum attribute)": [[82, "memoryscope.enumeration.action_status_enum.ActionStatusEnum.DELETE"]], "modified (memoryscope.enumeration.action_status_enum.actionstatusenum attribute)": [[82, "memoryscope.enumeration.action_status_enum.ActionStatusEnum.MODIFIED"]], "new (memoryscope.enumeration.action_status_enum.actionstatusenum attribute)": [[82, "memoryscope.enumeration.action_status_enum.ActionStatusEnum.NEW"]], "none (memoryscope.enumeration.action_status_enum.actionstatusenum attribute)": [[82, "memoryscope.enumeration.action_status_enum.ActionStatusEnum.NONE"]], "memoryscope.enumeration.action_status_enum": [[82, "module-memoryscope.enumeration.action_status_enum"]], "cn (memoryscope.enumeration.language_enum.languageenum attribute)": [[83, "memoryscope.enumeration.language_enum.LanguageEnum.CN"]], "en (memoryscope.enumeration.language_enum.languageenum attribute)": [[83, "memoryscope.enumeration.language_enum.LanguageEnum.EN"]], "languageenum (class in memoryscope.enumeration.language_enum)": [[83, "memoryscope.enumeration.language_enum.LanguageEnum"]], "memoryscope.enumeration.language_enum": [[83, "module-memoryscope.enumeration.language_enum"]], "conversation (memoryscope.enumeration.memory_type_enum.memorytypeenum attribute)": [[84, "memoryscope.enumeration.memory_type_enum.MemoryTypeEnum.CONVERSATION"]], "insight (memoryscope.enumeration.memory_type_enum.memorytypeenum attribute)": [[84, "memoryscope.enumeration.memory_type_enum.MemoryTypeEnum.INSIGHT"]], "memorytypeenum (class in memoryscope.enumeration.memory_type_enum)": [[84, "memoryscope.enumeration.memory_type_enum.MemoryTypeEnum"]], "observation (memoryscope.enumeration.memory_type_enum.memorytypeenum attribute)": [[84, "memoryscope.enumeration.memory_type_enum.MemoryTypeEnum.OBSERVATION"]], "obs_customized (memoryscope.enumeration.memory_type_enum.memorytypeenum attribute)": [[84, "memoryscope.enumeration.memory_type_enum.MemoryTypeEnum.OBS_CUSTOMIZED"]], "memoryscope.enumeration.memory_type_enum": [[84, "module-memoryscope.enumeration.memory_type_enum"]], "assistant (memoryscope.enumeration.message_role_enum.messageroleenum attribute)": [[85, "memoryscope.enumeration.message_role_enum.MessageRoleEnum.ASSISTANT"]], "messageroleenum (class in memoryscope.enumeration.message_role_enum)": [[85, "memoryscope.enumeration.message_role_enum.MessageRoleEnum"]], "system (memoryscope.enumeration.message_role_enum.messageroleenum attribute)": [[85, "memoryscope.enumeration.message_role_enum.MessageRoleEnum.SYSTEM"]], "user (memoryscope.enumeration.message_role_enum.messageroleenum attribute)": [[85, "memoryscope.enumeration.message_role_enum.MessageRoleEnum.USER"]], "memoryscope.enumeration.message_role_enum": [[85, "module-memoryscope.enumeration.message_role_enum"]], "embedding_model (memoryscope.enumeration.model_enum.modelenum attribute)": [[86, "memoryscope.enumeration.model_enum.ModelEnum.EMBEDDING_MODEL"]], "generation_model (memoryscope.enumeration.model_enum.modelenum attribute)": [[86, "memoryscope.enumeration.model_enum.ModelEnum.GENERATION_MODEL"]], "modelenum (class in memoryscope.enumeration.model_enum)": [[86, "memoryscope.enumeration.model_enum.ModelEnum"]], "rank_model (memoryscope.enumeration.model_enum.modelenum attribute)": [[86, "memoryscope.enumeration.model_enum.ModelEnum.RANK_MODEL"]], "memoryscope.enumeration.model_enum": [[86, "module-memoryscope.enumeration.model_enum"]], "expired (memoryscope.enumeration.store_status_enum.storestatusenum attribute)": [[87, "memoryscope.enumeration.store_status_enum.StoreStatusEnum.EXPIRED"]], "storestatusenum (class in memoryscope.enumeration.store_status_enum)": [[87, "memoryscope.enumeration.store_status_enum.StoreStatusEnum"]], "valid (memoryscope.enumeration.store_status_enum.storestatusenum attribute)": [[87, "memoryscope.enumeration.store_status_enum.StoreStatusEnum.VALID"]], "memoryscope.enumeration.store_status_enum": [[87, "module-memoryscope.enumeration.store_status_enum"]]}}) \ No newline at end of file diff --git a/zh/.doctrees/docs/api.doctree b/zh/.doctrees/docs/api.doctree index 5eb3b3b3..9ae686ee 100644 Binary files a/zh/.doctrees/docs/api.doctree and b/zh/.doctrees/docs/api.doctree differ diff --git a/zh/.doctrees/environment.pickle b/zh/.doctrees/environment.pickle index f9180970..ef5ce5d0 100644 Binary files a/zh/.doctrees/environment.pickle and b/zh/.doctrees/environment.pickle differ diff --git a/zh/.doctrees/memoryscope.constants.common_constants.doctree b/zh/.doctrees/memoryscope.constants.common_constants.doctree index 7436a1a2..be6f4d6f 100644 Binary files a/zh/.doctrees/memoryscope.constants.common_constants.doctree and b/zh/.doctrees/memoryscope.constants.common_constants.doctree differ diff --git a/zh/.doctrees/memoryscope.constants.doctree b/zh/.doctrees/memoryscope.constants.doctree index a81763d8..274936c5 100644 Binary files a/zh/.doctrees/memoryscope.constants.doctree and b/zh/.doctrees/memoryscope.constants.doctree differ diff --git a/zh/.doctrees/memoryscope.constants.language_constants.doctree b/zh/.doctrees/memoryscope.constants.language_constants.doctree index 467e0fc6..14d680c0 100644 Binary files a/zh/.doctrees/memoryscope.constants.language_constants.doctree and b/zh/.doctrees/memoryscope.constants.language_constants.doctree differ diff --git a/zh/.doctrees/memoryscope.enumeration.action_status_enum.doctree b/zh/.doctrees/memoryscope.enumeration.action_status_enum.doctree index d0679b2f..bfb0bdbe 100644 Binary files a/zh/.doctrees/memoryscope.enumeration.action_status_enum.doctree and b/zh/.doctrees/memoryscope.enumeration.action_status_enum.doctree differ diff --git a/zh/.doctrees/memoryscope.enumeration.doctree b/zh/.doctrees/memoryscope.enumeration.doctree index 41bc9d24..1a9acb7e 100644 Binary files a/zh/.doctrees/memoryscope.enumeration.doctree and b/zh/.doctrees/memoryscope.enumeration.doctree differ diff --git a/zh/.doctrees/memoryscope.enumeration.language_enum.doctree b/zh/.doctrees/memoryscope.enumeration.language_enum.doctree index a5a772db..be517688 100644 Binary files a/zh/.doctrees/memoryscope.enumeration.language_enum.doctree and b/zh/.doctrees/memoryscope.enumeration.language_enum.doctree differ diff --git a/zh/.doctrees/memoryscope.enumeration.memory_type_enum.doctree b/zh/.doctrees/memoryscope.enumeration.memory_type_enum.doctree index 9bd0ff42..3fd2767d 100644 Binary files a/zh/.doctrees/memoryscope.enumeration.memory_type_enum.doctree and b/zh/.doctrees/memoryscope.enumeration.memory_type_enum.doctree differ diff --git a/zh/.doctrees/memoryscope.enumeration.message_role_enum.doctree b/zh/.doctrees/memoryscope.enumeration.message_role_enum.doctree index 829ce6a2..dc0182ad 100644 Binary files a/zh/.doctrees/memoryscope.enumeration.message_role_enum.doctree and b/zh/.doctrees/memoryscope.enumeration.message_role_enum.doctree differ diff --git a/zh/.doctrees/memoryscope.enumeration.model_enum.doctree b/zh/.doctrees/memoryscope.enumeration.model_enum.doctree index b02890d9..9962f19b 100644 Binary files a/zh/.doctrees/memoryscope.enumeration.model_enum.doctree and b/zh/.doctrees/memoryscope.enumeration.model_enum.doctree differ diff --git a/zh/.doctrees/memoryscope.enumeration.store_status_enum.doctree b/zh/.doctrees/memoryscope.enumeration.store_status_enum.doctree index e983a4a3..93fdc502 100644 Binary files a/zh/.doctrees/memoryscope.enumeration.store_status_enum.doctree and b/zh/.doctrees/memoryscope.enumeration.store_status_enum.doctree differ diff --git a/zh/_modules/index.html b/zh/_modules/index.html new file mode 100644 index 00000000..12292b01 --- /dev/null +++ b/zh/_modules/index.html @@ -0,0 +1,135 @@ + + + + + + + 概览:模块代码 — MemoryScope 文档 + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + +
    +
    +
    +
      +
    • + +
    • +
    • +
    +
    +
    + +
    + +
    + +
    +

    © 版权所有 2024, Alibaba Tongyi Lab。

    +
    + + 利用 Sphinx 构建,使用的 + 主题 + 由 Read the Docs 开发. + + +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/zh/_modules/memoryscope/enumeration/action_status_enum.html b/zh/_modules/memoryscope/enumeration/action_status_enum.html new file mode 100644 index 00000000..a22294e8 --- /dev/null +++ b/zh/_modules/memoryscope/enumeration/action_status_enum.html @@ -0,0 +1,153 @@ + + + + + + + memoryscope.enumeration.action_status_enum — MemoryScope 文档 + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + +
    +
    +
    +
      +
    • + + +
    • +
    • +
    +
    +
    +
    +
    + +

    memoryscope.enumeration.action_status_enum 源代码

    +from enum import Enum
    +
    +
    +
    [文档]class ActionStatusEnum(str, Enum): + """ + Enumeration representing various statuses of a memory node. + + Each status reflects a different state of the node in terms of its lifecycle or content: + - NEW: Indicates a newly created node. + - MODIFIED: Signifies that the node has been altered. + - CONTENT_MODIFIED: Specifies changes in the actual content of the node. + - NONE: do nothing. + - DELETE: delete memories. + """ + NEW = "new" + + MODIFIED = "modified" + + CONTENT_MODIFIED = "content_modified" + + NONE = "none" + + DELETE = "delete"
    +
    + +
    +
    +
    + +
    + +
    +

    © 版权所有 2024, Alibaba Tongyi Lab。

    +
    + + 利用 Sphinx 构建,使用的 + 主题 + 由 Read the Docs 开发. + + +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/zh/_modules/memoryscope/enumeration/language_enum.html b/zh/_modules/memoryscope/enumeration/language_enum.html new file mode 100644 index 00000000..35cc6836 --- /dev/null +++ b/zh/_modules/memoryscope/enumeration/language_enum.html @@ -0,0 +1,144 @@ + + + + + + + memoryscope.enumeration.language_enum — MemoryScope 文档 + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + +
    +
    +
    +
      +
    • + + +
    • +
    • +
    +
    +
    +
    +
    + +

    memoryscope.enumeration.language_enum 源代码

    +from enum import Enum
    +
    +
    +
    [文档]class LanguageEnum(str, Enum): + """ + An enumeration representing supported languages. + + Members: + - CN: Represents the Chinese language. + - EN: Represents the English language. + """ + CN = "cn" + + EN = "en"
    +
    + +
    +
    +
    + +
    + +
    +

    © 版权所有 2024, Alibaba Tongyi Lab。

    +
    + + 利用 Sphinx 构建,使用的 + 主题 + 由 Read the Docs 开发. + + +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/zh/_modules/memoryscope/enumeration/memory_type_enum.html b/zh/_modules/memoryscope/enumeration/memory_type_enum.html new file mode 100644 index 00000000..a6c6a623 --- /dev/null +++ b/zh/_modules/memoryscope/enumeration/memory_type_enum.html @@ -0,0 +1,150 @@ + + + + + + + memoryscope.enumeration.memory_type_enum — MemoryScope 文档 + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + +
    +
    +
    +
      +
    • + + +
    • +
    • +
    +
    +
    +
    +
    + +

    memoryscope.enumeration.memory_type_enum 源代码

    +from enum import Enum
    +
    +
    +
    [文档]class MemoryTypeEnum(str, Enum): + """ + Defines an enumeration for different types of memory categories. + + Each member represents a distinct type of memory content: + - CONVERSATION: Represents conversation-based memories. + - OBSERVATION: Denotes observational memories. + - INSIGHT: Indicates insightful memories derived from analysis. + - OBS_CUSTOMIZED: Customized observational memories. + """ + CONVERSATION = "conversation" + + OBSERVATION = "observation" + + INSIGHT = "insight" + + OBS_CUSTOMIZED = "obs_customized"
    +
    + +
    +
    +
    + +
    + +
    +

    © 版权所有 2024, Alibaba Tongyi Lab。

    +
    + + 利用 Sphinx 构建,使用的 + 主题 + 由 Read the Docs 开发. + + +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/zh/_modules/memoryscope/enumeration/message_role_enum.html b/zh/_modules/memoryscope/enumeration/message_role_enum.html new file mode 100644 index 00000000..cbd5e0d1 --- /dev/null +++ b/zh/_modules/memoryscope/enumeration/message_role_enum.html @@ -0,0 +1,146 @@ + + + + + + + memoryscope.enumeration.message_role_enum — MemoryScope 文档 + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + +
    +
    +
    +
      +
    • + + +
    • +
    • +
    +
    +
    +
    +
    + +

    memoryscope.enumeration.message_role_enum 源代码

    +from enum import Enum
    +
    +
    +
    [文档]class MessageRoleEnum(str, Enum): + """ + Enumeration for different message roles within a conversation context. + + This enumeration includes predefined roles such as User, Assistant, and System, + which can be used to categorize messages in chat interfaces, AI interactions, or + any system that involves distinct participant roles. + """ + USER = "user" # Represents a message sent by the user. + + ASSISTANT = "assistant" # Represents a response or action performed by an assistant. + + SYSTEM = "system" # Represents system-level messages or actions.
    +
    + +
    +
    +
    + +
    + +
    +

    © 版权所有 2024, Alibaba Tongyi Lab。

    +
    + + 利用 Sphinx 构建,使用的 + 主题 + 由 Read the Docs 开发. + + +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/zh/_modules/memoryscope/enumeration/model_enum.html b/zh/_modules/memoryscope/enumeration/model_enum.html new file mode 100644 index 00000000..b46fd8dd --- /dev/null +++ b/zh/_modules/memoryscope/enumeration/model_enum.html @@ -0,0 +1,148 @@ + + + + + + + memoryscope.enumeration.model_enum — MemoryScope 文档 + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + +
    +
    +
    +
      +
    • + + +
    • +
    • +
    +
    +
    +
    +
    + +

    memoryscope.enumeration.model_enum 源代码

    +from enum import Enum
    +
    +
    +
    [文档]class ModelEnum(str, Enum): + """ + An enumeration representing different types of models used within the system. + + Members: + GENERATION_MODEL: Represents a model responsible for generating content. + EMBEDDING_MODEL: Represents a model tasked with creating embeddings, typically used for transforming data into a + numerical form suitable for machine learning tasks. + RANK_MODEL: Denotes a model that specializes in ranking, often used to order items based on relevance. + """ + GENERATION_MODEL = "generation_model" + + EMBEDDING_MODEL = "embedding_model" + + RANK_MODEL = "rank_model"
    +
    + +
    +
    +
    + +
    + +
    +

    © 版权所有 2024, Alibaba Tongyi Lab。

    +
    + + 利用 Sphinx 构建,使用的 + 主题 + 由 Read the Docs 开发. + + +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/zh/_modules/memoryscope/enumeration/store_status_enum.html b/zh/_modules/memoryscope/enumeration/store_status_enum.html new file mode 100644 index 00000000..c0540c45 --- /dev/null +++ b/zh/_modules/memoryscope/enumeration/store_status_enum.html @@ -0,0 +1,137 @@ + + + + + + + memoryscope.enumeration.store_status_enum — MemoryScope 文档 + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + +
    +
    +
    +
      +
    • + + +
    • +
    • +
    +
    +
    +
    +
    + +

    memoryscope.enumeration.store_status_enum 源代码

    +from enum import Enum
    +
    +
    +
    [文档]class StoreStatusEnum(str, Enum): + VALID = "valid" + + EXPIRED = "expired"
    +
    + +
    +
    +
    + +
    + +
    +

    © 版权所有 2024, Alibaba Tongyi Lab。

    +
    + + 利用 Sphinx 构建,使用的 + 主题 + 由 Read the Docs 开发. + + +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/zh/docs/api.html b/zh/docs/api.html index 689a2994..3ef3e07a 100644 --- a/zh/docs/api.html +++ b/zh/docs/api.html @@ -62,7 +62,15 @@

    MemoryScope 接口