Files
geo/server/configs/config.local.yaml.example
T
root b31d8d0096 feat(migrations): Harden task audit tracking and optimize article templates
- Added migration to harden task audit tracking by modifying audit_logs and related tables.
- Introduced operator_id to several tables for better tracking of actions.
- Updated article_templates with new prompt templates for various article types, enhancing content generation.
- Created prompt_rules and schedule_tasks tables to manage content generation rules and scheduling.
- Added foreign key constraints to articles for better data integrity.
2026-04-02 00:31:28 +08:00

39 lines
729 B
Plaintext

# Copy this file to config.local.yaml and adjust values for your local environment.
# config.local.yaml is gitignored.
server:
port: 8080
mode: debug
database:
host: localhost
port: 5432
user: geo
password: geo_dev
dbname: geo
redis:
addr: localhost:6379
jwt:
secret: "your-local-secret"
llm:
provider: ark
base_url: https://ark.cn-beijing.volces.com/api/v3
model: doubao-seed-2-0-lite-260215
timeout: 2m
max_output_tokens: 4000
temperature: 0.7
reasoning_effort: minimal
web_search_limit: 3
# top_p: 0.95
# Prefer environment override for secrets:
# export LLM_API_KEY=your-api-key
generation:
queue_size: 128
worker_concurrency: 1
stream_enabled: false
article_timeout: 8m