Skip to content

Commit 862f8cd

Browse files
committed
version 0.0.1
1 parent 64b16a6 commit 862f8cd

27 files changed

Lines changed: 47 additions & 479 deletions

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
/* 自定义图标关联 */
55
"material-icon-theme.folders.associations": {
66
"leaderboard": "Secure",
7-
"specbench": "Api",
7+
"evaluator": "Plastic",
8+
"deepspectrum": "Api",
89
},
910
"material-icon-theme.files.associations": {},
1011
"editor.codeActionsOnSave": {
File renamed without changes.
File renamed without changes.

deepspectrum/cli/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""
2+
Deepspectrum - 化学谱学大模型 Benchmark 引擎
3+
"""
4+
5+
__version__ = "0.0.1"
6+
7+
8+
def hello() -> str:
9+
return "Hello from Deepspectrum!"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Specbench 命令行界面
2+
Deepspectrum 命令行界面
33
"""
44

55
import argparse
@@ -8,10 +8,10 @@
88

99
def main(argv: Optional[List[str]] = None) -> int:
1010
"""
11-
Specbench 主命令行入口点
11+
Deepspectrum 主命令行入口点
1212
"""
1313
parser = argparse.ArgumentParser(
14-
prog="specbench", description="化学谱学大模型 Benchmark 引擎"
14+
prog="deepspectrum", description="化学谱学大模型 Benchmark 引擎"
1515
)
1616

1717
parser.add_argument("--version", action="version", version="%(prog)s 0.0.1")

0 commit comments

Comments
 (0)