资讯 社区 文档
技术能力
语音技术
文字识别
人脸与人体
图像技术
语言与知识
视频技术

查询用户应用详情

接口描述

该接口查询用户下状态为已发布的应用详情,仅支持查询自主规划Agent应用。

在线调试

百度智能云千帆提供了 API在线调试平台-示例代码 ,用于帮助开发者调试接口,平台集成快速检索、查看开发文档、查看在线调用的请求内容和返回结果、复制和下载示例代码等功能,支持Python、Java、PHP、C#、Go、Node.js、C++ 7种主流语言示例代码自动生成。

权限说明

Authorization需要填写密钥。

接口定义

Path /v2/app?Action=DescribeApp
Method POST
Content-Type application/json
Authorization 请求签名(此签名为应用工作台密钥)

请求结构

POST /v2/app?Action=DescribeApp HTTP/1.1
HOST: qianfan.baidubce.com
Authorization: authorization string
Content-Type: application/json
{        
    "id": "appId"  
}

请求头域

除公共头域外,无其它特殊头域。

请求参数

字段 类型 是否必须 说明
id string 应用id

响应头域

除公共头域外,无其它特殊头域。

响应参数

字段 类型 必然存在 说明
requestId string requestId
id string 应用id
name string 应用名称
description string 应用描述
instruction string 用户指令
prologue string 开场白
exampleQueries []string 推荐问题
followUpQueries dict 追问
followUpQueries \ type string 追问类型 (default | custom)
followUpQueries \ prompt string 追问问题生成prompt
followUpQueries \ round string 追问问题生成轮数
components []dict 引用组件列表
components \ name string 组件名称
components \ description string 组件描述
components \ customDesc string 组件自定义描述
knowledgeBaseConfig dict 知识库配置
knowledgeBaseConfig \ knowledgeBases []dict 知识库列表
knowledgeBaseConfig \ knowledgeBases \ id string 知识库id
knowledgeBaseConfig \ knowledgeBases \ name string 知识库名称
knowledgeBaseConfig \ knowledgeBases \ description string 知识库描述
knowledgeBaseConfig \ retrieval string 检索配置
knowledgeBaseConfig \ retrieval \ enableWebSearch bool 是否开启百度搜索
knowledgeBaseConfig \ retrieval \ order string 排序策略(Combined | RagFirst | WebSearchFirst), enableWebSearch 等于true时生效
knowledgeBaseConfig \ retrieval \ strategy string 检索策略(Advanced | Fulltext | Semantic)
knowledgeBaseConfig \ retrieval \ topK int 召回数量
knowledgeBaseConfig \ retrieval \ threshold float 阈值
modelConfig dict 模型配置
modelConfig \ plan dict 思考模型配置
modelConfig \ plan \ modelId string 模型id
modelConfig \ plan \ model string 模型名称
modelConfig \ plan \ maxRounds int 最大思考轮数
modelConfig \ plan \ config dict rag模型配置
modelConfig \ plan \ config \ temperature float 
modelConfig \ plan \ config \ topP float 
modelConfig \ chat dict 对话模型配置
modelConfig \ chat \ modelId string 模型id
modelConfig \ chat \ model string 模型名称
modelConfig \ chat \ historyChatRounds int 历史对话参考轮数
modelConfig \ chat \ config dict rag模型配置
modelConfig \ chat \ config \ temperature float 
modelConfig \ chat \ config \ topP float 

请求curl 示例

curl --location 'https://qianfan.baidubce.com/v2/app?Action=DescribeApp' \
--header 'Authorization: Bearer string' \
--header 'Content-Type: application/json' \
--data '{
    "id": "405d90c0-474c-4ff1-a2ed-3070a66dc7ae"
}'

正确响应示例

HTTP/1.1 200 OK

{
    "id": "应用id",
    "name": "应用名称"
    "description": "应用描述",
    "instruction": "指令",
    "prologue": "开场白",
    "exampleQueries": ["推荐问题1", "推荐问题2"], # 推荐问题列表
    "followUpQueries": { # 追问配置
        "type": "custom", # 追问配置
        "prompt": "prompt", # 追问prompt
        "round": 3, # 追问生成轮数
    },
    "components": [
        {
            "name": "组件名称",
            "description": "组件描述",
            "customDesc": ""
        }
    ],
    "knowledgeBaseConfig": {
        "knowledgeBases": [ # 知识库详情列表
            {
                "id": "知识库id",
                "name": "",
                "description": ""
            }
        ],
        "retrieval": { # 检索配置
            "enableWebSearch": true, # 是否开启百度搜索
            "order": "排序规则", # Combined | RagFirst | WebSearchFirst
            "strategy": "策略", # Advanced | Fulltext | Semantic
            "topK": 2, # 召回数量
            "threshold": 0.5 # 阈值
        }
    },
    "modelConfig": { # 模型配置
        "plan": { # 思考模型配置
            "modelId": "",
            "model": "",
            "maxRounds":"",
            "config": { # 模型多样性
                "temperature": 0,
                "topP": 0
            }
        },
        "chat": { # 问答模型配置
            "modelId": "",
            "model": "",
            "historyChatRounds":"",
            "config": { # 模型多样性
                "temperature": 0,
                "topP": 0
            }
        }
    }
}

错误响应示例

HTTP/1.1 401
{
  "requestId": "ae2225f7-1c2e-427a-a1ad-5413b762957d",
  "code": "PermissionDeniedError",
  "message": "没有权限"
}
上一篇
对话
下一篇
查询用户应用列表