Files
AIclinicalresearch/tests/run_tests.bat
HaHafeng dfc0fe0b9a feat(pkb): Integrate pgvector and create Dify replacement plan
Summary:
- Migrate PostgreSQL to pgvector/pgvector:pg15 Docker image
- Successfully install and verify pgvector 0.8.1 extension
- Create comprehensive Dify-to-pgvector migration plan
- Update PKB module documentation with pgvector status
- Update system documentation with pgvector integration

Key changes:
- docker-compose.yml: Switch to pgvector/pgvector:pg15 image
- Add EkbDocument and EkbChunk data model design
- Design R-C-R-G hybrid retrieval architecture
- Add clinical data JSONB fields (pico, studyDesign, regimen, safety, criteria, endpoints)
- Create detailed 10-day implementation roadmap

Documentation updates:
- PKB module status: pgvector RAG infrastructure ready
- System status: pgvector 0.8.1 integrated
- New: Dify replacement development plan (01-Dify替换为pgvector开发计划.md)
- New: Enterprise medical knowledge base solution V2

Tested: PostgreSQL with pgvector verified, frontend and backend functionality confirmed
2026-01-20 00:00:58 +08:00

103 lines
1.1 KiB
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
REM Windows批处理脚本 - 运行缺失值处理功能测试
echo ========================================
echo 缺失值处理功能 - 自动化测试
echo ========================================
echo.
REM 检查Python是否安装
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo [错误] Python未安装或不在PATH中
pause
exit /b 1
)
echo [1/3] 检查Python服务状态...
curl -s http://localhost:8001/health >nul 2>&1
if %errorlevel% neq 0 (
echo [警告] Python服务未运行请先启动服务
echo cd extraction_service
echo python main.py
echo.
pause
exit /b 1
)
echo [OK] Python服务运行正常
echo.
echo [2/3] 检查依赖...
python -c "import pandas, numpy, requests" >nul 2>&1
if %errorlevel% neq 0 (
echo [警告] 缺少依赖,正在安装...
pip install pandas numpy requests
)
echo [OK] 依赖检查完成
echo.
echo [3/3] 运行测试...
echo.
python test_fillna_operations.py
echo.
echo ========================================
echo 测试完成
echo ========================================
pause