Files
llm/backend/ai/injector.py
wea_ondara 41474d474c added backend which maintains ai instances;
added frontend as control panel
2024-04-24 19:40:03 +02:00

9 lines
235 B
Python

from injector import Binder, Module, singleton
from .services.AiService import AiService
class InjectorModule(Module):
def configure(self, binder: Binder) -> None:
binder.bind(AiService, to=AiService(), scope=singleton)