We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 264e535 commit 4c32c93Copy full SHA for 4c32c93
veadk/tools/builtin_tools/execute_skills.py
@@ -130,12 +130,12 @@ def execute_skills(
130
if skills:
131
cmd.extend(["--skills"] + skills)
132
133
- skill_space_name = os.getenv("SKILL_SPACE_NAME", "")
134
- if not skill_space_name:
135
- logger.warning("SKILL_SPACE_NAME environment variable is not set")
+ skill_space_id = os.getenv("SKILL_SPACE_ID", "")
+ if not skill_space_id:
+ logger.warning("SKILL_SPACE_ID environment variable is not set")
136
137
env_vars = {
138
- "SKILL_SPACE_NAME": skill_space_name,
+ "SKILL_SPACE_ID": skill_space_id,
139
"TOOL_USER_SESSION_ID": tool_user_session_id,
140
}
141
0 commit comments