vtx_core_node_01 / main.py
Uzer-namo-2024's picture
Fix: Add missing main.py to repository
6def077
Raw
History Blame Contribute Delete
404 Bytes
import gradio as gr
import os
# Простая проверка, что файлы проекта видны
def check_environment():
files = os.listdir('.')
return f"Система NovBase видит файлы: {', '.join(files[:5])}..."
demo = gr.Interface(fn=check_environment, inputs=[], outputs="text")
if __name__ == "__main__":
demo.launch(server_name="0.0.0.0", server_port=7860)