This is a project that allows you to categorize uncategorized transactions for Actual Budget using OpenAI, Anthropic, Google Generative AI, Ollama or any other compatible API.
The app sends requests to the LLM to classify transactions based on their description, amount, and notes.
When enabled, the LLM can suggest entirely new categories for transactions it cannot classify, and optionally create them automatically.
Using the ValueSerp API, the system can search the web for information about unfamiliar merchants to help the LLM make better categorization decisions.
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-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 environment: ACTUAL_SERVER_URL: [***] ACTUAL_PASSWORD: your_actual_password ACTUAL_BUDGET_ID: your_actual_budget_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", "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-4o-mini" # OPENAI_BASE_URL: # optional. required if you don't want to use the OpenAI API but OpenAI compatible API, ex: "[***] # 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: "[***] # 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: "[***]" # OLLAMA_MODEL=llama3.1 optional. required if you want to use an Ollama specific model, default is "phi3.5" # OLLAMA_BASE_URL=http://localhost:***/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: "[***]" # 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 in using the FEATURES array (recommended):
The FEATURES environment variable accepts a JSON array of feature names to enable:
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 LimiterTo create a custom prompt, 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 prompts 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:
来自真实用户的反馈,见证轩辕镜像的优质服务
免费版仅支持 Docker Hub 加速,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
免费版仅支持 docker.io;专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像加速服务
在 Docker Desktop 配置镜像加速
Docker Compose 项目配置加速
Kubernetes 集群配置 Containerd
在宝塔面板一键配置镜像加速
Synology 群晖 NAS 配置加速
飞牛 fnOS 系统配置镜像加速
极空间 NAS 系统配置加速服务
爱快 iKuai 路由系统配置加速
绿联 NAS 系统配置镜像加速
QNAP 威联通 NAS 配置加速
Podman 容器引擎配置加速
HPC 科学计算容器配置加速
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名加速
需要其他帮助?请查看我们的 常见问题 或 官方QQ群: 13763429