tools.ts 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. import { get, post } from './base'
  2. import type {
  3. Collection,
  4. CustomCollectionBackend,
  5. CustomParamSchema,
  6. Tool,
  7. ToolCredential,
  8. WorkflowToolProviderRequest,
  9. WorkflowToolProviderResponse,
  10. } from '@/app/components/tools/types'
  11. import type { ToolWithProvider } from '@/app/components/workflow/types'
  12. import type { Label } from '@/app/components/tools/labels/constant'
  13. import { buildProviderQuery } from './_tools_util'
  14. export const fetchCollectionList = () => {
  15. return get<Collection[]>('/workspaces/current/tool-providers')
  16. }
  17. export const fetchCollectionDetail = (collectionName: string) => {
  18. return get<Collection>(`/workspaces/current/tool-provider/${collectionName}/info`)
  19. }
  20. export const fetchBuiltInToolList = (collectionName: string) => {
  21. return get<Tool[]>(`/workspaces/current/tool-provider/builtin/${collectionName}/tools`)
  22. }
  23. export const fetchCustomToolList = (collectionName: string) => {
  24. const query = buildProviderQuery(collectionName)
  25. return get<Tool[]>(`/workspaces/current/tool-provider/api/tools?${query}`)
  26. }
  27. export const fetchModelToolList = (collectionName: string) => {
  28. const query = buildProviderQuery(collectionName)
  29. return get<Tool[]>(`/workspaces/current/tool-provider/model/tools?${query}`)
  30. }
  31. export const fetchWorkflowToolList = (appID: string) => {
  32. return get<Tool[]>(`/workspaces/current/tool-provider/workflow/tools?workflow_tool_id=${appID}`)
  33. }
  34. export const fetchBuiltInToolCredentialSchema = (collectionName: string) => {
  35. return get<ToolCredential[]>(`/workspaces/current/tool-provider/builtin/${collectionName}/credentials_schema`)
  36. }
  37. export const fetchBuiltInToolCredential = (collectionName: string) => {
  38. return get<ToolCredential[]>(`/workspaces/current/tool-provider/builtin/${collectionName}/credentials`)
  39. }
  40. export const updateBuiltInToolCredential = (collectionName: string, credential: Record<string, any>) => {
  41. return post(`/workspaces/current/tool-provider/builtin/${collectionName}/update`, {
  42. body: {
  43. credentials: credential,
  44. },
  45. })
  46. }
  47. export const removeBuiltInToolCredential = (collectionName: string) => {
  48. return post(`/workspaces/current/tool-provider/builtin/${collectionName}/delete`, {
  49. body: {},
  50. })
  51. }
  52. export const parseParamsSchema = (schema: string) => {
  53. return post<{ parameters_schema: CustomParamSchema[]; schema_type: string }>('/workspaces/current/tool-provider/api/schema', {
  54. body: {
  55. schema,
  56. },
  57. })
  58. }
  59. export const fetchCustomCollection = (collectionName: string) => {
  60. const query = buildProviderQuery(collectionName)
  61. return get<CustomCollectionBackend>(`/workspaces/current/tool-provider/api/get?${query}`)
  62. }
  63. export const createCustomCollection = (collection: CustomCollectionBackend) => {
  64. return post('/workspaces/current/tool-provider/api/add', {
  65. body: {
  66. ...collection,
  67. },
  68. })
  69. }
  70. export const updateCustomCollection = (collection: CustomCollectionBackend) => {
  71. return post('/workspaces/current/tool-provider/api/update', {
  72. body: {
  73. ...collection,
  74. },
  75. })
  76. }
  77. export const removeCustomCollection = (collectionName: string) => {
  78. return post('/workspaces/current/tool-provider/api/delete', {
  79. body: {
  80. provider: collectionName,
  81. },
  82. })
  83. }
  84. export const importSchemaFromURL = (url: string) => {
  85. return get('/workspaces/current/tool-provider/api/remote', {
  86. params: {
  87. url,
  88. },
  89. })
  90. }
  91. export const testAPIAvailable = (payload: any) => {
  92. return post('/workspaces/current/tool-provider/api/test/pre', {
  93. body: {
  94. ...payload,
  95. },
  96. })
  97. }
  98. export const fetchAllBuiltInTools = () => {
  99. return get<ToolWithProvider[]>('/workspaces/current/tools/builtin')
  100. }
  101. export const fetchAllCustomTools = () => {
  102. return get<ToolWithProvider[]>('/workspaces/current/tools/api')
  103. }
  104. export const fetchAllWorkflowTools = () => {
  105. return get<ToolWithProvider[]>('/workspaces/current/tools/workflow')
  106. }
  107. export const fetchLabelList = () => {
  108. return get<Label[]>('/workspaces/current/tool-labels')
  109. }
  110. export const createWorkflowToolProvider = (payload: WorkflowToolProviderRequest & { workflow_app_id: string }) => {
  111. return post('/workspaces/current/tool-provider/workflow/create', {
  112. body: { ...payload },
  113. })
  114. }
  115. export const saveWorkflowToolProvider = (payload: WorkflowToolProviderRequest & Partial<{
  116. workflow_app_id: string
  117. workflow_tool_id: string
  118. }>) => {
  119. return post('/workspaces/current/tool-provider/workflow/update', {
  120. body: { ...payload },
  121. })
  122. }
  123. export const fetchWorkflowToolDetailByAppID = (appID: string) => {
  124. return get<WorkflowToolProviderResponse>(`/workspaces/current/tool-provider/workflow/get?workflow_app_id=${appID}`)
  125. }
  126. export const fetchWorkflowToolDetail = (toolID: string) => {
  127. return get<WorkflowToolProviderResponse>(`/workspaces/current/tool-provider/workflow/get?workflow_tool_id=${toolID}`)
  128. }
  129. export const deleteWorkflowTool = (toolID: string) => {
  130. return post('/workspaces/current/tool-provider/workflow/delete', {
  131. body: {
  132. workflow_tool_id: toolID,
  133. },
  134. })
  135. }