|
@@ -4371,3 +4371,118 @@ type ApiKeyListReq struct {
|
|
|
Key *string `json:"key,optional"`
|
|
|
OrganizationId *uint64 `json:"organization_id,optional"`
|
|
|
}
|
|
|
+
|
|
|
+// The data of xunji information | Xunji信息
|
|
|
+// swagger:model XunjiInfo
|
|
|
+type XunjiInfo struct {
|
|
|
+ BaseIDInfo
|
|
|
+ // Status 1: normal 2: ban | 状态 1 正常 2 禁用
|
|
|
+ Status *uint8 `json:"status,optional"`
|
|
|
+ // AppKey
|
|
|
+ AppKey *string `json:"appKey,optional"`
|
|
|
+ // AppSecret
|
|
|
+ AppSecret *string `json:"appSecret,optional"`
|
|
|
+ // Token
|
|
|
+ Token *string `json:"token,optional"`
|
|
|
+ // 加密key
|
|
|
+ EncodingKey *string `json:"encodingKey,optional"`
|
|
|
+ // 角色ID
|
|
|
+ AgentId *uint64 `json:"agentId,optional"`
|
|
|
+ // organization_id | 租户ID
|
|
|
+ OrganizationId *uint64 `json:"organizationId,optional"`
|
|
|
+ // 微信ID
|
|
|
+ Wxid *string `json:"wxid,optional"`
|
|
|
+ // 大模型服务地址
|
|
|
+ ApiBase *string `json:"apiBase,optional"`
|
|
|
+ // 大模型服务密钥
|
|
|
+ ApiKey *string `json:"apiKey,optional"`
|
|
|
+}
|
|
|
+
|
|
|
+// The response data of xunji list | Xunji列表数据
|
|
|
+// swagger:model XunjiListResp
|
|
|
+type XunjiListResp struct {
|
|
|
+ BaseDataInfo
|
|
|
+ // Xunji list data | Xunji列表数据
|
|
|
+ Data XunjiListInfo `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+// Xunji list data | Xunji列表数据
|
|
|
+// swagger:model XunjiListInfo
|
|
|
+type XunjiListInfo struct {
|
|
|
+ BaseListInfo
|
|
|
+ // The API list data | Xunji列表数据
|
|
|
+ Data []XunjiInfo `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+// Get xunji list request params | Xunji列表请求参数
|
|
|
+// swagger:model XunjiListReq
|
|
|
+type XunjiListReq struct {
|
|
|
+ PageInfo
|
|
|
+ // AppKey
|
|
|
+ AppKey *string `json:"appKey,optional"`
|
|
|
+ // AppSecret
|
|
|
+ AppSecret *string `json:"appSecret,optional"`
|
|
|
+ // Token
|
|
|
+ Token *string `json:"token,optional"`
|
|
|
+}
|
|
|
+
|
|
|
+// Xunji information response | Xunji信息返回体
|
|
|
+// swagger:model XunjiInfoResp
|
|
|
+type XunjiInfoResp struct {
|
|
|
+ BaseDataInfo
|
|
|
+ // Xunji information | Xunji数据
|
|
|
+ Data XunjiInfo `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+// The data of xunji service information | XunjiService信息
|
|
|
+// swagger:model XunjiServiceInfo
|
|
|
+type XunjiServiceInfo struct {
|
|
|
+ BaseIDInfo
|
|
|
+ // Status 1: normal 2: ban | 状态 1 正常 2 禁用
|
|
|
+ Status *uint8 `json:"status,optional"`
|
|
|
+ // Xunji表ID
|
|
|
+ XunjiId *uint64 `json:"xunjiId,optional"`
|
|
|
+ // 智能体ID
|
|
|
+ AgentId *uint64 `json:"agentId,optional"`
|
|
|
+ // 模式信息
|
|
|
+ AgentInfo *AgentInfo `json:"agentInfo,optional"`
|
|
|
+ // organization_id | 租户ID
|
|
|
+ OrganizationId *uint64 `json:"organizationId,optional"`
|
|
|
+ // 微信ID
|
|
|
+ Wxid *string `json:"wxid,optional"`
|
|
|
+ // 大模型服务地址
|
|
|
+ ApiBase *string `json:"apiBase,optional"`
|
|
|
+ // 大模型服务密钥
|
|
|
+ ApiKey *string `json:"apiKey,optional"`
|
|
|
+}
|
|
|
+
|
|
|
+// The response data of xunji service list | XunjiService列表数据
|
|
|
+// swagger:model XunjiServiceListResp
|
|
|
+type XunjiServiceListResp struct {
|
|
|
+ BaseDataInfo
|
|
|
+ // XunjiService list data | XunjiService列表数据
|
|
|
+ Data XunjiServiceListInfo `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+// XunjiService list data | XunjiService列表数据
|
|
|
+// swagger:model XunjiServiceListInfo
|
|
|
+type XunjiServiceListInfo struct {
|
|
|
+ BaseListInfo
|
|
|
+ // The API list data | XunjiService列表数据
|
|
|
+ Data []XunjiServiceInfo `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
+// Get xunji service list request params | XunjiService列表请求参数
|
|
|
+// swagger:model XunjiServiceListReq
|
|
|
+type XunjiServiceListReq struct {
|
|
|
+ PageInfo
|
|
|
+ XunjiID *uint64 `json:"configId,optional"`
|
|
|
+}
|
|
|
+
|
|
|
+// XunjiService information response | XunjiService信息返回体
|
|
|
+// swagger:model XunjiServiceInfoResp
|
|
|
+type XunjiServiceInfoResp struct {
|
|
|
+ BaseDataInfo
|
|
|
+ // XunjiService information | XunjiService数据
|
|
|
+ Data XunjiServiceInfo `json:"data"`
|
|
|
+}
|