Files
ai-agent-book/chapter3/user-memory/env.example
T
liqiang b119135836
Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
ai-agent-book 精选快照(<2MB 代码与文档,来自 github.com/bojieli/ai-agent-book)
2026-08-20 13:12:50 +00:00

55 lines
1.9 KiB
Plaintext

# User Memory System Configuration
# Provider Selection (default: kimi)
# Options: dashscope (== qwen/bailian), kimi (== moonshot), siliconflow, doubao, openrouter
PROVIDER=kimi
# API Keys — set the one(s) for the provider(s) you use
MOONSHOT_API_KEY=your_moonshot_api_key_here # for kimi / moonshot
DASHSCOPE_API_KEY=your_dashscope_api_key_here # for dashscope / qwen / bailian
SILICONFLOW_API_KEY=your_siliconflow_api_key_here
DOUBAO_API_KEY=your_doubao_api_key_here
# OpenRouter: usable as an explicit PROVIDER, and also a universal fallback —
# if the configured provider's key is missing but OPENROUTER_API_KEY is set,
# the agent auto-routes through OpenRouter (kimi-k3 -> moonshotai/kimi-k2.6;
# set OPENROUTER_MODEL to override).
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Model Settings
# Leave MODEL_NAME empty to use each provider's built-in default
# (dashscope -> qwen3.7-plus, kimi -> kimi-k3, siliconflow -> Qwen/Qwen3-235B-A22B-Thinking-2507,
# doubao -> doubao-seed-1-6-thinking-250715, openrouter -> google/gemini-3.5-flash)
MODEL_NAME=kimi-k3
MODEL_TEMPERATURE=0.3
# Reasoning models (e.g. kimi-k3, gpt-5) require max_tokens >= 2048 and only
# accept temperature=1; the code applies temperature=1 automatically for them.
MODEL_MAX_TOKENS=4096
# Memory Configuration
# Options: notes, enhanced_notes, json_cards, advanced_json_cards
MEMORY_MODE=notes
MAX_MEMORY_ITEMS=100
MEMORY_UPDATE_TEMPERATURE=0.2
# Dify Configuration (Optional - for conversation history search)
DIFY_API_KEY=your_dify_api_key_here
DIFY_BASE_URL=https://api.dify.ai/v1
DIFY_DATASET_ID=your_dataset_id
ENABLE_HISTORY_SEARCH=false
# Session Configuration
SESSION_TIMEOUT=3600
MAX_CONTEXT_LENGTH=8000
# LOCOMO Benchmark Paths
LOCOMO_DATASET_PATH=data/locomo
LOCOMO_OUTPUT_DIR=results/locomo
# Storage Paths
MEMORY_STORAGE_DIR=data/memories
CONVERSATION_HISTORY_DIR=data/conversations
# Logging
LOG_LEVEL=INFO
LOG_FILE=logs/user_memory.log