Skip to content
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

feat: add custom configuration to pass it as constructor param for a CustomGuardrail #8307

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions litellm/proxy/guardrails/init_guardrails.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ def init_guardrails_v2(
guardrail_name=guardrail["guardrail_name"],
event_hook=litellm_params["mode"],
default_on=litellm_params["default_on"],
custom_config=litellm_params["custom_config"],
)
litellm.logging_callback_manager.add_litellm_callback(_guardrail_callback) # type: ignore
else:
Expand Down
2 changes: 2 additions & 0 deletions litellm/types/guardrails.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ class LitellmParams(TypedDict):
guard_name: Optional[str]
default_on: Optional[bool]

# custom config params
custom_config: Optional[dict]

class Guardrail(TypedDict, total=False):
guardrail_name: str
Expand Down