Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Fix when setting system prompt #715

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/codegate/pipeline/cli/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ async def _set_custom_instructions(self, flags: Dict[str, str], args: List[str])
workspace_name = active_workspace.name

try:
updated_worksapce = await self.workspace_crud.update_workspace_instructions(
updated_worksapce = await self.workspace_crud.update_workspace_custom_instructions(
workspace_name, args
)
except crud.WorkspaceDoesNotExistError:
Expand Down
Loading