Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Aroqheo
/
qwqq
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
qwqq
/
memory_container.py
Aroqheo
部署 Qwqq 全功能节点
8f6c55d
11 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
176 Bytes
memory = {}
def
remember
(
user_id, message
):
if
user_id
not
in
memory:
memory[user_id] = []
memory[user_id].append(message)
return
f"已记录:
{message}
"