# animal-rescue-rag **Repository Path**: ydjjava/animal-rescue-rag ## Basic Information - **Project Name**: animal-rescue-rag - **Description**: 流浪动物商城RAG系统 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-22 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 创建环境 python -m venv .venv # 激活环境(PowerShell) .\.venv\Scripts\Activate.ps1 # 安装依赖 pip install -r requirements.txt # 复制环境变量模板 cp .env.example .env # 启动服务 uvicorn app.main:app --reload --host 127.0.0.1 --port 8000 # 健康检查 curl http://127.0.0.1:8000/health # 上传文件(Day2) curl -X POST "http://127.0.0.1:8000/v1/ingest/file" -F "kb_id=hr" -F "file=@README.md" # 执行测试 pytest -q # 退出环境 deactivate