nova-api/api/config/config.yml

28 lines
450 B
YAML
Raw Normal View History

2023-10-12 00:03:15 +02:00
start-credits: 1000 # Credits given to new users.
2023-10-12 00:03:15 +02:00
# Credit cost per API request.
costs:
2023-10-12 00:03:15 +02:00
other: 5 # Other endpoints
2023-10-12 00:03:15 +02:00
chat-models: # chat completions
2023-10-08 21:53:27 +02:00
gpt-4-32k: 200
2023-10-06 23:05:38 +02:00
gpt-4: 50
2023-10-08 21:53:27 +02:00
gpt-3: 10
## Roles Explanation
# Bonuses: They are a multiplier for costs
# They work like: final_cost = cost * bonus
roles:
owner:
bonus: 0
admin:
bonus: 0.2
helper:
bonus: 0.4
booster:
bonus: 0.6
default:
2023-08-18 21:23:00 +02:00
bonus: 1.0