diff --git a/src/langbot/pkg/provider/tools/loaders/native.py b/src/langbot/pkg/provider/tools/loaders/native.py index 6c28f313..b344d7ef 100644 --- a/src/langbot/pkg/provider/tools/loaders/native.py +++ b/src/langbot/pkg/provider/tools/loaders/native.py @@ -237,7 +237,7 @@ class NativeToolLoader(loader.ToolLoader): 'Use this tool for bash commands, Python execution, and exact calculations over ' 'user-provided data. Activated skill packages are addressable under ' '/workspace/.skills/; when running inside one, set workdir to that path. ' - 'To create a new skill package, prepare it under /workspace first, then use import_skill_from_directory.' + 'To create a new skill package, prepare it under /workspace first, then use register_skill.' ), parameters={ 'type': 'object', @@ -303,7 +303,7 @@ class NativeToolLoader(loader.ToolLoader): description=( 'Create or overwrite a file at the given path under /workspace with the provided content. ' 'Activated skill packages can be modified through /workspace/.skills//... . ' - 'For new skills, write files under /workspace and then call import_skill_from_directory.' + 'For new skills, write files under /workspace and then call register_skill.' ), parameters={ 'type': 'object', @@ -331,7 +331,7 @@ class NativeToolLoader(loader.ToolLoader): 'Perform an exact string replacement in a file under /workspace. ' 'The old_string must appear exactly once in the file. Activated skill packages ' 'can be edited through /workspace/.skills//... . ' - 'For new skills, edit files under /workspace and then call import_skill_from_directory.' + 'For new skills, edit files under /workspace and then call register_skill.' ), parameters={ 'type': 'object',