路桥智能体平台

WangXuMing 0698d33f45 feat: 依赖分组 + 测试目录规范化 + 架构约束更新 пре 2 недеља
.design 00336af860 docs: 更新基础架构设计文档至 v3.0,合并冲突解决 пре 1 месец
.gitea a5af700e4d feat: 添加跨层导入CI检查脚本 пре 2 недеља
.vscode dc71203208 dev-debug пре 2 месеци
config b139a0cb56 feat: 添加 pyproject.toml + 清理 sys.path.insert пре 2 недеља
core b139a0cb56 feat: 添加 pyproject.toml + 清理 sys.path.insert пре 2 недеља
data_pipeline b139a0cb56 feat: 添加 pyproject.toml + 清理 sys.path.insert пре 2 недеља
docker 84aea1d204 修改docker 打包相关配置文件 пре 6 месеци
foundation b139a0cb56 feat: 添加 pyproject.toml + 清理 sys.path.insert пре 2 недеља
requirements 0698d33f45 feat: 依赖分组 + 测试目录规范化 + 架构约束更新 пре 2 недеља
scripts a5af700e4d feat: 添加跨层导入CI检查脚本 пре 2 недеља
server b139a0cb56 feat: 添加 pyproject.toml + 清理 sys.path.insert пре 2 недеља
tests 0698d33f45 feat: 依赖分组 + 测试目录规范化 + 架构约束更新 пре 2 недеља
utils_test b139a0cb56 feat: 添加 pyproject.toml + 清理 sys.path.insert пре 2 недеља
views ac845a3ca0 @ пре 3 недеља
.gitignore 49afd6e29b chore: 清理冗余文件 пре 2 недеља
Dockerfile b139a0cb56 feat: 添加 pyproject.toml + 清理 sys.path.insert пре 2 недеља
Dockerfile.base edb6810c78 chore(deploy): 标记代理使用说明 пре 1 месец
README.md 7219237601 v0.0.4-功能优化 пре 5 месеци
README_deploy.md 388284576f 增加说明 пре 3 месеци
README_test.md 243451de10 test пре 2 месеци
deploy_agent.sh 95de39c4cb feat(deploy): 代理检测与启动提示 пре 1 месец
problem.json 46fc37cf1e fix(sgsc-时效性审查模型-xth): 修复时效性bug пре 2 месеци
pyproject.toml b139a0cb56 feat: 添加 pyproject.toml + 清理 sys.path.insert пре 2 недеља
requirements.txt 0bd380f464 feat(ocr): 添加YOLO目录检测、OCR提取及Embedding配置优化 пре 1 месец
run.sh 84aea1d204 修改docker 打包相关配置文件 пре 6 месеци

README.md

LQAgentPlatform

### LQAgentPlatform 智能体应用服务

增加组件依赖

pip install aiomysql -i https://mirrors.aliyun.com/pypi/simple/

向量模型和重排序模型测试

cd LQAgentPlatform python foundation/models/silicon_flow.py

测试接口

#### 生成模型接口

- chat
    http://localhost:8001/test/generate/chat
    {
      "config": {
          "session_id":"111"
      },
      "input": "你好"
    }
- stream
  http://localhost:8001/test/generate/stream
    {
      "config": {
          "session_id":"111"
      },
      "input": "你好,我叫小红,你叫什么?"
    }

#### agent 智能体

- chat
  http://localhost:8001/test/agent/stream
    {
      "config": {
          "session_id":"111"
      },
      "input": "你好"
    }

- stream

curl -X POST "http://localhost:8001/test/agent/stream" \ -H "Content-Type: application/json" \ -d '{

"config": {
    "session_id": "111"
},
"input": "你好"

}'

#### Workflow-Graph stream

- chat
  http://localhost:8001/test/graph/stream
    {
      "config": {
          "session_id":"111"
      },
      "input": "你好"
    }

- agent
  http://localhost:8001/test/graph/stream
    {
      "config": {
          "session_id":"111"
      },
      "input": "查询信息"
    }

MySQL 数据库操作测试

向量检索测试