-
Notifications
You must be signed in to change notification settings - Fork 0
Safety features #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Safety features #46
Changes from 3 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
e98ff3b
Last ruff reformatting
Wunderwaffel 29fb6e8
Last ruff reformatting
Wunderwaffel 1bb161c
Merge branch 'backend/safety_features' of https://github.com/MoSchmid…
Wunderwaffel 77fbaea
Fixed some linting and runtime issues
Wunderwaffel dd46432
Update backend/app/llm/openai/provider.py
Wunderwaffel 2722e74
Update backend/app/core/limiter.py
Wunderwaffel 5e48b1d
Update backend/app/routes/search_routes.py
Wunderwaffel faa9cd4
Trigger linting in repository
Wunderwaffel 4794588
Added default for the safety canary so CI pipeline is happy
Wunderwaffel fc023b1
Merge branch 'main' into backend/safety_features
Wunderwaffel 1771196
Merge branch 'main' into backend/safety_features
Wunderwaffel 6a7aeac
Merge branch 'backend/safety_features' of https://github.com/MoSchmid…
Wunderwaffel b736d3f
Merge remote-tracking branch 'origin/main' into backend/safety_features
Wunderwaffel bf9850c
Merge remote-tracking branch 'origin/main' into backend/safety_features
Wunderwaffel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| from slowapi import Limiter | ||
| from slowapi.util import get_remote_address | ||
|
|
||
| # Define the limiter in a separate file to avoid circular import error | ||
| limiter = Limiter(key_func=get_remote_address, default_limits=["5/minute"]) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| import logging | ||
|
|
||
| from app.core.config import settings | ||
| from app.core.deps import get_openai_provider | ||
|
|
||
| logger = logging.getLogger("inquiro") | ||
|
|
||
|
|
||
| class SafetyService: | ||
| """ | ||
| Centralized security service for GenAI interactions. | ||
| Implements defenses against Prompt Injection and Toxicity. | ||
| """ | ||
|
|
||
| @staticmethod | ||
| def validate_output(text: str) -> bool: | ||
| """ | ||
| Run output guardrails. Return true if safe, false if violated | ||
| """ | ||
| if settings.SAFETY_CANARY == "": | ||
| logger.error("Safety Canary not set.") | ||
| return False | ||
|
Wunderwaffel marked this conversation as resolved.
|
||
|
|
||
| if settings.SAFETY_CANARY in text: | ||
| logger.critical("Safety: PROMPT LEAKAGE DETECTED. Canary token found in output.") | ||
| return False | ||
|
|
||
| return True | ||
|
|
||
| @staticmethod | ||
| async def check_moderation(input_text: str) -> bool: | ||
| """ | ||
| Checks text against OpenAI's moderation endpoint. | ||
| Returns True if SAFE, False if FLAGGED (toxic). | ||
| """ | ||
| openai_provider = get_openai_provider() | ||
|
|
||
| return await openai_provider.check_moderation(input_text) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.