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.
- agentsystems_sdk/commands/up.py +10 -0
- agentsystems_sdk/licenses/python/ATTRIBUTIONS.md +1079 -32
- agentsystems_sdk/licenses/python/THIRD_PARTY_LICENSES.json +113 -1
- agentsystems_sdk/licenses/python/THIRD_PARTY_REQUIREMENTS.txt +14 -0
- {agentsystems_sdk-0.4.1.dist-info → agentsystems_sdk-0.4.3.dist-info}/METADATA +1 -1
- {agentsystems_sdk-0.4.1.dist-info → agentsystems_sdk-0.4.3.dist-info}/RECORD +11 -11
- {agentsystems_sdk-0.4.1.dist-info → agentsystems_sdk-0.4.3.dist-info}/WHEEL +0 -0
- {agentsystems_sdk-0.4.1.dist-info → agentsystems_sdk-0.4.3.dist-info}/entry_points.txt +0 -0
- {agentsystems_sdk-0.4.1.dist-info → agentsystems_sdk-0.4.3.dist-info}/licenses/LICENSE +0 -0
- {agentsystems_sdk-0.4.1.dist-info → agentsystems_sdk-0.4.3.dist-info}/licenses/NOTICE +0 -0
- {agentsystems_sdk-0.4.1.dist-info → agentsystems_sdk-0.4.3.dist-info}/top_level.txt +0 -0
agentsystems_sdk/commands/up.py
CHANGED
@@ -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
|
[
|