
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
https://github.com/sakowicz/actual-ai
https://github.com/sakowicz/actual-aihttps://github.com/sakowicz/actual-aihttps://github.com/sakowicz/actual-aihttps://actualbudget.org/ using https://openai.com/api/pricing/, https://www.***.com/pricing#***-api, Google Generative AI, https://github.com/ollama/ollama or any other compatible API (including OpenRouter).
📊 Classify transactions using LLM
The app sends requests to the LLM to classify transactions based on their description, amount, and notes.
🔄 Sync accounts before classification
🕒 Classify transactions on a cron schedule
❌ When a transaction cannot be classified, it is marked in Notes as "not guessed," and it will not be classified again.
✅ Every guessed transaction is marked as guessed in notes, so you can review the classification.
🌱 Suggest and create new categories for transactions that don't fit existing ones
When enabled, the LLM can suggest entirely new categories for transactions it cannot classify, and optionally create them automatically.
🌐 Web search for unfamiliar merchants
Using the ValueSerp API, the system can search the web for information about unfamiliar merchants to help the LLM make better categorization decisions.
🔎 Free web search alternative
A self-hosted alternative to ValueSerp that uses free public search API (DuckDuckGo) to search for merchant information without requiring an API key or deploying any additional app/service. Just add freeWebSearch to your FEATURES array:
FEATURES: '["classifyOnStartup", "syncAccountsBeforeClassify", "freeWebSearch"]'
🔄 Re-run missed transactions
Re-process transactions previously marked as unclassified.
Sample docker-compose.yml file:
yamlservices: actual_server: image: docker.io/actualbudget/actual-server:latest ports: - '5006:5006' volumes: - ./actual-data:/data restart: unless-stopped actual-ai: image: docker.io/sakowicz/actual-ai:latest restart: unless-stopped depends_on: actual_server: condition: service_healthy environment: ACTUAL_SERVER_URL: http://actual_server:5006 ACTUAL_PASSWORD: your_actual_password ACTUAL_BUDGET_ID: your_actual_budget_sync_id # This is the ID from Settings → Show advanced settings → Sync ID CLASSIFICATION_SCHEDULE_CRON: 0 */4 * * * # How often to run classification. LLM_PROVIDER: openai # Can be "openai", "openrouter", "anthropic", "google-generative-ai", "ollama" or "groq" FEATURES: '["classifyOnStartup", "syncAccountsBeforeClassify", "freeWebSearch", "suggestNewCategories"]' # VALUESERP_API_KEY: your_valueserp_api_key # API key for ValueSerp, required if webSearch tool is enabled # OPENAI_API_KEY: # optional. required if you want to use the OpenAI API # OPENAI_MODEL: # optional. required if you want to use a specific model, default is "gpt-5-mini" # OPENAI_BASE_URL: # optional. required if you don't want to use the OpenAI API but OpenAI compatible API, ex: "http://ollama:11424/v1 # OPENROUTER_API_KEY: # optional. required if you want to use OpenRouter # OPENROUTER_MODEL: # optional. default is "deepseek/deepseek-v3.2" # OPENROUTER_BASE_URL: # optional. default: "https://openrouter.ai/api/v1" # OPENROUTER_REFERRER: # optional but recommended by OpenRouter (or OPENROUTER_REFERER) # OPENROUTER_TITLE: # optional. default: "actual-ai" # LLM_TIMEOUT_MS: # optional. request timeout in ms for LLM calls, default: 120000 # OPENROUTER_ENABLE_TOOL_CALLING: # optional. "true" to allow model tool-calling on openrouter, default: false # ANTHROPIC_API_KEY: # optional. required if you want to use the Anthropic API # ANTHROPIC_MODEL: # optional. required if you want to use a specific model, default is "claude-3-5-sonnet-latest" # ANTHROPIC_BASE_URL: # optional. default: "https://api.anthropic.com/v1 # GOOGLE_GENERATIVE_AI_API_KEY: # optional. required if you want to use the Google Generative AI API # GOOGLE_GENERATIVE_AI_MODEL: # optional. required if you want to use a specific model, default is "gemini-1.5-flash" # GOOGLE_GENERATIVE_AI_BASE_URL: # optional. default: "https://generativelanguage.googleapis.com" # OLLAMA_MODEL=llama3.1 optional. required if you want to use an Ollama specific model, default is "phi3.5" # OLLAMA_BASE_URL=http://localhost:11434/api # optional. required for ollama provider # GROQ_API_KEY: # optional. required if you want to use the Groq API # GROQ_MODEL: # optional. required if you want to use a specific model, default is "mixtral-8x7b-32768" # GROQ_BASE_URL: # optional. default: "https://api.groq.com/openai/v1" # ACTUAL_E2E_PASSWORD: # optional. required if you have E2E encryption # NODE_TLS_REJECT_UNAUTHORIZED: 0 # optional. required if you have trouble connecting to Actual server # NOT_GUESSED_TAG=#actual-ai-miss # GUESSED_TAG=#actual-ai
You can configure features using FEATURES (JSON array) or ENABLED_FEATURES (comma-separated list or JSON array):
The FEATURES environment variable accepts a JSON array of feature names to enable:
FEATURES='["freeWebSearch", "suggestNewCategories", "classifyOnStartup", "syncAccountsBeforeClassify"]' # Equivalent: ENABLED_FEATURES='freeWebSearch,suggestNewCategories,classifyOnStartup,syncAccountsBeforeClassify'
Available features:
webSearch - Enable web search for merchant informationfreeWebSearch - Enable free web search for merchant information (self-hosted alternative to ValueSerp)suggestNewCategories - Allow suggesting new categories for transactionsclassifyOnStartup - Run classification when the application startssyncAccountsBeforeClassify - Sync accounts before running classificationdryRun - Run in dry run mode (enabled by default)rerunMissedTransactions - Re-process transactions previously marked as unclassifieddisableRateLimiter - Disable Rate LimiterBy default each provider gets a conservative request/token-per-minute limit. You can override these per deployment with two environment variables — useful when your plan's actual limits differ from the built-in defaults (e.g. Google AI Free Tier sits well below the default 300 RPM):
REQUESTS_PER_MINUTE — proactive request-per-minute capTOKENS_PER_MINUTE — proactive token-per-minute capEach variable supports three states:
0 — disable that axis of proactive rate limiting (the provider's own 429 responses still drive reactive backoff)To turn off rate limiting entirely, add disableRateLimiter to your FEATURES array instead.
By default, model tool-calling is disabled when LLM_PROVIDER=openrouter because some gateway/model com***ations can return unstable tool-call responses. You can re-enable it with:
OPENROUTER_ENABLE_TOOL_CALLING=true
To create a custom pro***, modify the PROMPT_TEMPLATE environment variable to include or exclude variables as needed.
Ensure that the Handlebars syntax is correctly used to handle conditional rendering and
loops.
categoryGroups: An array of category group objects. Each category group contains an array of categories.
categoryGroup is object with the following properties:
id: The ID of the category group.name: The name of the category group.categories: An array of category objects.
category is an object with the following properties:
id: The ID of the category.name: The name of the category.amount: The absolute value of the transaction amount.type: The type of transaction, either 'Income' or 'Outcome'.description: The notes or description of the transaction. This is taken from transaction.notes.payee: The name of the payee associated with the transaction. This is found by matching the payee ID in the
transaction with the payee list.importedPayee: The imported payee name from the transaction. This is taken from transaction.imported_payee.date: The date of the transaction. This is taken from transaction.date.cleared: A boolean indicating if the transaction is cleared. This is taken from transaction.cleared.reconciled: A boolean indicating if the transaction is reconciled. This is taken from transaction.reconciled.When suggestNewCategories feature is enabled, the system will:
dryRun is enabled), just log the suggestionsThis feature is particularly useful when you have transactions that don't fit your current category structure and you want the LLM to help expand your categories intelligently.
The system supports various tools that can be enabled to enhance the LLM's capabilities:
FEATURES array or by setting ENABLED_TOOLSCurrently supported tools:
The webSearch tool uses the ValueSerp API to search for information about merchants that the LLM might not be familiar with, providing additional context for categorization decisions.
To use this tool:
webSearch in your FEATURES array or ENABLED_TOOLS listVALUESERP_API_KEY (required)This is especially helpful for:
The search results are included in the pro***s sent to the LLM, helping it make more accurate category assignments or suggestions.
The dryRun feature is enabled by default. In this mode:
To perform actual changes:
dryRun from your FEATURES arraysuggestNewCategories is enabled if you want new category creationDry run messages will show:
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务