Ollama(运行本地模型)
install:
docker stop ollama
docker run -d -p 11434:11434 -v /path/to/local/models:/root/.ollama/models --name ollama ollama/ollama
docker exec -it ollama ollama stop dengcao/Qwen3-Embedding-0.6B:F16
docker exec -it ollama ollama run dengcao/Qwen3-Embedding-0.6B:F16
docker exec -it ollama ollama run nomic-embed-text
PilotDeck(清华大学THUNLP实验室、面壁智能、OpenBMB与AI9stars联合研发的智能体操作系统)
install:
CentOS 8.5 64位(腾讯云服务器)
yum update
yum install git
git clone https://github.com/OpenBMB/PilotDeck.git(git clone https://gitcode.com/gh_mirrors/pi/PilotDeck.git)
wget https://raw.githubusercontent.com/OpenBMB/PilotDeck/main/install.sh
sh install.sh
yum install git
git clone https://github.com/OpenBMB/PilotDeck.git(git clone https://gitee.com/mstitop/PilotDeck.git)
安装docker:
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum install docker-ce-20.10.10 docker-ce-cli-20.10.10 containerd.io docker-compose-plugin
systemctl start docker(systemctl enable docker)(修改镜像为国内镜像)
cd PilotDeck
docker compose up -d
Coze(字节跳动)
install:
CentOS 8.5 64位(腾讯云服务器)
yum update
yum install git
git clone https://github.com/coze-dev/coze-studio.git(git clone https://gitcode.com/GitHub_Trending/co/coze-studio.git)
安装docker:
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum install docker-ce-20.10.10 docker-ce-cli-20.10.10 containerd.io docker-compose-plugin
systemctl start docker(systemctl enable docker)(修改镜像为国内镜像)
cd coze-studio/docker
cp .env.example .env
EMbedding模型需要在.env中配置,以及默认模型
设置模型api
cp backend/conf/model/template/model_template_ark_doubao-seed-1.6.yaml backend/conf/model/doubao-seed-2.0-lite.yaml
编辑backend/conf/model/doubao-seed-2.0-lite.yaml
base_url: "https://api.deepseek.com/v1"
api_key: "sk-xxxxxxxx"(https://platform.deepseek.com/申请)
model: "deepseek-reasoner"
docker compose up -d
Dify
install:
CentOS 8.5 64位(腾讯云服务器)
yum update
git clone https://gitcode.com/GitHub_Trending/di/dify.git
cd dify/docker
cp .env.example .env
docker compose up -d