We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d45c50 commit 86fb119Copy full SHA for 86fb119
1 file changed
veadk/tools/builtin_tools/execute_skills.py
@@ -130,8 +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")
136
+
137
env_vars = {
- "SKILL_SPACE_NAME": os.getenv("SKILL_SPACE_NAME", ""),
138
+ "SKILL_SPACE_NAME": skill_space_name,
139
"TOOL_USER_SESSION_ID": tool_user_session_id,
140
}
141
0 commit comments