spark_colony / core /constants.py
diwash-barla1's picture
refactor: decompose app into modular domain packages for v2.5
0f336cf
Raw
History Blame Contribute Delete
325 Bytes
# core/constants.py
TOKEN_RATES = {
"prompt": 0.000001,
"completion": 0.000002,
"reasoning": 0.000003,
"vision": 0.000005,
}
DEFAULT_MAX_COST_PER_MISSION = 1.00
DEFAULT_DAILY_BUDGET = 10.00
DEFAULT_SEARCH_DEPTH = 3
DEFAULT_BROWSER_POOL_SIZE = 5
DEFAULT_TIMEOUT_SECONDS = 120
DEFAULT_VISION_THRESHOLD = 0.85