Spaces:
Running
Running
File size: 855 Bytes
634b663 715bb35 a970131 e2d3712 715bb35 9fb4088 0a632f8 715bb35 b6fc6b8 715bb35 225aa4f 715bb35 091b994 715bb35 18dcd5e 715bb35 |
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 |
"""
AnyCoder - AI Code Generator
Main application entry point - now with modular architecture!
"""
# Import initialization functions from modules
from anycoder_app.docs_manager import (
initialize_gradio_docs,
initialize_comfyui_docs,
initialize_fastrtc_docs
)
from anycoder_app.ui import demo
if __name__ == "__main__":
# Initialize documentation systems
print("Initializing Gradio documentation...")
initialize_gradio_docs()
print("Initializing ComfyUI documentation...")
initialize_comfyui_docs()
print("Initializing FastRTC documentation...")
initialize_fastrtc_docs()
# Launch the application
print("Launching AnyCoder application...")
demo.queue(api_open=False, default_concurrency_limit=20).launch(
show_api=False,
ssr_mode=True,
mcp_server=False
)
|