Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
zzhangpurdue committed Nov 13, 2024
1 parent d553599 commit 42e38f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/agentfabric/config_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def parse_configuration(uuid_str='', use_tool_api=False):
tool_cfg[key] = value
if value['use']:
available_tool_list.append(key)
if value['is_openapi']:
if 'is_openapi' in value and value['is_openapi']:
available_plugin_list.append(key)

plugin_cfg = {}
Expand Down

0 comments on commit 42e38f7

Please sign in to comment.