Spaces:
Sleeping
Sleeping
Commit ·
f606cc0
1
Parent(s): 89cec98
fix: update max_tokens test to match config value (8192)
Browse filesCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- tests/test_settings.py +1 -1
tests/test_settings.py
CHANGED
|
@@ -26,7 +26,7 @@ class TestSettings:
|
|
| 26 |
|
| 27 |
def test_max_tokens_property(self):
|
| 28 |
from config.settings import settings
|
| 29 |
-
assert settings.max_tokens ==
|
| 30 |
|
| 31 |
def test_temperature_property(self):
|
| 32 |
from config.settings import settings
|
|
|
|
| 26 |
|
| 27 |
def test_max_tokens_property(self):
|
| 28 |
from config.settings import settings
|
| 29 |
+
assert settings.max_tokens == 8192
|
| 30 |
|
| 31 |
def test_temperature_property(self):
|
| 32 |
from config.settings import settings
|