Spaces:
Configuration error
Configuration error
File size: 14,829 Bytes
447ebeb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 |
from datetime import datetime
from enum import Enum
from typing import Any, Dict, List, Literal, Optional, TypedDict, Union
from pydantic import BaseModel, ConfigDict, Field, SecretStr
from typing_extensions import Required, TypedDict
"""
Pydantic object defining how to set guardrails on litellm proxy
guardrails:
- guardrail_name: "bedrock-pre-guard"
litellm_params:
guardrail: bedrock # supported values: "aporia", "bedrock", "lakera"
mode: "during_call"
guardrailIdentifier: ff6ujrregl1q
guardrailVersion: "DRAFT"
default_on: true
"""
class SupportedGuardrailIntegrations(Enum):
APORIA = "aporia"
BEDROCK = "bedrock"
GURDRAILS_AI = "guardrails_ai"
LAKERA = "lakera"
LAKERA_V2 = "lakera_v2"
PRESIDIO = "presidio"
HIDE_SECRETS = "hide-secrets"
AIM = "aim"
PANGEA = "pangea"
LASSO = "lasso"
class Role(Enum):
SYSTEM = "system"
ASSISTANT = "assistant"
USER = "user"
default_roles = [Role.SYSTEM, Role.ASSISTANT, Role.USER]
class GuardrailItemSpec(TypedDict, total=False):
callbacks: Required[List[str]]
default_on: bool
logging_only: Optional[bool]
enabled_roles: Optional[List[Role]]
callback_args: Dict[str, Dict]
class GuardrailItem(BaseModel):
callbacks: List[str]
default_on: bool
logging_only: Optional[bool]
guardrail_name: str
callback_args: Dict[str, Dict]
enabled_roles: Optional[List[Role]]
model_config = ConfigDict(use_enum_values=True)
def __init__(
self,
callbacks: List[str],
guardrail_name: str,
default_on: bool = False,
logging_only: Optional[bool] = None,
enabled_roles: Optional[List[Role]] = default_roles,
callback_args: Dict[str, Dict] = {},
):
super().__init__(
callbacks=callbacks,
default_on=default_on,
logging_only=logging_only,
guardrail_name=guardrail_name,
enabled_roles=enabled_roles,
callback_args=callback_args,
)
# Define the TypedDicts
class LakeraCategoryThresholds(TypedDict, total=False):
prompt_injection: float
jailbreak: float
class PiiAction(str, Enum):
BLOCK = "BLOCK"
MASK = "MASK"
class PiiEntityCategory(str, Enum):
GENERAL = "General"
FINANCE = "Finance"
USA = "USA"
UK = "UK"
SPAIN = "Spain"
ITALY = "Italy"
POLAND = "Poland"
SINGAPORE = "Singapore"
AUSTRALIA = "Australia"
INDIA = "India"
FINLAND = "Finland"
class PiiEntityType(str, Enum):
# General
CREDIT_CARD = "CREDIT_CARD"
CRYPTO = "CRYPTO"
DATE_TIME = "DATE_TIME"
EMAIL_ADDRESS = "EMAIL_ADDRESS"
IBAN_CODE = "IBAN_CODE"
IP_ADDRESS = "IP_ADDRESS"
NRP = "NRP"
LOCATION = "LOCATION"
PERSON = "PERSON"
PHONE_NUMBER = "PHONE_NUMBER"
MEDICAL_LICENSE = "MEDICAL_LICENSE"
URL = "URL"
# USA
US_BANK_NUMBER = "US_BANK_NUMBER"
US_DRIVER_LICENSE = "US_DRIVER_LICENSE"
US_ITIN = "US_ITIN"
US_PASSPORT = "US_PASSPORT"
US_SSN = "US_SSN"
# UK
UK_NHS = "UK_NHS"
UK_NINO = "UK_NINO"
# Spain
ES_NIF = "ES_NIF"
ES_NIE = "ES_NIE"
# Italy
IT_FISCAL_CODE = "IT_FISCAL_CODE"
IT_DRIVER_LICENSE = "IT_DRIVER_LICENSE"
IT_VAT_CODE = "IT_VAT_CODE"
IT_PASSPORT = "IT_PASSPORT"
IT_IDENTITY_CARD = "IT_IDENTITY_CARD"
# Poland
PL_PESEL = "PL_PESEL"
# Singapore
SG_NRIC_FIN = "SG_NRIC_FIN"
SG_UEN = "SG_UEN"
# Australia
AU_ABN = "AU_ABN"
AU_ACN = "AU_ACN"
AU_TFN = "AU_TFN"
AU_MEDICARE = "AU_MEDICARE"
# India
IN_PAN = "IN_PAN"
IN_AADHAAR = "IN_AADHAAR"
IN_VEHICLE_REGISTRATION = "IN_VEHICLE_REGISTRATION"
IN_VOTER = "IN_VOTER"
IN_PASSPORT = "IN_PASSPORT"
# Finland
FI_PERSONAL_IDENTITY_CODE = "FI_PERSONAL_IDENTITY_CODE"
# Define mappings of PII entity types by category
PII_ENTITY_CATEGORIES_MAP = {
PiiEntityCategory.GENERAL: [
PiiEntityType.DATE_TIME,
PiiEntityType.EMAIL_ADDRESS,
PiiEntityType.IP_ADDRESS,
PiiEntityType.NRP,
PiiEntityType.LOCATION,
PiiEntityType.PERSON,
PiiEntityType.PHONE_NUMBER,
PiiEntityType.MEDICAL_LICENSE,
PiiEntityType.URL,
],
PiiEntityCategory.FINANCE: [
PiiEntityType.CREDIT_CARD,
PiiEntityType.CRYPTO,
PiiEntityType.IBAN_CODE,
],
PiiEntityCategory.USA: [
PiiEntityType.US_BANK_NUMBER,
PiiEntityType.US_DRIVER_LICENSE,
PiiEntityType.US_ITIN,
PiiEntityType.US_PASSPORT,
PiiEntityType.US_SSN,
],
PiiEntityCategory.UK: [PiiEntityType.UK_NHS, PiiEntityType.UK_NINO],
PiiEntityCategory.SPAIN: [PiiEntityType.ES_NIF, PiiEntityType.ES_NIE],
PiiEntityCategory.ITALY: [
PiiEntityType.IT_FISCAL_CODE,
PiiEntityType.IT_DRIVER_LICENSE,
PiiEntityType.IT_VAT_CODE,
PiiEntityType.IT_PASSPORT,
PiiEntityType.IT_IDENTITY_CARD,
],
PiiEntityCategory.POLAND: [PiiEntityType.PL_PESEL],
PiiEntityCategory.SINGAPORE: [PiiEntityType.SG_NRIC_FIN, PiiEntityType.SG_UEN],
PiiEntityCategory.AUSTRALIA: [
PiiEntityType.AU_ABN,
PiiEntityType.AU_ACN,
PiiEntityType.AU_TFN,
PiiEntityType.AU_MEDICARE,
],
PiiEntityCategory.INDIA: [
PiiEntityType.IN_PAN,
PiiEntityType.IN_AADHAAR,
PiiEntityType.IN_VEHICLE_REGISTRATION,
PiiEntityType.IN_VOTER,
PiiEntityType.IN_PASSPORT,
],
PiiEntityCategory.FINLAND: [PiiEntityType.FI_PERSONAL_IDENTITY_CODE],
}
class PiiEntityCategoryMap(TypedDict):
category: PiiEntityCategory
entities: List[PiiEntityType]
class GuardrailParamUITypes(str, Enum):
BOOL = "bool"
STR = "str"
class PresidioPresidioConfigModelUserInterface(BaseModel):
"""Configuration parameters for the Presidio PII masking guardrail on LiteLLM UI"""
presidio_analyzer_api_base: Optional[str] = Field(
default=None,
description="Base URL for the Presidio analyzer API",
)
presidio_anonymizer_api_base: Optional[str] = Field(
default=None,
description="Base URL for the Presidio anonymizer API",
)
output_parse_pii: Optional[bool] = Field(
default=None,
description="When True, LiteLLM will replace the masked text with the original text in the response",
# extra param to let the ui know this is a boolean
json_schema_extra={"ui_type": GuardrailParamUITypes.BOOL},
)
presidio_language: Optional[str] = Field(
default="en",
description="Language code for Presidio PII analysis (e.g., 'en', 'de', 'es', 'fr')",
)
class PresidioConfigModel(PresidioPresidioConfigModelUserInterface):
"""Configuration parameters for the Presidio PII masking guardrail"""
pii_entities_config: Optional[Dict[PiiEntityType, PiiAction]] = Field(
default=None, description="Configuration for PII entity types and actions"
)
presidio_ad_hoc_recognizers: Optional[str] = Field(
default=None,
description="Path to a JSON file containing ad-hoc recognizers for Presidio",
)
mock_redacted_text: Optional[dict] = Field(
default=None, description="Mock redacted text for testing"
)
class BedrockGuardrailConfigModel(BaseModel):
"""Configuration parameters for the AWS Bedrock guardrail"""
guardrailIdentifier: Optional[str] = Field(
default=None, description="The ID of your guardrail on Bedrock"
)
guardrailVersion: Optional[str] = Field(
default=None,
description="The version of your Bedrock guardrail (e.g., DRAFT or version number)",
)
aws_region_name: Optional[str] = Field(
default=None, description="AWS region where your guardrail is deployed"
)
aws_access_key_id: Optional[str] = Field(
default=None, description="AWS access key ID for authentication"
)
aws_secret_access_key: Optional[str] = Field(
default=None, description="AWS secret access key for authentication"
)
aws_session_token: Optional[str] = Field(
default=None, description="AWS session token for temporary credentials"
)
aws_session_name: Optional[str] = Field(
default=None, description="Name of the AWS session"
)
aws_profile_name: Optional[str] = Field(
default=None, description="AWS profile name for credential retrieval"
)
aws_role_name: Optional[str] = Field(
default=None, description="AWS role name for assuming roles"
)
aws_web_identity_token: Optional[str] = Field(
default=None, description="Web identity token for AWS role assumption"
)
aws_sts_endpoint: Optional[str] = Field(
default=None, description="AWS STS endpoint URL"
)
aws_bedrock_runtime_endpoint: Optional[str] = Field(
default=None, description="AWS Bedrock runtime endpoint URL"
)
class LakeraV2GuardrailConfigModel(BaseModel):
"""Configuration parameters for the Lakera AI v2 guardrail"""
api_key: Optional[str] = Field(
default=None, description="API key for the Lakera AI service"
)
api_base: Optional[str] = Field(
default=None, description="Base URL for the Lakera AI API"
)
project_id: Optional[str] = Field(
default=None, description="Project ID for the Lakera AI project"
)
payload: Optional[bool] = Field(
default=True, description="Whether to include payload in the response"
)
breakdown: Optional[bool] = Field(
default=True, description="Whether to include breakdown in the response"
)
metadata: Optional[Dict] = Field(
default=None, description="Additional metadata to include in the request"
)
dev_info: Optional[bool] = Field(
default=True,
description="Whether to include developer information in the response",
)
class LassoGuardrailConfigModel(BaseModel):
"""Configuration parameters for the Lasso guardrail"""
lasso_user_id: Optional[str] = Field(
default=None, description="User ID for the Lasso guardrail"
)
lasso_conversation_id: Optional[str] = Field(
default=None, description="Conversation ID for the Lasso guardrail"
)
class LitellmParams(
PresidioConfigModel,
BedrockGuardrailConfigModel,
LakeraV2GuardrailConfigModel,
LassoGuardrailConfigModel,
):
guardrail: str = Field(description="The type of guardrail integration to use")
mode: Union[str, List[str]] = Field(
description="When to apply the guardrail (pre_call, post_call, during_call, logging_only)"
)
api_key: Optional[str] = Field(
default=None, description="API key for the guardrail service"
)
api_base: Optional[str] = Field(
default=None, description="Base URL for the guardrail service API"
)
# Lakera specific params
category_thresholds: Optional[LakeraCategoryThresholds] = Field(
default=None,
description="Threshold configuration for Lakera guardrail categories",
)
# hide secrets params
detect_secrets_config: Optional[dict] = Field(
default=None, description="Configuration for detect-secrets guardrail"
)
# guardrails ai params
guard_name: Optional[str] = Field(
default=None, description="Name of the guardrail in guardrails.ai"
)
default_on: Optional[bool] = Field(
default=None, description="Whether the guardrail is enabled by default"
)
################## PII control params #################
########################################################
mask_request_content: Optional[bool] = Field(
default=None,
description="Will mask request content if guardrail makes any changes",
)
mask_response_content: Optional[bool] = Field(
default=None,
description="Will mask response content if guardrail makes any changes",
)
# pangea params
pangea_input_recipe: Optional[str] = Field(
default=None, description="Recipe for input (LLM request)"
)
pangea_output_recipe: Optional[str] = Field(
default=None, description="Recipe for output (LLM response)"
)
class Guardrail(TypedDict, total=False):
guardrail_id: Optional[str]
guardrail_name: str
litellm_params: LitellmParams
guardrail_info: Optional[Dict]
created_at: Optional[datetime]
updated_at: Optional[datetime]
class guardrailConfig(TypedDict):
guardrails: List[Guardrail]
class GuardrailEventHooks(str, Enum):
pre_call = "pre_call"
post_call = "post_call"
during_call = "during_call"
logging_only = "logging_only"
class DynamicGuardrailParams(TypedDict):
extra_body: Dict[str, Any]
class GuardrailInfoLiteLLMParamsResponse(BaseModel):
"""The returned LiteLLM Params object for /guardrails/list"""
guardrail: str
mode: Union[str, List[str]]
default_on: Optional[bool] = False
pii_entities_config: Optional[Dict[PiiEntityType, PiiAction]] = None
def __init__(self, **kwargs):
default_on = kwargs.get("default_on")
if default_on is None:
default_on = False
super().__init__(**kwargs)
class GuardrailInfoResponse(BaseModel):
guardrail_id: Optional[str] = None
guardrail_name: str
litellm_params: Optional[GuardrailInfoLiteLLMParamsResponse] = None
guardrail_info: Optional[Dict] = None
created_at: Optional[datetime] = None
updated_at: Optional[datetime] = None
guardrail_definition_location: Literal["config", "db"] = "config"
def __init__(self, **kwargs):
super().__init__(**kwargs)
class ListGuardrailsResponse(BaseModel):
guardrails: List[GuardrailInfoResponse]
class GuardrailUIAddGuardrailSettings(BaseModel):
supported_entities: List[PiiEntityType]
supported_actions: List[PiiAction]
supported_modes: List[GuardrailEventHooks]
pii_entity_categories: List[PiiEntityCategoryMap]
class PresidioPerRequestConfig(BaseModel):
"""
presdio params that can be controlled per request, api key
"""
language: Optional[str] = None
entities: Optional[List[PiiEntityType]] = None
class ApplyGuardrailRequest(BaseModel):
guardrail_name: str
text: str
language: Optional[str] = None
entities: Optional[List[PiiEntityType]] = None
class ApplyGuardrailResponse(BaseModel):
response_text: str
class PatchGuardrailLitellmParams(BaseModel):
default_on: Optional[bool] = None
pii_entities_config: Optional[Dict[PiiEntityType, PiiAction]] = None
class PatchGuardrailRequest(BaseModel):
guardrail_name: Optional[str] = None
litellm_params: Optional[PatchGuardrailLitellmParams] = None
guardrail_info: Optional[Dict[str, Any]] = None
|