Source code for swarmauri.core.tools.IParameter

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