Contents:
SDK:
Examples:
from abc import ABC, abstractmethod from typing import List, Union [docs] class IParameter(ABC): """ An abstract class to represent a parameter for a tool. """ pass