Spaces:
Running
on
Zero
Running
on
Zero
File size: 730 Bytes
f68e708 |
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 26 27 28 29 30 31 32 |
#!/usr/bin/env python3
"""
PVB Flow - Hugging Face Spaces Version
Product Vision Board to Mermaid diagram generation with Mistral API.
"""
import gradio as gr
import os
from pathlib import Path
# Import custom modules
from src.ui.spaces_interface import create_spaces_interface
def main():
"""Main entry point for the Hugging Face Spaces app."""
# Create the Gradio interface
interface = create_spaces_interface()
# Launch with specific settings for HF Spaces
port = int(os.environ.get("GRADIO_SERVER_PORT", 7860))
interface.launch(
server_name="0.0.0.0",
server_port=port,
share=False,
show_error=True,
quiet=False
)
if __name__ == "__main__":
main()
|