MedResearcher/pyproject.toml
iomgaa c4037325ed feat: 实现基于LangExtract框架的MIMIC论文信息提取系统
- 新增info_extractor.py主文件,支持命令行参数和测试模式
- 实现src/extractor.py核心MIMICLangExtractBuilder类
- 集成vllm API服务(OpenAI兼容格式)进行结构化信息提取
- 支持5大模块提取:数据集、模型、训练、评估、环境配置
- 实现源文本定位和交互式HTML可视化
- 添加langextract和httpx[socks]依赖
- 支持个性化论文子目录结果保存
- 清理过时的experiment_runner.py和number_extraction_models.py文件
2025-08-25 20:51:30 +08:00

17 lines
339 B
TOML

[project]
name = "medresearcher"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"agno>=1.7.12",
"httpx[socks]>=0.28.1",
"langextract>=1.0.8",
"ollama>=0.5.3",
"openai>=1.101.0",
"pydantic",
"pyyaml>=6.0.2",
"requests>=2.32.5",
]