Skip to content

Commit

Permalink
Merge pull request #2256 from Agenta-AI/fix/sdk-kwargs-app
Browse files Browse the repository at this point in the history
Fix/sdk kwargs app
  • Loading branch information
mmabrouk authored Nov 14, 2024
2 parents 0f6dc16 + 124fd3c commit ce197c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agenta-cli/agenta/sdk/decorators/routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async def wrapper_deployed(*args, **kwargs) -> Any:
with routing_context_manager(
application={
"id": app_id,
"slug": kwargs["app"],
"slug": kwargs.get("app"),
},
variant={
"slug": kwargs.get("config"),
Expand Down

0 comments on commit ce197c9

Please sign in to comment.