Seeking memory guidance (for python implementation). #8377
-
I am a noob to SK. I am coding in python. the usage of memory is unclear to me, as documentation is scarce and implementation details don't convey enough context.
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @jaimerodriguez,
Yes, SemanticTextMemory (STM) is primarily intended for storing general knowledge or facts that can be shared across different LLM instances. It's not recommended to store user-specific details in STM. This is because STM is designed to be a shared resource, and storing sensitive user data could lead to privacy concerns.
To leverage memory within your plugins, you can use the following methods:
OpenAI doesn't provide a built-in memory system for storing user-specific data. While you can use the If you need to store persistent user-specific data, you'll need to use an external storage solution. Azure AI Search is a good option for this, as it provides a scalable and flexible way to store and retrieve data.
Hope this answers your queries. |
Beta Was this translation helpful? Give feedback.
Hey @jaimerodriguez,
Yes, SemanticTextMemory (STM) is primarily intended for storing general knowledge or facts that can be shared across different LLM instances. It's not recommended to store user-specific details in STM. This is because STM is designed to be a shared resource, and storing sensitive user data could lead to privacy concerns.
To leverage memory within your plugins, you can use the follo…