路桥智能体平台

ChenJiSheng e8b9877632 dev:优化了目录审查的结果表述; il y a 4 semaines
config e8b9877632 dev:优化了目录审查的结果表述; il y a 4 semaines
core e8b9877632 dev:优化了目录审查的结果表述; il y a 4 semaines
data_pipeline 455c88dfd8 v0.0.5-功能优化-调整catalogue调用流程 il y a 1 mois
docker 84aea1d204 修改docker 打包相关配置文件 il y a 3 mois
foundation ec5adf9664 v0.0.5-功能优化-专业性审查 il y a 4 semaines
server 9dd24515f7 v0.0.4-更新RAG链路多查询对 il y a 1 mois
utils_test ec5adf9664 v0.0.5-功能优化-专业性审查 il y a 4 semaines
views 59c3283c02 v0.0.5-功能优化 il y a 1 mois
路桥 b6c6fdd095 dev:修复文件切分模块的字段传值问题; il y a 2 mois
.gitignore 15f328f6c3 dev:完整性审查中添加了关键字检测组件; il y a 4 semaines
Dockerfile 0ff9abb748 恢复pip 依赖安装 il y a 2 mois
Miniconda3-latest-Linux-x86_64.sh db39b22f89 v0.0.5-debug-修复csv路径问题 il y a 1 mois
README.md 7219237601 v0.0.4-功能优化 il y a 2 mois
README_deploy.md 84aea1d204 修改docker 打包相关配置文件 il y a 3 mois
README_test.md 7219237601 v0.0.4-功能优化 il y a 2 mois
__init__.py 90d2d81b68 dev:修复引用路径问题 il y a 2 mois
build_graph_app.png 9ee37877f7 v0.0.4-功能优化 il y a 2 mois
check_data.txt ec5adf9664 v0.0.5-功能优化-专业性审查 il y a 4 semaines
cleanup_logs.bat 9dd24515f7 v0.0.4-更新RAG链路多查询对 il y a 1 mois
core目录重复实现方法梳理报告.md 9ffd68a5c7 dev:优化了文件切分模块的的目录分类的性能; il y a 1 mois
gunicorn_config.py 551ffa2aed 初始框架提交 il y a 4 mois
prompts.txt 38617440e0 v0.0.5-功能优化-实现目录审查功能 il y a 1 mois
requirements.txt 83fdbf5c7d 调试-debug il y a 2 mois
run.sh 84aea1d204 修改docker 打包相关配置文件 il y a 3 mois
test_document.pdf 9ed6578b53 基础流程框架 il y a 3 mois

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 数据库操作测试

向量检索测试