nemoguardrails.server.datastore.datastore
Module Contents
Classes
API
A basic data store interface.
async
Return the value for the specified key. Args: key: The key to lookup.
Returns: Optional[str]
None if the key does not exist.
async
Save data into the datastore.
Parameters:
key
The key to use.
value
The value associated with the key.
Returns:
None