Files
pj0235-eai_agentplatform/.env.example
T
eaiadmin 011f722999 feat: 专员 JSON 配置体系 + 配图提示词规则重构
- 新增配图提示词 JSON 规则(image_prompt.json):封面图 + 每 500 字按字数分布
- 新增 Go 配置加载器(weixin_public_account_image_prompt_config.go):从嵌入的 spec 目录读取 JSON 配置
- 新增 weixin_public_account 完整 spec 目录:skill.md, workflow.json, domains.json, policy.json, validators/
- 新增 pj0012 参考文件(pj0012-wechat-image-spec.md):配图规则 + 专员 JSON 定义体系
- 产物 Tab 添加下载按钮 + 整体导出区
- 修复前端 Markdown 渲染 bug + 步骤消息分段问题

所有专员定义向 JSON 配置迁移,以 weixin_public_account 为样板。
2026-09-24 23:01:06 +08:00

55 lines
1.4 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ================================================================
# EAI AgentPlatform 环境变量配置
# ================================================================
# 复制此文件为 .env 并填入实际值:
# cp .env.example .env
# ================================================================
# ---------- 后端服务 ----------
# 后端 API 端口
PORT=8080
# SQLite 数据库路径
DB_PATH=./data/eai_agentplatform.db
# JWT 密钥(生产环境请修改)
JWT_SECRET=change-this-to-a-strong-secret-in-production
JWT_EXPIRE_MINUTES=480
# ---------- AI 服务 ----------
# LLM 服务地址(llamacpp 默认 8080)
LLM_BASE_URL=http://127.0.0.1:8080/v1
LLM_API_KEY=local
LLM_MODEL=Qwen3.5-4B-Q4_K_M.gguf
# 向量嵌入模型
EMBED_MODEL=bge-m3
# ---------- 知识库 ----------
KB_DATA_DIR=./data/kb_data
KNOWLEDGE_SOURCE_DIR=./assets/knowledge/source
TRAINING_MATERIALS_DIR=./assets/training/materials
# ---------- 备份 ----------
BACKUP_ENABLED=true
BACKUP_DIR=./data/backups
BACKUP_KEEP=7
BACKUP_INTERVAL_HOURS=24
# ---------- 文件上传限制 ----------
FILE_MAX_SIZE_DOC=209715200
FILE_MAX_SIZE_VIDEO=2147483648
CHUNK_THRESHOLD=104857600
# ---------- 文档转换 ----------
LIBREOFFICE_BIN=libreoffice
PDFTOTEXT_BIN=pdftotext
# ---------- 金蝶集成 ----------
# KINGDEE_BASE_URL=
# KINGDEE_ACCOUNT_ID=
# KINGDEE_USERNAME=
# KINGDEE_PASSWORD=
# KINGDEE_LCID=2052
# KINGDEE_TIMEOUT_SEC=15