Browse Source

fix: compatible to old tool config (#2837)

tags/0.5.10
Yeuoly 1 year ago
parent
commit
bbea3a6b84
No account linked to committer's email address
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      api/controllers/console/app/app.py

+ 2
- 0
api/controllers/console/app/app.py View File

agent_mode = model_config.agent_mode_dict agent_mode = model_config.agent_mode_dict
# decrypt agent tool parameters if it's secret-input # decrypt agent tool parameters if it's secret-input
for tool in agent_mode.get('tools') or []: for tool in agent_mode.get('tools') or []:
if not isinstance(tool, dict) or len(tool.keys()) <= 3:
continue
agent_tool_entity = AgentToolEntity(**tool) agent_tool_entity = AgentToolEntity(**tool)
# get tool # get tool
try: try:

Loading…
Cancel
Save