memU icon indicating copy to clipboard operation
memU copied to clipboard

CategoryInfo missing `summary`, `user_id` and `agent_id`

Open kwaa opened this issue 4 months ago • 1 comments

It appears that these fields only appear in the SDK.

https://github.com/NevaMind-AI/memU/blob/dad1cc47f9e824e3e8a0a5ea1440fab393fbcb50/memu/server/models.py#L70-L77

https://github.com/NevaMind-AI/memU/blob/dad1cc47f9e824e3e8a0a5ea1440fab393fbcb50/memu/sdk/python/models.py#L107-L118

kwaa avatar Aug 21 '25 06:08 kwaa

Missing summary

  • The summary function is currently available in our online version, and has not yet been implemented in the self-hosted edition. We are actively working on it, and this feature will be included in the next major update of the self-hosted edition.

Missing user_id and agent_id

  • Due to the storage architecture of the local file system in self-hosted edition, users are supposed to provide both user_id and agent_id in query requests, so it's not really necessary to return the user_id and agent_id in the response (In contrast, the online version supports user_id-only query to query across all agents). We leave these fields in the response model primarily for compatibility. We are now considering adding these values to the response for consistency.

evan-ak avatar Aug 21 '25 15:08 evan-ak