File size: 806 Bytes
26fe3e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#!/usr/bin/env python3
"""
Deep Research Assistant - Hugging Face Spaces Deployment
A comprehensive AI-powered research assistant with quality assurance.
"""
import os
import gradio as gr
from dotenv import load_dotenv
# Load environment variables
load_dotenv(override=True)
# Import the main interface from deep_research.py
from deep_research import ui
if __name__ == "__main__":
# Launch the interface
# For Hugging Face Spaces, we don't need inbrowser=True and we want to set share=False
ui.launch(
server_name="0.0.0.0", # Required for Hugging Face Spaces
server_port=7860, # Standard port for Gradio on HF Spaces
share=False, # Don't create public links on HF Spaces
inbrowser=False # Don't try to open browser on server
) |