/ open-webui.git
/ app
/ env
/ lib64
/ python3.11
/ site-packages
/ chromadb
/ server
/ __init__.py
Run
Starting...
Stop
View File
Save
from abc import ABC, abstractmethod from chromadb.config import Settings class Server(ABC): @abstractmethod def __init__(self, settings: Settings): pass
Memory