agentsystems-sdk 0.4.1__py3-none-any.whl → 0.4.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -289,6 +289,16 @@ def setup_agents_from_config(
289
289
  # Artifact permissions are enforced at the application level via agentsystems-config.yml
290
290
  cmd.extend(["--volume", "agentsystems_agentsystems-artifacts:/artifacts"])
291
291
 
292
+ # Mount agentsystems-config.yml for model routing via agentsystems-toolkit
293
+ config_file_path = project_dir / "agentsystems-config.yml"
294
+ if config_file_path.exists():
295
+ cmd.extend(
296
+ [
297
+ "--volume",
298
+ f"{config_file_path}:/etc/agentsystems/agentsystems-config.yml:ro",
299
+ ]
300
+ )
301
+
292
302
  # gateway proxy env
293
303
  cmd.extend(
294
304
  [