This commit is contained in:
Timothy Jaeryang Baek
2026-08-31 00:46:34 -04:00
parent 188fc83a79
commit 9962d122c9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -731,7 +731,7 @@ async def set_code_execution_config(
class ModelsConfigForm(BaseModel):
DEFAULT_MODELS: str | None
DEFAULT_PINNED_MODELS: str | None
MODEL_ORDER_LIST: list[str | None]
MODEL_ORDER_LIST: list[str] | None
DEFAULT_MODEL_METADATA: dict | None = None
DEFAULT_MODEL_PARAMS: dict | None = None
+1 -1
View File
@@ -790,7 +790,7 @@ class WebConfig(BaseModel):
WEB_SEARCH_TRUST_ENV: bool | None = None
WEB_SEARCH_RESULT_COUNT: int | None = None
WEB_SEARCH_CONCURRENT_REQUESTS: int | None = None
WEB_SEARCH_DOMAIN_FILTER_LIST: list[str | None] = []
WEB_SEARCH_DOMAIN_FILTER_LIST: list[str] | None = []
WEB_FETCH_MAX_CONTENT_LENGTH: int | None = None
WEB_LOADER_CONCURRENT_REQUESTS: int | None = None
BYPASS_WEB_SEARCH_EMBEDDING_AND_RETRIEVAL: bool | None = None