路桥智能体平台

WangXuMing bf6d8a7258 v0.0.5-config-增加qen30b配置 il y a 3 heures
config bf6d8a7258 v0.0.5-config-增加qen30b配置 il y a 3 heures
core fc888b3779 v0.0.5-功能优化-大纲层级校对优化 il y a 2 jours
data_pipeline 9dd24515f7 v0.0.4-更新RAG链路多查询对 il y a 1 semaine
docker 84aea1d204 修改docker 打包相关配置文件 il y a 1 mois
foundation 59c3283c02 v0.0.5-功能优化 il y a 3 jours
server 9dd24515f7 v0.0.4-更新RAG链路多查询对 il y a 1 semaine
utils_test dd8aef03b7 v0.0.5-功能优化-_ai_review_node_check_item 基础逻辑调试 il y a 2 jours
views 59c3283c02 v0.0.5-功能优化 il y a 3 jours
路桥 b6c6fdd095 dev:修复文件切分模块的字段传值问题; il y a 2 semaines
.gitignore 2240ff2c98 -dev:更新了新的语义逻辑审查、词句语法审查的审查流程逻辑以及优化了部分提示词。 il y a 6 jours
Dockerfile 0ff9abb748 恢复pip 依赖安装 il y a 1 mois
README.md 7219237601 v0.0.4-功能优化 il y a 2 semaines
README_deploy.md 84aea1d204 修改docker 打包相关配置文件 il y a 1 mois
README_test.md 7219237601 v0.0.4-功能优化 il y a 2 semaines
__init__.py 90d2d81b68 dev:修复引用路径问题 il y a 1 mois
build_graph_app.png 9ee37877f7 v0.0.4-功能优化 il y a 3 semaines
cleanup_logs.bat 9dd24515f7 v0.0.4-更新RAG链路多查询对 il y a 1 semaine
core目录重复实现方法梳理报告.md 9ffd68a5c7 dev:优化了文件切分模块的的目录分类的性能; il y a 3 jours
gunicorn_config.py 551ffa2aed 初始框架提交 il y a 2 mois
requirements.txt 83fdbf5c7d 调试-debug il y a 1 mois
run.sh 84aea1d204 修改docker 打包相关配置文件 il y a 1 mois
test_document.pdf 9ed6578b53 基础流程框架 il y a 2 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 数据库操作测试

向量检索测试