| 
									
										
										
										
											2024-02-01 18:11:57 +08:00
										 |  |  | import io | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-21 02:11:40 +09:00
										 |  |  | from flask import send_file | 
					
						
							| 
									
										
										
										
											2024-02-01 18:11:57 +08:00
										 |  |  | from flask_login import current_user | 
					
						
							|  |  |  | from flask_restful import Resource, reqparse | 
					
						
							| 
									
										
										
										
											2024-02-06 13:21:13 +08:00
										 |  |  | from werkzeug.exceptions import Forbidden | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-21 02:11:40 +09:00
										 |  |  | from configs import dify_config | 
					
						
							| 
									
										
										
										
											2024-02-06 13:21:13 +08:00
										 |  |  | from controllers.console import api | 
					
						
							|  |  |  | from controllers.console.setup import setup_required | 
					
						
							|  |  |  | from controllers.console.wraps import account_initialization_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | from core.model_runtime.utils.encoders import jsonable_encoder | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | from libs.helper import alphanumeric, uuid_value | 
					
						
							| 
									
										
										
										
											2024-02-01 18:11:57 +08:00
										 |  |  | from libs.login import login_required | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | from services.tools.api_tools_manage_service import ApiToolManageService | 
					
						
							|  |  |  | from services.tools.builtin_tools_manage_service import BuiltinToolManageService | 
					
						
							|  |  |  | from services.tools.tool_labels_service import ToolLabelsService | 
					
						
							|  |  |  | from services.tools.tools_manage_service import ToolCommonService | 
					
						
							|  |  |  | from services.tools.workflow_tools_manage_service import WorkflowToolManageService | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolProviderListApi(Resource): | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         user_id = current_user.id | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         req = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         req.add_argument( | 
					
						
							|  |  |  |             "type", | 
					
						
							|  |  |  |             type=str, | 
					
						
							|  |  |  |             choices=["builtin", "model", "api", "workflow"], | 
					
						
							|  |  |  |             required=False, | 
					
						
							|  |  |  |             nullable=True, | 
					
						
							|  |  |  |             location="args", | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         args = req.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         return ToolCommonService.list_tool_providers(user_id, tenant_id, args.get("type", None)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolBuiltinProviderListToolsApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self, provider): | 
					
						
							|  |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         return jsonable_encoder( | 
					
						
							|  |  |  |             BuiltinToolManageService.list_builtin_tool_provider_tools( | 
					
						
							|  |  |  |                 user_id, | 
					
						
							|  |  |  |                 tenant_id, | 
					
						
							|  |  |  |                 provider, | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolBuiltinProviderDeleteApi(Resource): | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def post(self, provider): | 
					
						
							| 
									
										
										
										
											2024-01-26 12:47:42 +08:00
										 |  |  |         if not current_user.is_admin_or_owner: | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return BuiltinToolManageService.delete_builtin_tool_provider( | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             user_id, | 
					
						
							|  |  |  |             tenant_id, | 
					
						
							|  |  |  |             provider, | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolBuiltinProviderUpdateApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def post(self, provider): | 
					
						
							| 
									
										
										
										
											2024-01-26 12:47:42 +08:00
										 |  |  |         if not current_user.is_admin_or_owner: | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("credentials", type=dict, required=True, nullable=False, location="json") | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |         args = parser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return BuiltinToolManageService.update_builtin_tool_provider( | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             user_id, | 
					
						
							|  |  |  |             tenant_id, | 
					
						
							|  |  |  |             provider, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             args["credentials"], | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | class ToolBuiltinProviderGetCredentialsApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self, provider): | 
					
						
							|  |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return BuiltinToolManageService.get_builtin_tool_provider_credentials( | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |             user_id, | 
					
						
							|  |  |  |             tenant_id, | 
					
						
							|  |  |  |             provider, | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolBuiltinProviderIconApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     def get(self, provider): | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         icon_bytes, mimetype = BuiltinToolManageService.get_builtin_tool_provider_icon(provider) | 
					
						
							| 
									
										
										
										
											2024-07-21 02:11:40 +09:00
										 |  |  |         icon_cache_max_age = dify_config.TOOL_ICON_CACHE_MAX_AGE | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |         return send_file(io.BytesIO(icon_bytes), mimetype=mimetype, max_age=icon_cache_max_age) | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolApiProviderAddApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def post(self): | 
					
						
							| 
									
										
										
										
											2024-01-26 12:47:42 +08:00
										 |  |  |         if not current_user.is_admin_or_owner: | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         user_id = current_user.id | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("credentials", type=dict, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("schema_type", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("schema", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("provider", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("icon", type=dict, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("privacy_policy", type=str, required=False, nullable=True, location="json") | 
					
						
							|  |  |  |         parser.add_argument("labels", type=list[str], required=False, nullable=True, location="json", default=[]) | 
					
						
							|  |  |  |         parser.add_argument("custom_disclaimer", type=str, required=False, nullable=True, location="json") | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         args = parser.parse_args() | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return ApiToolManageService.create_api_tool_provider( | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             user_id, | 
					
						
							|  |  |  |             tenant_id, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             args["provider"], | 
					
						
							|  |  |  |             args["icon"], | 
					
						
							|  |  |  |             args["credentials"], | 
					
						
							|  |  |  |             args["schema_type"], | 
					
						
							|  |  |  |             args["schema"], | 
					
						
							|  |  |  |             args.get("privacy_policy", ""), | 
					
						
							|  |  |  |             args.get("custom_disclaimer", ""), | 
					
						
							|  |  |  |             args.get("labels", []), | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolApiProviderGetRemoteSchemaApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							|  |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("url", type=str, required=True, nullable=False, location="args") | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         args = parser.parse_args() | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return ApiToolManageService.get_api_tool_provider_remote_schema( | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             current_user.id, | 
					
						
							|  |  |  |             current_user.current_tenant_id, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             args["url"], | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolApiProviderListToolsApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							|  |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("provider", type=str, required=True, nullable=False, location="args") | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         args = parser.parse_args() | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         return jsonable_encoder( | 
					
						
							|  |  |  |             ApiToolManageService.list_api_tool_provider_tools( | 
					
						
							|  |  |  |                 user_id, | 
					
						
							|  |  |  |                 tenant_id, | 
					
						
							|  |  |  |                 args["provider"], | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolApiProviderUpdateApi(Resource): | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |     def post(self): | 
					
						
							| 
									
										
										
										
											2024-01-26 12:47:42 +08:00
										 |  |  |         if not current_user.is_admin_or_owner: | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("credentials", type=dict, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("schema_type", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("schema", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("provider", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("original_provider", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("icon", type=dict, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("privacy_policy", type=str, required=True, nullable=True, location="json") | 
					
						
							|  |  |  |         parser.add_argument("labels", type=list[str], required=False, nullable=True, location="json") | 
					
						
							|  |  |  |         parser.add_argument("custom_disclaimer", type=str, required=True, nullable=True, location="json") | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |         args = parser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return ApiToolManageService.update_api_tool_provider( | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             user_id, | 
					
						
							|  |  |  |             tenant_id, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             args["provider"], | 
					
						
							|  |  |  |             args["original_provider"], | 
					
						
							|  |  |  |             args["icon"], | 
					
						
							|  |  |  |             args["credentials"], | 
					
						
							|  |  |  |             args["schema_type"], | 
					
						
							|  |  |  |             args["schema"], | 
					
						
							|  |  |  |             args["privacy_policy"], | 
					
						
							|  |  |  |             args["custom_disclaimer"], | 
					
						
							|  |  |  |             args.get("labels", []), | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolApiProviderDeleteApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def post(self): | 
					
						
							| 
									
										
										
										
											2024-01-26 12:47:42 +08:00
										 |  |  |         if not current_user.is_admin_or_owner: | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         parser = reqparse.RequestParser() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("provider", type=str, required=True, nullable=False, location="json") | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         args = parser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return ApiToolManageService.delete_api_tool_provider( | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             user_id, | 
					
						
							|  |  |  |             tenant_id, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             args["provider"], | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolApiProviderGetApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							|  |  |  |         user_id = current_user.id | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("provider", type=str, required=True, nullable=False, location="args") | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         args = parser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return ApiToolManageService.get_api_tool_provider( | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             user_id, | 
					
						
							|  |  |  |             tenant_id, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             args["provider"], | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolBuiltinProviderCredentialsSchemaApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self, provider): | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return BuiltinToolManageService.list_builtin_provider_credentials_schema(provider) | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolApiProviderSchemaApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def post(self): | 
					
						
							|  |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("schema", type=str, required=True, nullable=False, location="json") | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         args = parser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return ApiToolManageService.parser_api_schema( | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             schema=args["schema"], | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | class ToolApiProviderPreviousTestApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def post(self): | 
					
						
							|  |  |  |         parser = reqparse.RequestParser() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("tool_name", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("provider_name", type=str, required=False, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("credentials", type=dict, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("parameters", type=dict, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("schema_type", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         parser.add_argument("schema", type=str, required=True, nullable=False, location="json") | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         args = parser.parse_args() | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return ApiToolManageService.test_api_tool_preview( | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |             current_user.current_tenant_id, | 
					
						
							| 
									
										
										
										
											2024-09-12 15:50:49 +08:00
										 |  |  |             args["provider_name"] or "", | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             args["tool_name"], | 
					
						
							|  |  |  |             args["credentials"], | 
					
						
							|  |  |  |             args["parameters"], | 
					
						
							|  |  |  |             args["schema_type"], | 
					
						
							|  |  |  |             args["schema"], | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | class ToolWorkflowProviderCreateApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def post(self): | 
					
						
							|  |  |  |         if not current_user.is_admin_or_owner: | 
					
						
							|  |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         reqparser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         reqparser.add_argument("workflow_app_id", type=uuid_value, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("name", type=alphanumeric, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("label", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("description", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("icon", type=dict, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("parameters", type=list[dict], required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("privacy_policy", type=str, required=False, nullable=True, location="json", default="") | 
					
						
							|  |  |  |         reqparser.add_argument("labels", type=list[str], required=False, nullable=True, location="json") | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         args = reqparser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return WorkflowToolManageService.create_workflow_tool( | 
					
						
							| 
									
										
										
										
											2024-10-21 10:43:49 +08:00
										 |  |  |             user_id=user_id, | 
					
						
							|  |  |  |             tenant_id=tenant_id, | 
					
						
							|  |  |  |             workflow_app_id=args["workflow_app_id"], | 
					
						
							|  |  |  |             name=args["name"], | 
					
						
							|  |  |  |             label=args["label"], | 
					
						
							|  |  |  |             icon=args["icon"], | 
					
						
							|  |  |  |             description=args["description"], | 
					
						
							|  |  |  |             parameters=args["parameters"], | 
					
						
							|  |  |  |             privacy_policy=args["privacy_policy"], | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | class ToolWorkflowProviderUpdateApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def post(self): | 
					
						
							|  |  |  |         if not current_user.is_admin_or_owner: | 
					
						
							|  |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         reqparser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         reqparser.add_argument("workflow_tool_id", type=uuid_value, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("name", type=alphanumeric, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("label", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("description", type=str, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("icon", type=dict, required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("parameters", type=list[dict], required=True, nullable=False, location="json") | 
					
						
							|  |  |  |         reqparser.add_argument("privacy_policy", type=str, required=False, nullable=True, location="json", default="") | 
					
						
							|  |  |  |         reqparser.add_argument("labels", type=list[str], required=False, nullable=True, location="json") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         args = reqparser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if not args["workflow_tool_id"]: | 
					
						
							|  |  |  |             raise ValueError("incorrect workflow_tool_id") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         return WorkflowToolManageService.update_workflow_tool( | 
					
						
							|  |  |  |             user_id, | 
					
						
							|  |  |  |             tenant_id, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             args["workflow_tool_id"], | 
					
						
							|  |  |  |             args["name"], | 
					
						
							|  |  |  |             args["label"], | 
					
						
							|  |  |  |             args["icon"], | 
					
						
							|  |  |  |             args["description"], | 
					
						
							|  |  |  |             args["parameters"], | 
					
						
							|  |  |  |             args["privacy_policy"], | 
					
						
							|  |  |  |             args.get("labels", []), | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | class ToolWorkflowProviderDeleteApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def post(self): | 
					
						
							|  |  |  |         if not current_user.is_admin_or_owner: | 
					
						
							|  |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         reqparser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         reqparser.add_argument("workflow_tool_id", type=uuid_value, required=True, nullable=False, location="json") | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         args = reqparser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return WorkflowToolManageService.delete_workflow_tool( | 
					
						
							|  |  |  |             user_id, | 
					
						
							|  |  |  |             tenant_id, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             args["workflow_tool_id"], | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | class ToolWorkflowProviderGetApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							|  |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("workflow_tool_id", type=uuid_value, required=False, nullable=True, location="args") | 
					
						
							|  |  |  |         parser.add_argument("workflow_app_id", type=uuid_value, required=False, nullable=True, location="args") | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         args = parser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args.get("workflow_tool_id"): | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |             tool = WorkflowToolManageService.get_workflow_tool_by_tool_id( | 
					
						
							|  |  |  |                 user_id, | 
					
						
							|  |  |  |                 tenant_id, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |                 args["workflow_tool_id"], | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |             ) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         elif args.get("workflow_app_id"): | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |             tool = WorkflowToolManageService.get_workflow_tool_by_app_id( | 
					
						
							|  |  |  |                 user_id, | 
					
						
							|  |  |  |                 tenant_id, | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |                 args["workflow_app_id"], | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  |             ) | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             raise ValueError("incorrect workflow_tool_id or workflow_app_id") | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return jsonable_encoder(tool) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | class ToolWorkflowProviderListToolApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							|  |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("workflow_tool_id", type=uuid_value, required=True, nullable=False, location="args") | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         args = parser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         return jsonable_encoder( | 
					
						
							|  |  |  |             WorkflowToolManageService.list_single_workflow_tools( | 
					
						
							|  |  |  |                 user_id, | 
					
						
							|  |  |  |                 tenant_id, | 
					
						
							|  |  |  |                 args["workflow_tool_id"], | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | class ToolBuiltinListApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							|  |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         return jsonable_encoder( | 
					
						
							|  |  |  |             [ | 
					
						
							|  |  |  |                 provider.to_dict() | 
					
						
							|  |  |  |                 for provider in BuiltinToolManageService.list_builtin_tools( | 
					
						
							|  |  |  |                     user_id, | 
					
						
							|  |  |  |                     tenant_id, | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |             ] | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | class ToolApiListApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							|  |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         return jsonable_encoder( | 
					
						
							|  |  |  |             [ | 
					
						
							|  |  |  |                 provider.to_dict() | 
					
						
							|  |  |  |                 for provider in ApiToolManageService.list_api_tools( | 
					
						
							|  |  |  |                     user_id, | 
					
						
							|  |  |  |                     tenant_id, | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |             ] | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | class ToolWorkflowListApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							|  |  |  |         user_id = current_user.id | 
					
						
							|  |  |  |         tenant_id = current_user.current_tenant_id | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         return jsonable_encoder( | 
					
						
							|  |  |  |             [ | 
					
						
							|  |  |  |                 provider.to_dict() | 
					
						
							|  |  |  |                 for provider in WorkflowToolManageService.list_tenant_workflow_tools( | 
					
						
							|  |  |  |                     user_id, | 
					
						
							|  |  |  |                     tenant_id, | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |             ] | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | class ToolLabelsApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							|  |  |  |     def get(self): | 
					
						
							|  |  |  |         return jsonable_encoder(ToolLabelsService.list_tool_labels()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | # tool provider | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | api.add_resource(ToolProviderListApi, "/workspaces/current/tool-providers") | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # builtin tool provider | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | api.add_resource(ToolBuiltinProviderListToolsApi, "/workspaces/current/tool-provider/builtin/<provider>/tools") | 
					
						
							|  |  |  | api.add_resource(ToolBuiltinProviderDeleteApi, "/workspaces/current/tool-provider/builtin/<provider>/delete") | 
					
						
							|  |  |  | api.add_resource(ToolBuiltinProviderUpdateApi, "/workspaces/current/tool-provider/builtin/<provider>/update") | 
					
						
							|  |  |  | api.add_resource( | 
					
						
							|  |  |  |     ToolBuiltinProviderGetCredentialsApi, "/workspaces/current/tool-provider/builtin/<provider>/credentials" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | api.add_resource( | 
					
						
							|  |  |  |     ToolBuiltinProviderCredentialsSchemaApi, "/workspaces/current/tool-provider/builtin/<provider>/credentials_schema" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | api.add_resource(ToolBuiltinProviderIconApi, "/workspaces/current/tool-provider/builtin/<provider>/icon") | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # api tool provider | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | api.add_resource(ToolApiProviderAddApi, "/workspaces/current/tool-provider/api/add") | 
					
						
							|  |  |  | api.add_resource(ToolApiProviderGetRemoteSchemaApi, "/workspaces/current/tool-provider/api/remote") | 
					
						
							|  |  |  | api.add_resource(ToolApiProviderListToolsApi, "/workspaces/current/tool-provider/api/tools") | 
					
						
							|  |  |  | api.add_resource(ToolApiProviderUpdateApi, "/workspaces/current/tool-provider/api/update") | 
					
						
							|  |  |  | api.add_resource(ToolApiProviderDeleteApi, "/workspaces/current/tool-provider/api/delete") | 
					
						
							|  |  |  | api.add_resource(ToolApiProviderGetApi, "/workspaces/current/tool-provider/api/get") | 
					
						
							|  |  |  | api.add_resource(ToolApiProviderSchemaApi, "/workspaces/current/tool-provider/api/schema") | 
					
						
							|  |  |  | api.add_resource(ToolApiProviderPreviousTestApi, "/workspaces/current/tool-provider/api/test/pre") | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | # workflow tool provider | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | api.add_resource(ToolWorkflowProviderCreateApi, "/workspaces/current/tool-provider/workflow/create") | 
					
						
							|  |  |  | api.add_resource(ToolWorkflowProviderUpdateApi, "/workspaces/current/tool-provider/workflow/update") | 
					
						
							|  |  |  | api.add_resource(ToolWorkflowProviderDeleteApi, "/workspaces/current/tool-provider/workflow/delete") | 
					
						
							|  |  |  | api.add_resource(ToolWorkflowProviderGetApi, "/workspaces/current/tool-provider/workflow/get") | 
					
						
							|  |  |  | api.add_resource(ToolWorkflowProviderListToolApi, "/workspaces/current/tool-provider/workflow/tools") | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | api.add_resource(ToolBuiltinListApi, "/workspaces/current/tools/builtin") | 
					
						
							|  |  |  | api.add_resource(ToolApiListApi, "/workspaces/current/tools/api") | 
					
						
							|  |  |  | api.add_resource(ToolWorkflowListApi, "/workspaces/current/tools/workflow") | 
					
						
							| 
									
										
										
										
											2024-05-27 22:01:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | api.add_resource(ToolLabelsApi, "/workspaces/current/tool-labels") |