This commit is contained in:
Timothy Jaeryang Baek
2026-07-09 17:37:04 -05:00
parent 5c389ad93f
commit 9951fbe549
2 changed files with 1 additions and 4 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ CORS_ALLOW_ORIGIN='*'
# Set to false to keep memory tools enabled without adding memory context to the system context.
ENABLE_MEMORY_SYSTEM_CONTEXT=true
# Set to false to disable built-in Python Tools and Functions plugin execution surfaces.
# Set to false to disable workspace Tools and Functions.
ENABLE_PLUGINS=true
# For production you should set this to match the proxy configuration (127.0.0.1)
-3
View File
@@ -473,9 +473,6 @@ async def get_builtin_tools(
Get built-in tools for native function calling.
Only returns tools when BOTH the global config is enabled AND the model capability allows it.
"""
if not ENABLE_PLUGINS:
return {}
tools_dict = {}
builtin_functions = []
features = features or {}