File size: 390 Bytes
de0dd57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""Hugging Face Spaces兼容的应用入口文件"""

import os
import sys

# 将当前目录添加到Python路径
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))

# 导入主应用
from gemini import app

if __name__ == "__main__":
    # Hugging Face Spaces通常需要运行在特定端口
    port = int(os.environ.get("PORT", 7860))
    app.run(host="0.0.0.0", port=port)