Feature Updates
- New Feature: Added categories for agent applications.
- New Feature: Major update! Support for Dify agent integration 🎉🎉🎉.
- Optimization: Removed the login and registration pages, replaced with a popup login window.
- New Feature: Major update! Support for WeChat QR code login and SMS verification code login 🎉🎉🎉.
- Optimization: Improved the frontend application list page, supporting category filtering and keyword search.
- Optimization: Enhanced the expand/collapse functionality for code blocks.
1. Upgrade the Image
First, modify the docker-compose.yaml
file to upgrade the image version to v1.0.3
.
geek-agent-api:
image: registry.cn-shenzhen.aliyuncs.com/geekmaster/geek-agent-api:v1.0.3-amd64
container_name: geek-agent-api
restart: always
ports:
- "6789:6789"
volumes:
- /usr/share/zoneinfo/Asia/Shanghai:/etc/localtime
- ./conf/config.toml:/var/www/app/config.toml
- ./logs:/var/www/app/logs
- ./static:/var/www/app/static
environment:
- LOG_LEVEL=info
- CONFIG_FILE=config.toml
geek-agent-web:
image: registry.cn-shenzhen.aliyuncs.com/geekmaster/geek-agent-web:v1.0.3-amd64
container_name: geek-agent-web
restart: always
depends_on:
- geek-agent-api
ports:
- "8081:8080"
volumes:
- ./logs/nginx:/var/log/nginx
- ./conf/nginx/conf.d:/etc/nginx/conf.d
- ./conf/nginx/nginx.conf:/etc/nginx/nginx.conf
Then, restart the GeekAI-Agent container service.
docker-compose down
docker-compose up -d
2. Update System Configuration
GeekAI-Agent v1.0.3 primarily adds service configurations for verification codes and WeChat login. These are used to enable SMS verification code login and WeChat login. Configure these in the "Value-added Services" menu in the backend management.
WeChat Login Configuration
3. Other Feature Update Screenshots
- Support for application categories and search filtering.
Dify agent integration. Please refer to the documentation Dify Agent Configuration.
Support for verification code login and WeChat QR code login.