Source code for oumi.environments.executable_tool

# Copyright 2025 - Oumi
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Tool params base for tools that declare a dotted-path executor."""

from __future__ import annotations

from dataclasses import dataclass

from oumi.core.configs.params.tool_params import ToolParams


[docs] @dataclass class ExecutableTool(ToolParams): """`ToolParams` variant for envs that take user-supplied dotted-path executors."""
[docs] def __post_init__(self) -> None: """Validate inherited fields and enforce non-empty executor.""" super().__post_init__() if not self.executor: raise ValueError( f"{type(self).__name__} '{self.id}' must declare a non-empty " f"executor (dotted import path)." )