83efe3816f
- Add Config class with all env var defaults in one place - Auto-load saved config on startup (env vars take precedence) - Auto-save config after successful LLM warm-up - Replace scattered os.getenv() calls with Config.get() Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
72 lines
1.9 KiB
Python
72 lines
1.9 KiB
Python
import os
|
|
|
|
from strix.config import Config
|
|
|
|
from .executor import (
|
|
execute_tool,
|
|
execute_tool_invocation,
|
|
execute_tool_with_validation,
|
|
extract_screenshot_from_result,
|
|
process_tool_invocations,
|
|
remove_screenshot_from_result,
|
|
validate_tool_availability,
|
|
)
|
|
from .registry import (
|
|
ImplementedInClientSideOnlyError,
|
|
get_tool_by_name,
|
|
get_tool_names,
|
|
get_tools_prompt,
|
|
needs_agent_state,
|
|
register_tool,
|
|
tools,
|
|
)
|
|
|
|
|
|
SANDBOX_MODE = os.getenv("STRIX_SANDBOX_MODE", "false").lower() == "true"
|
|
|
|
HAS_PERPLEXITY_API = bool(Config.get("perplexity_api_key"))
|
|
|
|
DISABLE_BROWSER = (Config.get("strix_disable_browser") or "false").lower() == "true"
|
|
|
|
if not SANDBOX_MODE:
|
|
from .agents_graph import * # noqa: F403
|
|
|
|
if not DISABLE_BROWSER:
|
|
from .browser import * # noqa: F403
|
|
from .file_edit import * # noqa: F403
|
|
from .finish import * # noqa: F403
|
|
from .notes import * # noqa: F403
|
|
from .proxy import * # noqa: F403
|
|
from .python import * # noqa: F403
|
|
from .reporting import * # noqa: F403
|
|
from .terminal import * # noqa: F403
|
|
from .thinking import * # noqa: F403
|
|
from .todo import * # noqa: F403
|
|
|
|
if HAS_PERPLEXITY_API:
|
|
from .web_search import * # noqa: F403
|
|
else:
|
|
if not DISABLE_BROWSER:
|
|
from .browser import * # noqa: F403
|
|
from .file_edit import * # noqa: F403
|
|
from .proxy import * # noqa: F403
|
|
from .python import * # noqa: F403
|
|
from .terminal import * # noqa: F403
|
|
|
|
__all__ = [
|
|
"ImplementedInClientSideOnlyError",
|
|
"execute_tool",
|
|
"execute_tool_invocation",
|
|
"execute_tool_with_validation",
|
|
"extract_screenshot_from_result",
|
|
"get_tool_by_name",
|
|
"get_tool_names",
|
|
"get_tools_prompt",
|
|
"needs_agent_state",
|
|
"process_tool_invocations",
|
|
"register_tool",
|
|
"remove_screenshot_from_result",
|
|
"tools",
|
|
"validate_tool_availability",
|
|
]
|