model_config.py 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. import json
  2. from flask import request
  3. from flask_login import current_user
  4. from flask_restful import Resource
  5. from controllers.console import api
  6. from controllers.console.app import _get_app
  7. from controllers.console.setup import setup_required
  8. from controllers.console.wraps import account_initialization_required
  9. from core.entities.application_entities import AgentToolEntity
  10. from core.tools.tool_manager import ToolManager
  11. from core.tools.utils.configuration import ToolParameterConfigurationManager
  12. from events.app_event import app_model_config_was_updated
  13. from extensions.ext_database import db
  14. from libs.login import login_required
  15. from models.model import AppModelConfig
  16. from services.app_model_config_service import AppModelConfigService
  17. class ModelConfigResource(Resource):
  18. @setup_required
  19. @login_required
  20. @account_initialization_required
  21. def post(self, app_id):
  22. """Modify app model config"""
  23. app_id = str(app_id)
  24. app = _get_app(app_id)
  25. # validate config
  26. model_configuration = AppModelConfigService.validate_configuration(
  27. tenant_id=current_user.current_tenant_id,
  28. account=current_user,
  29. config=request.json,
  30. app_mode=app.mode
  31. )
  32. new_app_model_config = AppModelConfig(
  33. app_id=app.id,
  34. )
  35. new_app_model_config = new_app_model_config.from_model_config_dict(model_configuration)
  36. # get original app model config
  37. original_app_model_config: AppModelConfig = db.session.query(AppModelConfig).filter(
  38. AppModelConfig.id == app.app_model_config_id
  39. ).first()
  40. agent_mode = original_app_model_config.agent_mode_dict
  41. # decrypt agent tool parameters if it's secret-input
  42. parameter_map = {}
  43. masked_parameter_map = {}
  44. tool_map = {}
  45. for tool in agent_mode.get('tools') or []:
  46. agent_tool_entity = AgentToolEntity(**tool)
  47. # get tool
  48. try:
  49. tool_runtime = ToolManager.get_agent_tool_runtime(
  50. tenant_id=current_user.current_tenant_id,
  51. agent_tool=agent_tool_entity,
  52. agent_callback=None
  53. )
  54. manager = ToolParameterConfigurationManager(
  55. tenant_id=current_user.current_tenant_id,
  56. tool_runtime=tool_runtime,
  57. provider_name=agent_tool_entity.provider_id,
  58. provider_type=agent_tool_entity.provider_type,
  59. )
  60. except Exception as e:
  61. continue
  62. # get decrypted parameters
  63. if agent_tool_entity.tool_parameters:
  64. parameters = manager.decrypt_tool_parameters(agent_tool_entity.tool_parameters or {})
  65. masked_parameter = manager.mask_tool_parameters(parameters or {})
  66. else:
  67. parameters = {}
  68. masked_parameter = {}
  69. key = f'{agent_tool_entity.provider_id}.{agent_tool_entity.provider_type}.{agent_tool_entity.tool_name}'
  70. masked_parameter_map[key] = masked_parameter
  71. parameter_map[key] = parameters
  72. tool_map[key] = tool_runtime
  73. # encrypt agent tool parameters if it's secret-input
  74. agent_mode = new_app_model_config.agent_mode_dict
  75. for tool in agent_mode.get('tools') or []:
  76. agent_tool_entity = AgentToolEntity(**tool)
  77. # get tool
  78. key = f'{agent_tool_entity.provider_id}.{agent_tool_entity.provider_type}.{agent_tool_entity.tool_name}'
  79. if key in tool_map:
  80. tool_runtime = tool_map[key]
  81. else:
  82. try:
  83. tool_runtime = ToolManager.get_agent_tool_runtime(
  84. tenant_id=current_user.current_tenant_id,
  85. agent_tool=agent_tool_entity,
  86. agent_callback=None
  87. )
  88. except Exception as e:
  89. continue
  90. manager = ToolParameterConfigurationManager(
  91. tenant_id=current_user.current_tenant_id,
  92. tool_runtime=tool_runtime,
  93. provider_name=agent_tool_entity.provider_id,
  94. provider_type=agent_tool_entity.provider_type,
  95. )
  96. manager.delete_tool_parameters_cache()
  97. # override parameters if it equals to masked parameters
  98. if agent_tool_entity.tool_parameters:
  99. if key not in masked_parameter_map:
  100. continue
  101. if agent_tool_entity.tool_parameters == masked_parameter_map[key]:
  102. agent_tool_entity.tool_parameters = parameter_map[key]
  103. # encrypt parameters
  104. if agent_tool_entity.tool_parameters:
  105. tool['tool_parameters'] = manager.encrypt_tool_parameters(agent_tool_entity.tool_parameters or {})
  106. # update app model config
  107. new_app_model_config.agent_mode = json.dumps(agent_mode)
  108. db.session.add(new_app_model_config)
  109. db.session.flush()
  110. app.app_model_config_id = new_app_model_config.id
  111. db.session.commit()
  112. app_model_config_was_updated.send(
  113. app,
  114. app_model_config=new_app_model_config
  115. )
  116. return {'result': 'success'}
  117. api.add_resource(ModelConfigResource, '/apps/<uuid:app_id>/model-config')