GenProp / app.py
adrien.aribaut-gaudin
fix: json loads for the requirements file
f343031
raw
history blame contribute delete
No virus
325 Bytes
from config import config
from src.control.controller import Controller
import src.view.view as view
import chromadb
from src.retriever.retriever import Retriever
client_db = chromadb.Client()
ctrl = Controller(config, client_db, retriever=Retriever())
app = view.run(controller=ctrl, config=config)
app.queue().launch()