resume-flow 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- resume_flow-0.1.0/.gitignore +30 -0
- resume_flow-0.1.0/PKG-INFO +48 -0
- resume_flow-0.1.0/README.md +19 -0
- resume_flow-0.1.0/prd +1890 -0
- resume_flow-0.1.0/pyproject.toml +79 -0
- resume_flow-0.1.0/requirements.txt +19 -0
- resume_flow-0.1.0/resume_flow/__init__.py +9 -0
- resume_flow-0.1.0/resume_flow/__main__.py +6 -0
- resume_flow-0.1.0/resume_flow/cli.py +192 -0
- resume_flow-0.1.0/resume_flow/config.py +59 -0
- resume_flow-0.1.0/resume_flow/graph.py +92 -0
- resume_flow-0.1.0/resume_flow/llm.py +115 -0
- resume_flow-0.1.0/resume_flow/nodes/__init__.py +26 -0
- resume_flow-0.1.0/resume_flow/nodes/check_company.py +109 -0
- resume_flow-0.1.0/resume_flow/nodes/check_grad.py +185 -0
- resume_flow-0.1.0/resume_flow/nodes/check_name.py +96 -0
- resume_flow-0.1.0/resume_flow/nodes/check_tech.py +137 -0
- resume_flow-0.1.0/resume_flow/nodes/check_title.py +120 -0
- resume_flow-0.1.0/resume_flow/nodes/finalize.py +66 -0
- resume_flow-0.1.0/resume_flow/nodes/generate_email.py +153 -0
- resume_flow-0.1.0/resume_flow/nodes/load_resume.py +24 -0
- resume_flow-0.1.0/resume_flow/output.py +316 -0
- resume_flow-0.1.0/resume_flow/state.py +49 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# Distribution / packaging
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
*.egg
|
|
11
|
+
|
|
12
|
+
# Virtual environments
|
|
13
|
+
.venv/
|
|
14
|
+
venv/
|
|
15
|
+
|
|
16
|
+
# IDE
|
|
17
|
+
.idea/
|
|
18
|
+
.vscode/
|
|
19
|
+
*.swp
|
|
20
|
+
*.swo
|
|
21
|
+
|
|
22
|
+
# Runtime output
|
|
23
|
+
resume_flow_eval/
|
|
24
|
+
checkpoints.db
|
|
25
|
+
resume_check.log
|
|
26
|
+
.env
|
|
27
|
+
|
|
28
|
+
# OS
|
|
29
|
+
.DS_Store
|
|
30
|
+
Thumbs.db
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: resume-flow
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: LangGraph 简历筛选应用 — 基于 LLM + 规则引擎的自动化候选人评估工具
|
|
5
|
+
Author-email: Chandler <275737875@qq.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: langgraph,llm,recruiting,resume,screening
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Requires-Dist: langchain-core>=0.2.0
|
|
17
|
+
Requires-Dist: langgraph-checkpoint-sqlite>=2.0.0
|
|
18
|
+
Requires-Dist: langgraph>=0.2.0
|
|
19
|
+
Requires-Dist: openai>=1.0.0
|
|
20
|
+
Requires-Dist: openpyxl>=3.1.0
|
|
21
|
+
Requires-Dist: rich>=13.0.0
|
|
22
|
+
Requires-Dist: typer>=0.9.0
|
|
23
|
+
Provides-Extra: dev
|
|
24
|
+
Requires-Dist: mypy>=1.0; extra == 'dev'
|
|
25
|
+
Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
|
|
26
|
+
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
27
|
+
Requires-Dist: ruff>=0.4.0; extra == 'dev'
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
|
|
30
|
+
# Resume Flow
|
|
31
|
+
|
|
32
|
+
基于 LangGraph 的简历筛选应用,使用 LLM + 规则引擎双重验证机制自动化评估候选人。
|
|
33
|
+
|
|
34
|
+
## 功能
|
|
35
|
+
|
|
36
|
+
- 姓名有效性判断
|
|
37
|
+
- 目标公司 (FAANG) 工作经历匹配
|
|
38
|
+
- 毕业年份按学历层级判断 (本科/硕士/博士)
|
|
39
|
+
- 软件技术岗位识别
|
|
40
|
+
- 技术方向综合判断 (含 LLM 交叉验证 + 重试机制)
|
|
41
|
+
- 合格候选人自动生招聘邮件
|
|
42
|
+
- 断点续传 + Checkpoint 持久化
|
|
43
|
+
- JSON / Excel / Rich 终端多格式输出
|
|
44
|
+
|
|
45
|
+
## 安装
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
pip install -e .
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Resume Flow
|
|
2
|
+
|
|
3
|
+
基于 LangGraph 的简历筛选应用,使用 LLM + 规则引擎双重验证机制自动化评估候选人。
|
|
4
|
+
|
|
5
|
+
## 功能
|
|
6
|
+
|
|
7
|
+
- 姓名有效性判断
|
|
8
|
+
- 目标公司 (FAANG) 工作经历匹配
|
|
9
|
+
- 毕业年份按学历层级判断 (本科/硕士/博士)
|
|
10
|
+
- 软件技术岗位识别
|
|
11
|
+
- 技术方向综合判断 (含 LLM 交叉验证 + 重试机制)
|
|
12
|
+
- 合格候选人自动生招聘邮件
|
|
13
|
+
- 断点续传 + Checkpoint 持久化
|
|
14
|
+
- JSON / Excel / Rich 终端多格式输出
|
|
15
|
+
|
|
16
|
+
## 安装
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install -e .
|