Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dify
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ai-tech
dify
Commits
5ff6b1da
Unverified
Commit
5ff6b1da
authored
Feb 19, 2024
by
kukuze
Committed by
GitHub
Feb 19, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Windows local deployment switch "tool“ interface failed (#2483)
parent
8b49e0ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
builtin_tool_provider.py
api/core/tools/provider/builtin_tool_provider.py
+2
-2
No files found.
api/core/tools/provider/builtin_tool_provider.py
View file @
5ff6b1da
...
...
@@ -58,7 +58,7 @@ class BuiltinToolProviderController(ToolProviderController):
tool_files
=
list
(
filter
(
lambda
x
:
x
.
endswith
(
".yaml"
)
and
not
x
.
startswith
(
"__"
),
listdir
(
tool_path
)))
tools
=
[]
for
tool_file
in
tool_files
:
with
open
(
path
.
join
(
tool_path
,
tool_file
))
as
f
:
with
open
(
path
.
join
(
tool_path
,
tool_file
)
,
encoding
=
'utf-8'
)
as
f
:
# get tool name
tool_name
=
tool_file
.
split
(
"."
)[
0
]
tool
=
load
(
f
.
read
(),
FullLoader
)
...
...
@@ -287,4 +287,4 @@ class BuiltinToolProviderController(ToolProviderController):
:param tool_name: the name of the tool, defined in `get_tools`
:param credentials: the credentials of the tool
"""
pass
\ No newline at end of file
pass
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment