路桥智能体平台

wandaan 3a3a3505a4 v0.0.2-上传接口调通+celery队列管理+审查基本框架构建完成mock 3 月之前
config 3a3a3505a4 v0.0.2-上传接口调通+celery队列管理+审查基本框架构建完成mock 3 月之前
core 3a3a3505a4 v0.0.2-上传接口调通+celery队列管理+审查基本框架构建完成mock 3 月之前
data_pipeline 9ed6578b53 基础流程框架 3 月之前
database 9ed6578b53 基础流程框架 3 月之前
foundation 3a3a3505a4 v0.0.2-上传接口调通+celery队列管理+审查基本框架构建完成mock 3 月之前
server 9ed6578b53 基础流程框架 3 月之前
temp 3a3a3505a4 v0.0.2-上传接口调通+celery队列管理+审查基本框架构建完成mock 3 月之前
test b78e18f884 v0.0.1 3 月之前
views 3a3a3505a4 v0.0.2-上传接口调通+celery队列管理+审查基本框架构建完成mock 3 月之前
.gitignore 9ed6578b53 基础流程框架 3 月之前
Dockerfile 551ffa2aed 初始框架提交 4 月之前
README.md 9ed6578b53 基础流程框架 3 月之前
gunicorn_config.py 551ffa2aed 初始框架提交 4 月之前
requirements.txt 3a3a3505a4 v0.0.2-上传接口调通+celery队列管理+审查基本框架构建完成mock 3 月之前
run.sh 551ffa2aed 初始框架提交 4 月之前
test_document.pdf 9ed6578b53 基础流程框架 3 月之前

README.md

LQAgentPlatform

### LQAgentPlatform 智能体应用服务

测试接口

#### 生成模型接口

- 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": "查询信息"
    }