Cyril Dupland commited on
Commit ·
33e0e5a
1
Parent(s): 7e60792
Update pricing settings for 'mistral-small-latest' and add new model 'mistral-small-2603': Adjust input and output rates for the 'mistral-small-latest' model and introduce pricing for the new 'mistral-small-2603' model to enhance cost management in the agent's operations.
Browse files- config/settings.py +2 -1
config/settings.py
CHANGED
|
@@ -63,7 +63,8 @@ class Settings(BaseSettings):
|
|
| 63 |
pricing: dict = {
|
| 64 |
# Complete or override in .env via nested JSON if needed
|
| 65 |
"mistral-medium-latest": {"input_per_1m": 0.40, "output_per_1m": 2.00},
|
| 66 |
-
"mistral-small-latest": {"input_per_1m": 0.
|
|
|
|
| 67 |
"mistral-large-latest": {"input_per_1m": 2.00, "output_per_1m": 6.00},
|
| 68 |
"magistral-small-latest": {"input_per_1m": 0.50, "output_per_1m": 1.50},
|
| 69 |
"magistral-medium-latest": {"input_per_1m": 2.00, "output_per_1m": 5.00},
|
|
|
|
| 63 |
pricing: dict = {
|
| 64 |
# Complete or override in .env via nested JSON if needed
|
| 65 |
"mistral-medium-latest": {"input_per_1m": 0.40, "output_per_1m": 2.00},
|
| 66 |
+
"mistral-small-latest": {"input_per_1m": 0.15, "output_per_1m": 0.60},
|
| 67 |
+
"mistral-small-2603": {"input_per_1m": 0.15, "output_per_1m": 0.60},
|
| 68 |
"mistral-large-latest": {"input_per_1m": 2.00, "output_per_1m": 6.00},
|
| 69 |
"magistral-small-latest": {"input_per_1m": 0.50, "output_per_1m": 1.50},
|
| 70 |
"magistral-medium-latest": {"input_per_1m": 2.00, "output_per_1m": 5.00},
|