File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 6464MIN_IMPROVEMENT = 0.10 # Minimum improvement threshold for Bayesian pathway
6565
6666# Model API configuration
67- MAX_TOKENS_REASONING = 6144 # Maximum tokens for reasoning mode (allows full reasoning chains)
67+ MAX_TOKENS_REASONING = (
68+ 6144 # Maximum tokens for reasoning mode (allows full reasoning chains)
69+ )
6870
6971
7072def parse_args () -> argparse .Namespace :
@@ -740,7 +742,9 @@ def generate_config(
740742 model_lower = model .lower ()
741743 if "qwen3" in model_lower :
742744 reasoning_family = "qwen3"
743- elif "deepseek" in model_lower and re .search (r"v3(?:[._]?1(?:\.\d+)?)?" , model_lower ):
745+ elif "deepseek" in model_lower and re .search (
746+ r"v3(?:[._]?1(?:\.\d+)?)?" , model_lower
747+ ):
744748 reasoning_family = "deepseek"
745749 elif "gpt-oss" in model_lower :
746750 reasoning_family = "gpt-oss"
You can’t perform that action at this time.
0 commit comments