File size: 451 Bytes
927e909
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
DeepResearch Bench HF Space 入口文件
"""

from __future__ import annotations
from create_leaderboard import demo

# 在Hugging Face Space中运行
if __name__ == "__main__":
    demo.launch(
        server_name="0.0.0.0",  # 必须这样设置以允许外部访问
        share=False,  # HF Space 自己有分享功能,无需额外分享
        show_api=False,  # 隐藏API文档页面
    )