| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807 |
- // @ts-ignore
- /* eslint-disable */
- import request from '@repo/api-client'
- /** 测试MCP服务连接 POST /api/ai/mcp/check */
- export async function postMcpCheck(
- body: {
- id: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{
- isSuccess: boolean
- code: number
- result: {
- message: string
- tools: {
- description: string
- inputSchema: {
- type: string
- properties: {
- value: { description: string; type: string }
- usn: { description: string; type: string }
- loginType: { description: string; type: string }
- loginWay: { description: string; type: string }
- pwd: { description: string; type: string }
- token: { description: string; type: string }
- }
- required: string[]
- }
- name: string
- }[]
- }
- isAuthorized: boolean
- }>('/api/ai/mcp/check', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 创建MCP POST /api/ai/mcp/create */
- export async function postMcpCreate(
- body: {
- name: string
- description: string
- transport_type: string
- url: string
- enabled: boolean
- headers: Record<string, any>
- auth_config: Record<string, any>
- advanced_config: { timeout: number; retry_count: number; retry_delay: number }
- env_vars: Record<string, any>
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/mcp/create',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 删除MCP POST /api/ai/mcp/delete */
- export async function postMcpOpenApiDelete(
- body: {
- id: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/mcp/delete',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 获取详情 POST /api/ai/mcp/info */
- export async function postMcpInfo(
- body: {
- id: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{
- isSuccess: boolean
- code: number
- result: {
- advanced_config: { retry_count: number; retry_delay: number; timeout: number }
- auth_config: Record<string, any>
- creationTime: string
- creatorUserId: string
- description: string
- enabled: boolean
- env_vars: Record<string, any>
- headers: Record<string, any>
- id: string
- isDeleted: boolean
- is_builtin: boolean
- name: string
- stdio_config: { command: string }
- transport_type: string
- updateTime: string
- url: string
- }
- isAuthorized: boolean
- }>('/api/ai/mcp/info', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 获取分页列表 POST /api/ai/mcp/pageList */
- export async function postMcpPageList(
- body: {
- keyword: string
- transport_type: string
- pageIndex: number
- pageSize: number
- },
- options?: { [key: string]: any }
- ) {
- return request<{
- isSuccess: boolean
- code: number
- result: {
- currentPage: number
- hasNextPage: boolean
- hasPreviousPage: boolean
- model: {
- advanced_config: { retry_count: number; retry_delay: number; timeout: number }
- auth_config?: Record<string, any>
- creationTime?: string
- creatorUserId?: string
- description?: string
- enabled?: boolean
- env_vars?: Record<string, any>
- headers?: Record<string, any>
- id?: string
- isDeleted?: boolean
- is_builtin?: boolean
- name?: string
- stdio_config: { command: string }
- transport_type?: string
- updateTime?: string
- url?: string
- }[]
- pageSize: number
- totalCount: number
- totalPages: number
- }
- isAuthorized: boolean
- }>('/api/ai/mcp/pageList', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 获取MCP服务资源表 POST /api/ai/mcp/resources */
- export async function postMcpResources(
- body: {
- id: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; result: string[]; isAuthorized: boolean }>(
- '/api/ai/mcp/resources',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 获取MCP服务工具列表 POST /api/ai/mcp/tools */
- export async function postMcpTools(
- body: {
- id: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{
- isSuccess: boolean
- code: number
- result: {
- description: string
- inputSchema: {
- type: string
- properties: {
- value: { description: string; type: string }
- token: { description: string; type: string }
- usn: { description: string; type: string }
- loginType: { description: string; type: string }
- loginWay: { description: string; type: string }
- pwd: { description: string; type: string }
- }
- required: string[]
- }
- name: string
- }[]
- isAuthorized: boolean
- }>('/api/ai/mcp/tools', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 更新MCP POST /api/ai/mcp/update */
- export async function postMcpUpdate(
- body: {
- id: string
- name: string
- description: string
- transport_type: string
- url: string
- enabled: boolean
- headers: Record<string, any>
- auth_config: Record<string, any>
- advanced_config: { timeout: number; retry_count: number; retry_delay: number }
- env_vars: Record<string, any>
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/mcp/update',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 获取系统提示词及模版信息 POST /api/ai/prompt-template/config */
- export async function postPromptTemplateConfig(body: {}, options?: { [key: string]: any }) {
- return request<{
- isSuccess: boolean
- code: number
- result: {
- agent_system_prompts: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- value: string
- }[]
- context_templates: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- value: string
- }[]
- defaultSystemAgentPrompt: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- value: string
- }
- defaultSystemContextTemplate: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- value: string
- }
- defaultSystemFallBack: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- value: string
- }
- defaultSystemPrompt: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- value: string
- }
- defaultSystemRewrite: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- user: string
- value: string
- }
- fall_backs: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- value: string
- }[]
- rewrites: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- user: string
- value: string
- }[]
- system_prompts: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- type: string
- updateTime: string
- value: string
- }[]
- }
- isAuthorized: boolean
- }>('/api/ai/prompt-template/config', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 创建提示词与模版 POST /api/ai/prompt-template/create */
- export async function postPromptTemplateCreate(
- body: {
- name: string
- description: string
- content: string
- user: string
- type: string
- is_default: boolean
- has_knowledge_base: boolean
- has_web_search: boolean
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/prompt-template/create',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 删除提示词与模版 POST /api/ai/prompt-template/delete */
- export async function postPromptTemplateOpenApiDelete(
- body: {
- id: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/prompt-template/delete',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 初始化系统内置提示词和模版 POST /api/ai/prompt-template/initPromptContext */
- export async function postPromptTemplateInitPromptContext(
- body: {},
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/prompt-template/initPromptContext',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 获取分页列表 POST /api/ai/prompt-template/pageList */
- export async function postPromptTemplatePageList(
- body: {
- keyword?: string
- pageIndex?: number
- pageSize?: number
- type?: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{
- isSuccess: boolean
- code: number
- result: {
- currentPage: number
- hasNextPage: boolean
- hasPreviousPage: boolean
- model: {
- content: string
- creationTime: string
- default: boolean
- description: string
- has_knowledge_base: boolean
- has_web_search: boolean
- id: string
- isDeleted: boolean
- is_builtin: boolean
- mode: string
- name: string
- source: string
- type: string
- updateTime: string
- value: string
- user: string
- }[]
- pageSize: number
- totalCount: number
- totalPages: number
- }
- isAuthorized: boolean
- }>('/api/ai/prompt-template/pageList', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 修改提示词与模版 POST /api/ai/prompt-template/update */
- export async function postPromptTemplateUpdate(
- body: {
- id: string
- name: string
- description: string
- content: string
- user: string
- type: string
- is_default: boolean
- has_knowledge_base: boolean
- has_web_search: boolean
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/prompt-template/update',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 获取支持的Skills列表 POST /api/ai/skills/list */
- export async function postSkillsList(body: {}, options?: { [key: string]: any }) {
- return request<{
- isSuccess: boolean
- code: number
- result: { description: string; name: string }[]
- isAuthorized: boolean
- }>('/api/ai/skills/list', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 测试已保存的 Provider POST /api/ai/web-search/checkById */
- export async function postWebSearchCheckById(
- body: {
- id: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/web-search/checkById',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 使用原始凭证测试连通性 POST /api/ai/web-search/checkWithParameters */
- export async function postWebSearchCheckWithParameters(
- body: {
- provider: string
- parameters: { api_key: string; proxy_url: string; engine_id: string }
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/web-search/checkWithParameters',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 创建网络搜索厂商 POST /api/ai/web-search/create */
- export async function postWebSearchCreate(
- body: {
- provider: string
- name: string
- description: string
- is_default: boolean
- parameters: { proxy_url: string; api_key: string; engine_id: string }
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/web-search/create',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 删除网络搜索厂商 POST /api/ai/web-search/delete */
- export async function postWebSearchOpenApiDelete(
- body: {
- id: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/web-search/delete',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
- /** 获取支持的引擎列表 POST /api/ai/web-search/engines */
- export async function postWebSearchEngines(body: {}, options?: { [key: string]: any }) {
- return request<{
- isSuccess: boolean
- code: number
- result: {
- description: string
- docs_url: string
- id: string
- name: string
- requires_api_key: boolean
- requires_engine_id: boolean
- supports_proxy: boolean
- }[]
- isAuthorized: boolean
- }>('/api/ai/web-search/engines', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 获取详情 POST /api/ai/web-search/info */
- export async function postWebSearchInfo(
- body: {
- id: string
- },
- options?: { [key: string]: any }
- ) {
- return request<{
- isSuccess: boolean
- code: number
- result: {
- creationTime: string
- creatorUserId: string
- description: string
- id: string
- isDeleted: boolean
- is_default: boolean
- name: string
- parameters: { api_key: string }
- provider: string
- updateTime: string
- }
- isAuthorized: boolean
- }>('/api/ai/web-search/info', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 获取分页列表 POST /api/ai/web-search/pageList */
- export async function postWebSearchPageList(
- body: {
- keyword: string
- provider: string
- pageIndex: number
- pageSize?: number
- },
- options?: { [key: string]: any }
- ) {
- return request<{
- isSuccess: boolean
- code: number
- result: {
- currentPage: number
- hasNextPage: boolean
- hasPreviousPage: boolean
- model: string[]
- pageSize: number
- totalCount: number
- totalPages: number
- }
- isAuthorized: boolean
- }>('/api/ai/web-search/pageList', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- })
- }
- /** 更新网络搜索厂商 POST /api/ai/web-search/update */
- export async function postWebSearchUpdate(
- body: {
- id: string
- name: string
- description: string
- is_default: boolean
- parameters: { proxy_url: string; api_key: string; engine_id: string }
- },
- options?: { [key: string]: any }
- ) {
- return request<{ isSuccess: boolean; code: number; isAuthorized: boolean }>(
- '/api/ai/web-search/update',
- {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json'
- },
- data: body,
- ...(options || {})
- }
- )
- }
|