Spaces:
Sleeping
Sleeping
File size: 272 Bytes
a66b4d7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from dotenv import load_dotenv
from rag_core.runtime import CareerQARuntime
from rag_core.ui import build_demo
def main() -> None:
load_dotenv()
runtime = CareerQARuntime()
demo = build_demo(runtime)
demo.launch()
if __name__ == "__main__":
main()
|