jl-ecms-server 0.2.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (236) hide show
  1. jl_ecms_server-0.2.4/LICENSE +190 -0
  2. jl_ecms_server-0.2.4/MANIFEST.in +42 -0
  3. jl_ecms_server-0.2.4/PKG-INFO +346 -0
  4. jl_ecms_server-0.2.4/README.md +238 -0
  5. jl_ecms_server-0.2.4/assets/icon.png +0 -0
  6. jl_ecms_server-0.2.4/assets/logo.png +0 -0
  7. jl_ecms_server-0.2.4/jl_ecms_server.egg-info/SOURCES.txt +273 -0
  8. jl_ecms_server-0.2.4/mirix/__init__.py +32 -0
  9. jl_ecms_server-0.2.4/mirix/__main__.py +31 -0
  10. jl_ecms_server-0.2.4/mirix/agent/__init__.py +47 -0
  11. jl_ecms_server-0.2.4/mirix/agent/agent.py +2910 -0
  12. jl_ecms_server-0.2.4/mirix/agent/agent_configs.py +65 -0
  13. jl_ecms_server-0.2.4/mirix/agent/agent_states.py +44 -0
  14. jl_ecms_server-0.2.4/mirix/agent/app_constants.py +31 -0
  15. jl_ecms_server-0.2.4/mirix/agent/app_utils.py +14 -0
  16. jl_ecms_server-0.2.4/mirix/agent/background_agent.py +7 -0
  17. jl_ecms_server-0.2.4/mirix/agent/core_memory_agent.py +7 -0
  18. jl_ecms_server-0.2.4/mirix/agent/episodic_memory_agent.py +7 -0
  19. jl_ecms_server-0.2.4/mirix/agent/knowledge_vault_memory_agent.py +8 -0
  20. jl_ecms_server-0.2.4/mirix/agent/message_queue.py +118 -0
  21. jl_ecms_server-0.2.4/mirix/agent/meta_agent.py +559 -0
  22. jl_ecms_server-0.2.4/mirix/agent/meta_memory_agent.py +7 -0
  23. jl_ecms_server-0.2.4/mirix/agent/procedural_memory_agent.py +7 -0
  24. jl_ecms_server-0.2.4/mirix/agent/reflexion_agent.py +7 -0
  25. jl_ecms_server-0.2.4/mirix/agent/resource_memory_agent.py +7 -0
  26. jl_ecms_server-0.2.4/mirix/agent/semantic_memory_agent.py +7 -0
  27. jl_ecms_server-0.2.4/mirix/agent/temporary_message_accumulator.py +915 -0
  28. jl_ecms_server-0.2.4/mirix/agent/upload_manager.py +262 -0
  29. jl_ecms_server-0.2.4/mirix/client/__init__.py +72 -0
  30. jl_ecms_server-0.2.4/mirix/client/client.py +2594 -0
  31. jl_ecms_server-0.2.4/mirix/client/remote_client.py +1136 -0
  32. jl_ecms_server-0.2.4/mirix/config.py +308 -0
  33. jl_ecms_server-0.2.4/mirix/configs/__init__.py +1 -0
  34. jl_ecms_server-0.2.4/mirix/configs/examples/mirix_azure.yaml +33 -0
  35. jl_ecms_server-0.2.4/mirix/configs/examples/mirix_claude.yaml +28 -0
  36. jl_ecms_server-0.2.4/mirix/configs/examples/mirix_gemini.yaml +33 -0
  37. jl_ecms_server-0.2.4/mirix/configs/examples/mirix_openai.yaml +31 -0
  38. jl_ecms_server-0.2.4/mirix/configs/legacy_configs/mirix.yaml +2 -0
  39. jl_ecms_server-0.2.4/mirix/configs/legacy_configs/mirix_azure_example.yaml +7 -0
  40. jl_ecms_server-0.2.4/mirix/configs/legacy_configs/mirix_custom_model.yaml +9 -0
  41. jl_ecms_server-0.2.4/mirix/configs/legacy_configs/mirix_custom_prompts.yaml +3 -0
  42. jl_ecms_server-0.2.4/mirix/configs/legacy_configs/mirix_gemini.yaml +2 -0
  43. jl_ecms_server-0.2.4/mirix/configs/legacy_configs/mirix_gpt4.yaml +2 -0
  44. jl_ecms_server-0.2.4/mirix/configs/legacy_configs/mirix_gpt4o-mini.yaml +2 -0
  45. jl_ecms_server-0.2.4/mirix/configs/legacy_configs/mirix_monitor.yaml +3 -0
  46. jl_ecms_server-0.2.4/mirix/configs/mirix.yaml +118 -0
  47. jl_ecms_server-0.2.4/mirix/constants.py +252 -0
  48. jl_ecms_server-0.2.4/mirix/database/__init__.py +3 -0
  49. jl_ecms_server-0.2.4/mirix/database/pglite_connector.py +76 -0
  50. jl_ecms_server-0.2.4/mirix/database/redis_client.py +1370 -0
  51. jl_ecms_server-0.2.4/mirix/database/schema_extractor.py +343 -0
  52. jl_ecms_server-0.2.4/mirix/embeddings.py +278 -0
  53. jl_ecms_server-0.2.4/mirix/errors.py +238 -0
  54. jl_ecms_server-0.2.4/mirix/functions/__init__.py +0 -0
  55. jl_ecms_server-0.2.4/mirix/functions/ast_parsers.py +113 -0
  56. jl_ecms_server-0.2.4/mirix/functions/function_sets/__init__.py +1 -0
  57. jl_ecms_server-0.2.4/mirix/functions/function_sets/base.py +330 -0
  58. jl_ecms_server-0.2.4/mirix/functions/function_sets/extras.py +271 -0
  59. jl_ecms_server-0.2.4/mirix/functions/function_sets/memory_tools.py +933 -0
  60. jl_ecms_server-0.2.4/mirix/functions/functions.py +199 -0
  61. jl_ecms_server-0.2.4/mirix/functions/helpers.py +311 -0
  62. jl_ecms_server-0.2.4/mirix/functions/mcp_client/__init__.py +43 -0
  63. jl_ecms_server-0.2.4/mirix/functions/mcp_client/base_client.py +249 -0
  64. jl_ecms_server-0.2.4/mirix/functions/mcp_client/exceptions.py +31 -0
  65. jl_ecms_server-0.2.4/mirix/functions/mcp_client/gmail_client.py +527 -0
  66. jl_ecms_server-0.2.4/mirix/functions/mcp_client/manager.py +442 -0
  67. jl_ecms_server-0.2.4/mirix/functions/mcp_client/stdio_client.py +179 -0
  68. jl_ecms_server-0.2.4/mirix/functions/mcp_client/types.py +185 -0
  69. jl_ecms_server-0.2.4/mirix/functions/schema_generator.py +511 -0
  70. jl_ecms_server-0.2.4/mirix/helpers/__init__.py +1 -0
  71. jl_ecms_server-0.2.4/mirix/helpers/converters.py +429 -0
  72. jl_ecms_server-0.2.4/mirix/helpers/datetime_helpers.py +90 -0
  73. jl_ecms_server-0.2.4/mirix/helpers/json_helpers.py +47 -0
  74. jl_ecms_server-0.2.4/mirix/helpers/message_helpers.py +74 -0
  75. jl_ecms_server-0.2.4/mirix/helpers/tool_rule_solver.py +166 -0
  76. jl_ecms_server-0.2.4/mirix/interface.py +574 -0
  77. jl_ecms_server-0.2.4/mirix/llm_api/__init__.py +0 -0
  78. jl_ecms_server-0.2.4/mirix/llm_api/anthropic.py +525 -0
  79. jl_ecms_server-0.2.4/mirix/llm_api/anthropic_client.py +751 -0
  80. jl_ecms_server-0.2.4/mirix/llm_api/aws_bedrock.py +136 -0
  81. jl_ecms_server-0.2.4/mirix/llm_api/azure_openai.py +169 -0
  82. jl_ecms_server-0.2.4/mirix/llm_api/azure_openai_client.py +149 -0
  83. jl_ecms_server-0.2.4/mirix/llm_api/azure_openai_constants.py +10 -0
  84. jl_ecms_server-0.2.4/mirix/llm_api/cohere.py +399 -0
  85. jl_ecms_server-0.2.4/mirix/llm_api/cohere_client.py +36 -0
  86. jl_ecms_server-0.2.4/mirix/llm_api/google_ai.py +541 -0
  87. jl_ecms_server-0.2.4/mirix/llm_api/google_ai_client.py +656 -0
  88. jl_ecms_server-0.2.4/mirix/llm_api/helpers.py +338 -0
  89. jl_ecms_server-0.2.4/mirix/llm_api/llm_api_tools.py +544 -0
  90. jl_ecms_server-0.2.4/mirix/llm_api/llm_client.py +52 -0
  91. jl_ecms_server-0.2.4/mirix/llm_api/llm_client_base.py +113 -0
  92. jl_ecms_server-0.2.4/mirix/llm_api/mistral.py +47 -0
  93. jl_ecms_server-0.2.4/mirix/llm_api/openai.py +665 -0
  94. jl_ecms_server-0.2.4/mirix/llm_api/openai_client.py +441 -0
  95. jl_ecms_server-0.2.4/mirix/log.py +163 -0
  96. jl_ecms_server-0.2.4/mirix/memory.py +125 -0
  97. jl_ecms_server-0.2.4/mirix/orm/__all__.py +14 -0
  98. jl_ecms_server-0.2.4/mirix/orm/__init__.py +25 -0
  99. jl_ecms_server-0.2.4/mirix/orm/agent.py +130 -0
  100. jl_ecms_server-0.2.4/mirix/orm/base.py +95 -0
  101. jl_ecms_server-0.2.4/mirix/orm/block.py +83 -0
  102. jl_ecms_server-0.2.4/mirix/orm/blocks_agents.py +32 -0
  103. jl_ecms_server-0.2.4/mirix/orm/cloud_file_mapping.py +45 -0
  104. jl_ecms_server-0.2.4/mirix/orm/custom_columns.py +170 -0
  105. jl_ecms_server-0.2.4/mirix/orm/enums.py +24 -0
  106. jl_ecms_server-0.2.4/mirix/orm/episodic_memory.py +167 -0
  107. jl_ecms_server-0.2.4/mirix/orm/errors.py +22 -0
  108. jl_ecms_server-0.2.4/mirix/orm/file.py +57 -0
  109. jl_ecms_server-0.2.4/mirix/orm/knowledge_vault.py +133 -0
  110. jl_ecms_server-0.2.4/mirix/orm/message.py +108 -0
  111. jl_ecms_server-0.2.4/mirix/orm/mixins.py +45 -0
  112. jl_ecms_server-0.2.4/mirix/orm/organization.py +94 -0
  113. jl_ecms_server-0.2.4/mirix/orm/procedural_memory.py +120 -0
  114. jl_ecms_server-0.2.4/mirix/orm/provider.py +27 -0
  115. jl_ecms_server-0.2.4/mirix/orm/resource_memory.py +120 -0
  116. jl_ecms_server-0.2.4/mirix/orm/semantic_memory.py +140 -0
  117. jl_ecms_server-0.2.4/mirix/orm/sqlalchemy_base.py +1015 -0
  118. jl_ecms_server-0.2.4/mirix/orm/sqlite_functions.py +200 -0
  119. jl_ecms_server-0.2.4/mirix/orm/step.py +69 -0
  120. jl_ecms_server-0.2.4/mirix/orm/tool.py +59 -0
  121. jl_ecms_server-0.2.4/mirix/orm/tools_agents.py +21 -0
  122. jl_ecms_server-0.2.4/mirix/orm/user.py +35 -0
  123. jl_ecms_server-0.2.4/mirix/prompts/__init__.py +0 -0
  124. jl_ecms_server-0.2.4/mirix/prompts/gpt_persona.py +23 -0
  125. jl_ecms_server-0.2.4/mirix/prompts/gpt_summarize.py +14 -0
  126. jl_ecms_server-0.2.4/mirix/prompts/gpt_system.py +16 -0
  127. jl_ecms_server-0.2.4/mirix/prompts/personas/chill_buddy.txt +6 -0
  128. jl_ecms_server-0.2.4/mirix/prompts/personas/concise_analyst.txt +5 -0
  129. jl_ecms_server-0.2.4/mirix/prompts/personas/friendly_conversationalist.txt +5 -0
  130. jl_ecms_server-0.2.4/mirix/prompts/personas/helpful_assistant.txt +1 -0
  131. jl_ecms_server-0.2.4/mirix/prompts/personas/playful_Ironist.txt +5 -0
  132. jl_ecms_server-0.2.4/mirix/prompts/personas/project_manager.txt +6 -0
  133. jl_ecms_server-0.2.4/mirix/prompts/system/base/background_agent.txt +136 -0
  134. jl_ecms_server-0.2.4/mirix/prompts/system/base/chat_agent.txt +66 -0
  135. jl_ecms_server-0.2.4/mirix/prompts/system/base/core_memory_agent.txt +53 -0
  136. jl_ecms_server-0.2.4/mirix/prompts/system/base/episodic_memory_agent.txt +49 -0
  137. jl_ecms_server-0.2.4/mirix/prompts/system/base/knowledge_vault_memory_agent.txt +58 -0
  138. jl_ecms_server-0.2.4/mirix/prompts/system/base/meta_memory_agent.txt +114 -0
  139. jl_ecms_server-0.2.4/mirix/prompts/system/base/procedural_memory_agent.txt +42 -0
  140. jl_ecms_server-0.2.4/mirix/prompts/system/base/reflexion_agent.txt +66 -0
  141. jl_ecms_server-0.2.4/mirix/prompts/system/base/resource_memory_agent.txt +53 -0
  142. jl_ecms_server-0.2.4/mirix/prompts/system/base/semantic_memory_agent.txt +57 -0
  143. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/background_agent.txt +150 -0
  144. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/chat_agent.txt +42 -0
  145. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/chat_agent_monitor_on.txt +34 -0
  146. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/core_memory_agent.txt +55 -0
  147. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/episodic_memory_agent.txt +49 -0
  148. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/knowledge_vault_memory_agent.txt +58 -0
  149. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/meta_memory_agent.txt +119 -0
  150. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/procedural_memory_agent.txt +42 -0
  151. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/reflexion_agent.txt +66 -0
  152. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/resource_memory_agent.txt +53 -0
  153. jl_ecms_server-0.2.4/mirix/prompts/system/screen_monitor/semantic_memory_agent.txt +58 -0
  154. jl_ecms_server-0.2.4/mirix/queue/__init__.py +93 -0
  155. jl_ecms_server-0.2.4/mirix/queue/config.py +15 -0
  156. jl_ecms_server-0.2.4/mirix/queue/kafka_queue.py +156 -0
  157. jl_ecms_server-0.2.4/mirix/queue/manager.py +158 -0
  158. jl_ecms_server-0.2.4/mirix/queue/memory_queue.py +54 -0
  159. jl_ecms_server-0.2.4/mirix/queue/message_pb2.py +56 -0
  160. jl_ecms_server-0.2.4/mirix/queue/queue_interface.py +47 -0
  161. jl_ecms_server-0.2.4/mirix/queue/queue_util.py +117 -0
  162. jl_ecms_server-0.2.4/mirix/queue/worker.py +251 -0
  163. jl_ecms_server-0.2.4/mirix/schemas/__init__.py +1 -0
  164. jl_ecms_server-0.2.4/mirix/schemas/agent.py +400 -0
  165. jl_ecms_server-0.2.4/mirix/schemas/block.py +188 -0
  166. jl_ecms_server-0.2.4/mirix/schemas/cloud_file_mapping.py +29 -0
  167. jl_ecms_server-0.2.4/mirix/schemas/embedding_config.py +114 -0
  168. jl_ecms_server-0.2.4/mirix/schemas/enums.py +69 -0
  169. jl_ecms_server-0.2.4/mirix/schemas/environment_variables.py +82 -0
  170. jl_ecms_server-0.2.4/mirix/schemas/episodic_memory.py +170 -0
  171. jl_ecms_server-0.2.4/mirix/schemas/file.py +57 -0
  172. jl_ecms_server-0.2.4/mirix/schemas/health.py +10 -0
  173. jl_ecms_server-0.2.4/mirix/schemas/knowledge_vault.py +181 -0
  174. jl_ecms_server-0.2.4/mirix/schemas/llm_config.py +187 -0
  175. jl_ecms_server-0.2.4/mirix/schemas/memory.py +318 -0
  176. jl_ecms_server-0.2.4/mirix/schemas/message.py +1315 -0
  177. jl_ecms_server-0.2.4/mirix/schemas/mirix_base.py +107 -0
  178. jl_ecms_server-0.2.4/mirix/schemas/mirix_message.py +411 -0
  179. jl_ecms_server-0.2.4/mirix/schemas/mirix_message_content.py +230 -0
  180. jl_ecms_server-0.2.4/mirix/schemas/mirix_request.py +39 -0
  181. jl_ecms_server-0.2.4/mirix/schemas/mirix_response.py +183 -0
  182. jl_ecms_server-0.2.4/mirix/schemas/openai/__init__.py +1 -0
  183. jl_ecms_server-0.2.4/mirix/schemas/openai/chat_completion_request.py +122 -0
  184. jl_ecms_server-0.2.4/mirix/schemas/openai/chat_completion_response.py +144 -0
  185. jl_ecms_server-0.2.4/mirix/schemas/openai/chat_completions.py +127 -0
  186. jl_ecms_server-0.2.4/mirix/schemas/openai/embedding_response.py +11 -0
  187. jl_ecms_server-0.2.4/mirix/schemas/openai/openai.py +229 -0
  188. jl_ecms_server-0.2.4/mirix/schemas/organization.py +38 -0
  189. jl_ecms_server-0.2.4/mirix/schemas/procedural_memory.py +151 -0
  190. jl_ecms_server-0.2.4/mirix/schemas/providers.py +816 -0
  191. jl_ecms_server-0.2.4/mirix/schemas/resource_memory.py +134 -0
  192. jl_ecms_server-0.2.4/mirix/schemas/sandbox_config.py +132 -0
  193. jl_ecms_server-0.2.4/mirix/schemas/semantic_memory.py +162 -0
  194. jl_ecms_server-0.2.4/mirix/schemas/source.py +96 -0
  195. jl_ecms_server-0.2.4/mirix/schemas/step.py +53 -0
  196. jl_ecms_server-0.2.4/mirix/schemas/tool.py +241 -0
  197. jl_ecms_server-0.2.4/mirix/schemas/tool_rule.py +209 -0
  198. jl_ecms_server-0.2.4/mirix/schemas/usage.py +31 -0
  199. jl_ecms_server-0.2.4/mirix/schemas/user.py +67 -0
  200. jl_ecms_server-0.2.4/mirix/sdk.py +1023 -0
  201. jl_ecms_server-0.2.4/mirix/server/__init__.py +4 -0
  202. jl_ecms_server-0.2.4/mirix/server/constants.py +6 -0
  203. jl_ecms_server-0.2.4/mirix/server/rest_api.py +1635 -0
  204. jl_ecms_server-0.2.4/mirix/server/server.py +1533 -0
  205. jl_ecms_server-0.2.4/mirix/server/startup.sh +49 -0
  206. jl_ecms_server-0.2.4/mirix/server/utils.py +56 -0
  207. jl_ecms_server-0.2.4/mirix/services/__init__.py +0 -0
  208. jl_ecms_server-0.2.4/mirix/services/agent_manager.py +1832 -0
  209. jl_ecms_server-0.2.4/mirix/services/block_manager.py +211 -0
  210. jl_ecms_server-0.2.4/mirix/services/cloud_file_mapping_manager.py +212 -0
  211. jl_ecms_server-0.2.4/mirix/services/episodic_memory_manager.py +1003 -0
  212. jl_ecms_server-0.2.4/mirix/services/file_manager.py +228 -0
  213. jl_ecms_server-0.2.4/mirix/services/helpers/__init__.py +1 -0
  214. jl_ecms_server-0.2.4/mirix/services/helpers/agent_manager_helper.py +288 -0
  215. jl_ecms_server-0.2.4/mirix/services/knowledge_vault_manager.py +948 -0
  216. jl_ecms_server-0.2.4/mirix/services/mcp_marketplace.py +129 -0
  217. jl_ecms_server-0.2.4/mirix/services/mcp_tool_registry.py +317 -0
  218. jl_ecms_server-0.2.4/mirix/services/message_manager.py +412 -0
  219. jl_ecms_server-0.2.4/mirix/services/organization_manager.py +138 -0
  220. jl_ecms_server-0.2.4/mirix/services/per_agent_lock_manager.py +18 -0
  221. jl_ecms_server-0.2.4/mirix/services/procedural_memory_manager.py +927 -0
  222. jl_ecms_server-0.2.4/mirix/services/provider_manager.py +217 -0
  223. jl_ecms_server-0.2.4/mirix/services/resource_memory_manager.py +838 -0
  224. jl_ecms_server-0.2.4/mirix/services/semantic_memory_manager.py +940 -0
  225. jl_ecms_server-0.2.4/mirix/services/step_manager.py +44 -0
  226. jl_ecms_server-0.2.4/mirix/services/tool_execution_sandbox.py +637 -0
  227. jl_ecms_server-0.2.4/mirix/services/tool_manager.py +233 -0
  228. jl_ecms_server-0.2.4/mirix/services/user_manager.py +202 -0
  229. jl_ecms_server-0.2.4/mirix/services/utils.py +147 -0
  230. jl_ecms_server-0.2.4/mirix/settings.py +280 -0
  231. jl_ecms_server-0.2.4/mirix/system.py +261 -0
  232. jl_ecms_server-0.2.4/mirix/tracing.py +265 -0
  233. jl_ecms_server-0.2.4/mirix/utils.py +1703 -0
  234. jl_ecms_server-0.2.4/mirix/voice_utils.py +157 -0
  235. jl_ecms_server-0.2.4/setup.cfg +4 -0
  236. jl_ecms_server-0.2.4/setup.py +129 -0
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2023, Letta authors
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1,42 @@
1
+ # Include the README and LICENSE
2
+ include README.md
3
+ include LICENSE
4
+
5
+ # Include configuration files
6
+ recursive-include configs *.yaml *.yml
7
+ recursive-include mirix/configs *.yaml *.yml
8
+
9
+ # Include prompt templates
10
+ recursive-include mirix/prompts *.txt *.yaml *.yml
11
+
12
+ # Include any schema files
13
+ recursive-include mirix/schemas *.json *.yaml *.yml
14
+
15
+ # Include assets for the package
16
+ recursive-include assets *.png *.jpg *.jpeg *.gif *.ico
17
+
18
+ # Exclude development and build files
19
+ global-exclude *.pyc
20
+ global-exclude *.pyo
21
+ global-exclude *.pyd
22
+ global-exclude __pycache__
23
+ global-exclude .DS_Store
24
+ global-exclude *.so
25
+ global-exclude .git*
26
+
27
+ # Exclude frontend and other non-Python directories
28
+ prune frontend
29
+ prune public_evaluations
30
+ prune scripts
31
+ prune mirix_env
32
+ prune .git
33
+
34
+ # Exclude test files
35
+ prune tests
36
+ global-exclude test_*.py
37
+ global-exclude *_test.py
38
+
39
+ # Exclude build artifacts
40
+ prune build
41
+ prune dist
42
+ prune *.egg-info
@@ -0,0 +1,346 @@
1
+ Metadata-Version: 2.4
2
+ Name: jl-ecms-server
3
+ Version: 0.2.4
4
+ Summary: Intuit ECMS Server - Multi-Agent Personal Assistant with Advanced Memory System
5
+ Home-page: https://github.com/Mirix-AI/MIRIX
6
+ Author: Mirix AI
7
+ Author-email: yuwang@mirix.io
8
+ License: Apache License 2.0
9
+ Project-URL: Documentation, https://docs.mirix.io
10
+ Project-URL: Website, https://mirix.io
11
+ Project-URL: Source Code, https://github.com/Mirix-AI/MIRIX
12
+ Project-URL: Bug Reports, https://github.com/Mirix-AI/MIRIX/issues
13
+ Keywords: ai,memory,agent,llm,assistant,chatbot,multimodal,server,fastapi
14
+ Classifier: Development Status :: 4 - Beta
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: Apache Software License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
24
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
+ Classifier: Topic :: Communications :: Chat
26
+ Classifier: Framework :: FastAPI
27
+ Requires-Python: >=3.10
28
+ Description-Content-Type: text/markdown
29
+ License-File: LICENSE
30
+ Requires-Dist: pytz>=2024.1
31
+ Requires-Dist: numpy>=1.24.0
32
+ Requires-Dist: pandas>=2.0.0
33
+ Requires-Dist: openpyxl>=3.1.0
34
+ Requires-Dist: Markdown>=3.5.0
35
+ Requires-Dist: Pillow<11.0.0,>=10.2.0
36
+ Requires-Dist: scikit-image>=0.22.0
37
+ Requires-Dist: openai==1.72.0
38
+ Requires-Dist: tiktoken>=0.5.0
39
+ Requires-Dist: google-genai>=0.4.0
40
+ Requires-Dist: anthropic>=0.23.0
41
+ Requires-Dist: cohere>=4.0.0
42
+ Requires-Dist: fastapi>=0.104.1
43
+ Requires-Dist: uvicorn[standard]>=0.31.1
44
+ Requires-Dist: python-multipart>=0.0.6
45
+ Requires-Dist: httpx>=0.25.0
46
+ Requires-Dist: httpx_sse>=0.3.0
47
+ Requires-Dist: sqlalchemy>=2.0.0
48
+ Requires-Dist: psycopg2-binary>=2.9.0
49
+ Requires-Dist: pg8000>=1.30.0
50
+ Requires-Dist: pgvector>=0.2.0
51
+ Requires-Dist: redis>=5.0.0
52
+ Requires-Dist: pydantic>=2.0.0
53
+ Requires-Dist: pydantic-settings>=2.0.0
54
+ Requires-Dist: python-dotenv>=1.0.0
55
+ Requires-Dist: demjson3>=3.0.0
56
+ Requires-Dist: pathvalidate>=3.0.0
57
+ Requires-Dist: docstring_parser>=0.15
58
+ Requires-Dist: jinja2>=3.1.0
59
+ Requires-Dist: humps>=0.2.0
60
+ Requires-Dist: colorama>=0.4.0
61
+ Requires-Dist: rapidfuzz>=3.0.0
62
+ Requires-Dist: rank-bm25>=0.2.0
63
+ Requires-Dist: psutil>=5.9.0
64
+ Requires-Dist: json_repair>=0.12.0
65
+ Requires-Dist: rich<14.0.0,>=13.7.1
66
+ Requires-Dist: anyio>=4.7.0
67
+ Requires-Dist: pyyaml>=6.0.0
68
+ Requires-Dist: requests>=2.31.0
69
+ Requires-Dist: llama_index>=0.9.0
70
+ Requires-Dist: llama-index-embeddings-google-genai>=0.1.0
71
+ Requires-Dist: composio>=0.3.0
72
+ Requires-Dist: mcp>=0.1.0
73
+ Requires-Dist: google-auth>=2.0.0
74
+ Requires-Dist: google-auth-oauthlib>=1.0.0
75
+ Requires-Dist: google-auth-httplib2>=0.1.0
76
+ Requires-Dist: google-api-python-client>=2.0.0
77
+ Requires-Dist: opentelemetry-api>=1.20.0
78
+ Requires-Dist: opentelemetry-sdk>=1.20.0
79
+ Requires-Dist: opentelemetry-exporter-otlp>=1.20.0
80
+ Requires-Dist: opentelemetry-instrumentation-requests>=0.41b0
81
+ Requires-Dist: SpeechRecognition>=3.10.0
82
+ Requires-Dist: pydub>=0.25.0
83
+ Requires-Dist: protobuf<6.0,>=3.20
84
+ Provides-Extra: dev
85
+ Requires-Dist: pytest>=6.0.0; extra == "dev"
86
+ Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
87
+ Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
88
+ Requires-Dist: black>=23.0.0; extra == "dev"
89
+ Requires-Dist: isort>=5.12.0; extra == "dev"
90
+ Requires-Dist: flake8>=6.0.0; extra == "dev"
91
+ Requires-Dist: mypy>=1.5.0; extra == "dev"
92
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
93
+ Requires-Dist: pyright>=1.1.0; extra == "dev"
94
+ Dynamic: author
95
+ Dynamic: author-email
96
+ Dynamic: classifier
97
+ Dynamic: description
98
+ Dynamic: description-content-type
99
+ Dynamic: home-page
100
+ Dynamic: keywords
101
+ Dynamic: license
102
+ Dynamic: license-file
103
+ Dynamic: project-url
104
+ Dynamic: provides-extra
105
+ Dynamic: requires-dist
106
+ Dynamic: requires-python
107
+ Dynamic: summary
108
+
109
+ ![Mirix Logo](https://github.com/RenKoya1/MIRIX/raw/main/assets/logo.png)
110
+
111
+ ## MIRIX - Multi-Agent Personal Assistant with an Advanced Memory System
112
+
113
+ Your personal AI that builds memory through screen observation and natural conversation
114
+
115
+ | 🌐 [Website](https://mirix.io) | 📚 [Documentation](https://docs.mirix.io) | 📄 [Paper](https://arxiv.org/abs/2507.07957) | 💬 [Discord](https://discord.gg/S6CeHNrJ)
116
+ <!-- | [Twitter/X](https://twitter.com/mirix_ai) | [Discord](https://discord.gg/S6CeHNrJ) | -->
117
+
118
+ ---
119
+
120
+ ### Key Features 🔥
121
+
122
+ - **Multi-Agent Memory System:** Six specialized memory components (Core, Episodic, Semantic, Procedural, Resource, Knowledge Vault) managed by dedicated agents
123
+ - **Screen Activity Tracking:** Continuous visual data capture and intelligent consolidation into structured memories
124
+ - **Privacy-First Design:** All long-term data stored locally with user-controlled privacy settings
125
+ - **Advanced Search:** PostgreSQL-native BM25 full-text search with vector similarity support
126
+ - **Multi-Modal Input:** Text, images, voice, and screen captures processed seamlessly
127
+
128
+ ### Quick Start
129
+ **End-Users**: For end-users who want to build your own memory using MIRIX, please checkout the quick installation guide [here](https://docs.mirix.io/getting-started/installation/#quick-installation-dmg).
130
+
131
+ **Developers**: For users who want to apply our memory system as the backend, please check out our [Backend Usage](https://docs.mirix.io/user-guide/backend-usage/). Basically, you just need to run:
132
+ ```
133
+ git clone git@github.com:Mirix-AI/MIRIX.git
134
+ cd MIRIX
135
+
136
+ # Create and activate virtual environment
137
+ python -m venv mirix_env
138
+ source mirix_env/bin/activate # On Windows: mirix_env\Scripts\activate
139
+
140
+ pip install -r requirements.txt
141
+ ```
142
+ Then you can run the following python code:
143
+ ```python
144
+ from mirix.agent import AgentWrapper
145
+
146
+ # Initialize agent with configuration
147
+ agent = AgentWrapper("./mirix/configs/mirix.yaml")
148
+
149
+ # Send basic text information
150
+ agent.send_message(
151
+ message="The moon now has a president.",
152
+ memorizing=True,
153
+ force_absorb_content=True
154
+ )
155
+ ```
156
+ For more details, please refer to [Backend Usage](https://docs.mirix.io/user-guide/backend-usage/).
157
+
158
+ ## Python SDK (NEW!) 🎉
159
+
160
+ We've created a simple [Python SDK](https://pypi.org/project/mirix/0.1.5/) that makes it incredibly easy to integrate Mirix's memory capabilities into your applications:
161
+
162
+ ### Installationhttps://pypi.org/project/mirix/0.1.5/
163
+ ```bash
164
+ pip install mirix
165
+ ```
166
+
167
+ ### Quick Start with SDK
168
+ ```python
169
+ from mirix import Mirix
170
+
171
+ # Initialize memory agent (defaults to Google Gemini 2.0 Flash)
172
+ memory_agent = Mirix(api_key="your-google-api-key")
173
+
174
+ # Add memories
175
+ memory_agent.add("The moon now has a president")
176
+ memory_agent.add("John loves Italian food and is allergic to peanuts")
177
+
178
+ # Chat with memory context
179
+ response = memory_agent.chat("Does the moon have a president?")
180
+ print(response) # "Yes, according to my memory, the moon has a president."
181
+
182
+ response = memory_agent.chat("What does John like to eat?")
183
+ print(response) # "John loves Italian food. However, he's allergic to peanuts."
184
+ ```
185
+
186
+ ## Integration with Claude Agent SDK 🤝
187
+
188
+ Mirix can be integrated with [Anthropic's Claude Agent SDK](https://docs.claude.com/en/api/agent-sdk/python) to give Claude persistent memory across conversations. This allows Claude to remember context, user preferences, and past interactions.
189
+
190
+ ### Basic Setup
191
+
192
+ Here's a simple example of integrating Mirix with the Claude Agent SDK:
193
+
194
+ ```python
195
+ #!/usr/bin/env python3
196
+ import os
197
+ import asyncio
198
+ from claude_agent_sdk import query, ClaudeAgentOptions, AssistantMessage
199
+ from mirix import Mirix
200
+ from collections import deque
201
+ from dotenv import load_dotenv
202
+ load_dotenv()
203
+
204
+ # Configuration
205
+ MEMORY_UPDATE_INTERVAL = 3 # Update memory every N turns
206
+ REINIT_INTERVAL = 1 # Rebuild system prompt (retrieve from Mirix) every N turns
207
+ KEEP_LAST_N_TURNS = 50 # Keep last N turns in memory buffer
208
+
209
+ def build_system_prompt(mirix_agent=None, user_id=None, conversation_buffer=""):
210
+ """Build system prompt with optional Mirix memory context"""
211
+ system_prompt = """You are a helpful assistant."""
212
+
213
+ # Add Mirix memory context if available
214
+ if mirix_agent and user_id and conversation_buffer:
215
+ memory_context = mirix_agent.extract_memory_for_system_prompt(
216
+ conversation_buffer, user_id
217
+ )
218
+ if memory_context:
219
+ system_prompt += "\n\nRelevant Memory Context:\n" + memory_context
220
+
221
+ return system_prompt
222
+
223
+ async def run_agent():
224
+ """Run Claude Agent SDK with Mirix memory integration"""
225
+
226
+ # Initialize Mirix memory agent
227
+ mirix_agent = Mirix(
228
+ model_name="gemini-2.0-flash",
229
+ api_key=os.getenv("GEMINI_API_KEY"),
230
+ )
231
+ user = mirix_agent.create_user(user_name="Alice")
232
+
233
+ # Track conversation for memory updates
234
+ conversation_history = deque(maxlen=KEEP_LAST_N_TURNS)
235
+ turn_count = 0
236
+ turns_since_reinit = 0
237
+ session_id = None
238
+
239
+ while True:
240
+ # Build system prompt with memory context
241
+ options = ClaudeAgentOptions(
242
+ resume=session_id,
243
+ allowed_tools=["Task", "Bash", "Read", "Edit", "Write", "WebSearch"],
244
+ system_prompt=build_system_prompt(
245
+ mirix_agent, user.id,
246
+ "\n".join([f"User: {u}\nAssistant: {a}" for u, a in conversation_history])
247
+ ),
248
+ model="claude-sonnet-4-5",
249
+ max_turns=50
250
+ )
251
+
252
+ user_input = input("User: ").strip()
253
+ if user_input.lower() in ['exit', 'quit', 'bye']:
254
+ break
255
+
256
+ # Get Claude's response
257
+ assistant_response = ""
258
+ async for message in query(prompt=user_input, options=options):
259
+ if hasattr(message, 'subtype') and message.subtype == 'init':
260
+ session_id = message.data.get('session_id')
261
+
262
+ if isinstance(message, AssistantMessage):
263
+ for block in message.content:
264
+ if hasattr(block, 'text'):
265
+ assistant_response += block.text
266
+ print(block.text, flush=True)
267
+
268
+ # Update conversation history
269
+ conversation_history.append((user_input, assistant_response))
270
+ turn_count += 1
271
+ turns_since_reinit += 1
272
+
273
+ # Periodically update Mirix memory
274
+ if turn_count % MEMORY_UPDATE_INTERVAL == 0:
275
+ combined = "\n".join([
276
+ f"[User] {u}\n[Assistant] {a}"
277
+ for u, a in conversation_history
278
+ ])
279
+ await asyncio.to_thread(mirix_agent.add, combined, user_id=user.id)
280
+ print("✅ Memory updated!")
281
+
282
+ if __name__ == "__main__":
283
+ asyncio.run(run_agent())
284
+ ```
285
+
286
+ ### Key Benefits
287
+
288
+ - **Persistent Memory:** Mirix helps Claude remember facts, preferences, and context across sessions
289
+ - **Intelligent Retrieval:** Mirix automatically retrieves relevant memories for each conversation
290
+ - **Scalable:** Works with conversations of any length without token limit issues
291
+ - **Flexible Updates:** Configure how often to update memory (e.g., every N turns)
292
+
293
+ ### Example Usage
294
+
295
+ ```bash
296
+ cd samples
297
+
298
+ # Install dependencies
299
+ pip install mirix claude-agent-sdk python-dotenv
300
+
301
+ # Set environment variables
302
+ export GEMINI_API_KEY="your-google-api-key"
303
+ export ANTHROPIC_API_KEY="your-anthropic-api-key"
304
+
305
+ # Run the agent
306
+ python claude_agent.py
307
+ ```
308
+
309
+ ## License
310
+
311
+ Mirix is released under the Apache License 2.0. See the [LICENSE](LICENSE) file for more details.
312
+
313
+ ## Contact
314
+
315
+ For questions, suggestions, or issues, please open an issue on the GitHub repository or contact us at `yuwang@mirix.io`
316
+
317
+ ## Join Our Community
318
+
319
+ Connect with other Mirix users, share your thoughts, and get support:
320
+
321
+ ### 💬 Discord Community
322
+ Join our Discord server for real-time discussions, support, and community updates:
323
+ **[https://discord.gg/S6CeHNrJ](https://discord.gg/S6CeHNrJ)**
324
+
325
+ ### 🎯 Weekly Discussion Sessions
326
+ We host weekly discussion sessions where you can:
327
+ - Discuss issues and bugs
328
+ - Share ideas about future directions
329
+ - Get general consultations and support
330
+ - Connect with the development team and community
331
+
332
+ **📅 Schedule:** Friday nights, 8-9 PM PST
333
+ **🔗 Zoom Link:** [https://ucsd.zoom.us/j/96278791276](https://ucsd.zoom.us/j/96278791276)
334
+
335
+ ### 📱 WeChat Group
336
+ <div align="center">
337
+ <img src="frontend/public/wechat-qr.jpg" alt="WeChat QR Code" width="200"/><br/>
338
+ <strong>WeChat Group</strong>
339
+ </div>
340
+
341
+ ## Star History
342
+
343
+ [![Star History Chart](https://api.star-history.com/svg?repos=Mirix-AI/MIRIX&type=Date)](https://star-history.com/#Mirix-AI/MIRIX.&Date)
344
+
345
+ ## Acknowledgement
346
+ We would like to thank [Letta](https://github.com/letta-ai/letta) for open-sourcing their framework, which served as the foundation for the memory system in this project.