Skip to content

Commit 38bc8b1

Browse files
committed
add https_verify config support
1 parent bf7af36 commit 38bc8b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/autocoder/auto_coder.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,8 @@ def main(input_args: Optional[List[str]] = None):
268268
"saas.api_key": model_info["api_key"],
269269
"saas.model": model_info["model_name"],
270270
"saas.is_reasoning": model_info["is_reasoning"],
271-
"saas.max_output_tokens": model_info.get("max_output_tokens", 8096)
271+
"saas.max_output_tokens": model_info.get("max_output_tokens", 8096),
272+
"saas.https_verify": model_info.get("https_verify", True),
272273
}
273274
)
274275

0 commit comments

Comments
 (0)