chore(main.py): remove deprecated fallback tool arguments to simplify configuration and reduce complexity
This commit is contained in:
parent
69281c31db
commit
7c828053d3
|
|
@ -153,22 +153,11 @@ Examples:
|
||||||
action="store_false",
|
action="store_false",
|
||||||
help="Whether to disable token limiting for Anthropic Claude react agents. Token limiter removes older messages to prevent maximum token limit API errors.",
|
help="Whether to disable token limiting for Anthropic Claude react agents. Token limiter removes older messages to prevent maximum token limit API errors.",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
|
||||||
"--no-fallback-tool",
|
|
||||||
action="store_true",
|
|
||||||
help="Disable fallback model switching.",
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--experimental-fallback-handler",
|
"--experimental-fallback-handler",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Enable experimental fallback handler.",
|
help="Enable experimental fallback handler.",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
|
||||||
"--fallback-tool-models",
|
|
||||||
type=str,
|
|
||||||
default="gpt-3.5-turbo,gpt-4",
|
|
||||||
help="Comma-separated list of fallback models to use in order.",
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--recursion-limit",
|
"--recursion-limit",
|
||||||
type=int,
|
type=int,
|
||||||
|
|
@ -471,16 +460,12 @@ def main():
|
||||||
)
|
)
|
||||||
_global_memory["config"]["planner_model"] = args.planner_model or args.model
|
_global_memory["config"]["planner_model"] = args.planner_model or args.model
|
||||||
|
|
||||||
_global_memory["config"]["no_fallback_tool"] = args.no_fallback_tool
|
|
||||||
|
|
||||||
# Store research config with fallback to base values
|
# Store research config with fallback to base values
|
||||||
_global_memory["config"]["research_provider"] = (
|
_global_memory["config"]["research_provider"] = (
|
||||||
args.research_provider or args.provider
|
args.research_provider or args.provider
|
||||||
)
|
)
|
||||||
_global_memory["config"]["research_model"] = args.research_model or args.model
|
_global_memory["config"]["research_model"] = args.research_model or args.model
|
||||||
|
|
||||||
# Store fallback tool configuration
|
|
||||||
_global_memory["config"]["no_fallback_tool"] = args.no_fallback_tool
|
|
||||||
# Store temperature in global config
|
# Store temperature in global config
|
||||||
_global_memory["config"]["temperature"] = args.temperature
|
_global_memory["config"]["temperature"] = args.temperature
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue