Skip to content

Commit

Permalink
Move secret encryption step to the top of input processing
Browse files Browse the repository at this point in the history
  • Loading branch information
ptelang committed Dec 11, 2024
1 parent b037966 commit 1394edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codegate/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ def init_app() -> FastAPI:

# Define input pipeline steps
input_steps: List[PipelineStep] = [
CodegateSecrets(),
CodegateVersion(),
CodeSnippetExtractor(),
SystemPrompt(Config.get_config().prompts.default_chat),
CodegateContextRetriever(),
CodegateSecrets(),
]

# Define FIM pipeline steps
Expand Down

0 comments on commit 1394edb

Please sign in to comment.