Skip to content

Commit 65b73ae

Browse files
committed
fix settings
1 parent 6d11409 commit 65b73ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controlflow/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def _validate_home_path(cls, v):
134134
v.mkdir(parents=True, exist_ok=True)
135135
return v
136136

137-
@field_validator("model", mode="before")
137+
@field_validator("llm_model", mode="before")
138138
def _validate_model(cls, v):
139139
if not litellm.supports_function_calling(model=v):
140140
raise ValueError(f"Model '{v}' does not support function calling.")

0 commit comments

Comments
 (0)