We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da13173 commit 8706719Copy full SHA for 8706719
1 file changed
tests/agent_core/test_props.py
@@ -10,7 +10,6 @@
10
ModelConfig,
11
)
12
13
-
14
# -- ModelConfig tests --
15
16
@@ -39,16 +38,12 @@ def test_model_config_custom_values():
39
38
40
41
def test_model_config_budget_tokens_must_be_less_than_max_tokens():
42
- with pytest.raises(
43
- ValueError, match="budget_tokens must be less than max_tokens"
44
- ):
+ with pytest.raises(ValueError, match="budget_tokens must be less than max_tokens"):
45
ModelConfig(max_tokens=8000, budget_tokens=8000)
46
47
48
def test_model_config_budget_tokens_greater_than_max_tokens_raises():
49
50
51
52
ModelConfig(max_tokens=4000, budget_tokens=5000)
53
54
0 commit comments