We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1888e32 commit b1a54c1Copy full SHA for b1a54c1
2 files changed
blockrun_llm/types.py
@@ -126,9 +126,9 @@ class WebSearchSource(BaseModel):
126
type: Literal["web"] = "web"
127
country: Optional[str] = None # ISO alpha-2 country code
128
excluded_websites: Optional[List[str]] = None # Max 5 websites
129
- allowed_websites: Optional[
130
- List[str]
131
- ] = None # Max 5 websites (mutually exclusive with excluded)
+ allowed_websites: Optional[List[str]] = (
+ None # Max 5 websites (mutually exclusive with excluded)
+ )
132
safe_search: bool = True
133
134
pyproject.toml
@@ -36,7 +36,7 @@ dependencies = [
36
dev = [
37
"pytest>=7.0.0",
38
"pytest-asyncio>=0.21.0",
39
- "black>=23.0.0",
+ "black==24.10.0", # Pin version for consistent formatting
40
"mypy>=1.0.0",
41
"ruff>=0.1.0",
42
]
0 commit comments