/ open-webui.git
/ app
/ env
/ lib64
/ python3.11
/ site-packages
/ moto
/ stepfunctions
/ parser
/ asl
/ component
/ component.py
Run
Starting...
Stop
View File
Save
import abc class Component(abc.ABC): def __str__(self): return f"({self.__class__.__name__}| {vars(self)}" def __repr__(self): return str(self)
Memory