Files
ALwrity/lib/alwrity_ui/alwrity_researcher/main.py
2025-06-30 07:49:48 +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()