mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
1.1 KiB
1.1 KiB
English | 中文
MemoryScope
Installation
(1) Docker-Compose (Recommanded)
-
Clone the project and edit the config.
git clone https://... nano config/demo_config_cn.yaml -
Edit
docker-compose.ymlto change environment variable.DASHSCOPE_API_KEY: "sk-0000000000" -
Run
docker-compose upto build and launch the memory-scope cli interface.
(2) Docker
-
Clone the project and edit the config.
git clone https://... nano config/demo_config_cn.yaml -
Build the
Dockerfilewith command:sudo docker build --network=host -t memoryscope . -
Run
ElasticSearchContainer with command:docker run -p 9200:9200 \ -e "discovery.type=single-node" \ -e "xpack.security.enabled=false" \ -e "xpack.license.self_generated.type=trial" \ docker.elastic.co/elasticsearch/elasticsearch:8.13.2 -
Launch the built image with command:
sudo docker run -it --rm --net=host memoryscope