Files
igny8/backend/igny8_core/modules/billing/constants.py
2025-11-09 10:27:02 +00:00

23 lines
423 B
Python

"""
Credit Cost Constants
"""
CREDIT_COSTS = {
'clustering': {
'base': 1, # 1 credit per 30 keywords
'per_keyword': 1 / 30,
},
'ideas': {
'base': 1, # 1 credit per idea
},
'content': {
'base': 3, # 3 credits per full blog post
},
'images': {
'base': 1, # 1 credit per image
},
'reparse': {
'base': 1, # 1 credit per reparse
},
}