mentalwellness / app.py
invincible-jha
Update interface for Gradio 5.8.0
76166e3
raw
history blame
445 Bytes
import gradio as gr
from interface.app import WellnessInterface
from config.config import load_config
def main():
# Load configuration
config = load_config()
# Initialize interface
interface = WellnessInterface(config)
# Launch the application
interface.launch(
share=True,
enable_queue=True,
server_name="0.0.0.0",
server_port=7860
)
if __name__ == "__main__":
main()