Skip to content

Commit

Permalink
Merge pull request #1057 from julep-ai/x/patch-agent-query
Browse files Browse the repository at this point in the history
fix: Patch instructions and canonical name
  • Loading branch information
whiterabbit1983 authored Jan 14, 2025
2 parents 633164b + 0aa9621 commit cd1004c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agents-api/agents_api/queries/agents/patch_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def patch_agent(
data.metadata,
data.model,
data.default_settings.model_dump() if data.default_settings else None,
data.instructions,
[data.instructions] if isinstance(data.instructions, str) else data.instructions,
data.canonical_name,
]

Expand Down

0 comments on commit cd1004c

Please sign in to comment.