Ayanami0730's picture
Add DeepResearch Bench application with LFS support
927e909
raw
history blame contribute delete
451 Bytes
#!/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文档页面
)