Files
ALwrity/ToBeMigrated/alwrity_ui/alwrity_researcher/main.py
2025-08-06 16:29:49 +05:30

14 lines
270 B
Python

import streamlit as st
import sys
import os
from pathlib import Path
# Add the current directory to the path
sys.path.append(str(Path(__file__).parent))
# Import the dashboard module
from dashboard import main
# Run the dashboard
if __name__ == "__main__":
main()