You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .speakeasy/out.openapi.yaml
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6802,7 +6802,7 @@ components:
6802
6802
type: 'string'
6803
6803
x-speakeasy-unknown-values: allow
6804
6804
ContentFilterBuiltinEntry:
6805
-
description: 'A builtin content filter entry. Builtin filters include PII detectors and the regex-based prompt injection detector.'
6805
+
description: 'A builtin content filter entry. Builtin filters include PII detectors, API-key and secret detectors, and the regex-based prompt injection detector.'
6806
6806
example:
6807
6807
action: 'redact'
6808
6808
label: '[EMAIL]'
@@ -6852,6 +6852,7 @@ components:
6852
6852
- 'ssn'
6853
6853
- 'credit-card'
6854
6854
- 'ip-address'
6855
+
- 'secrets'
6855
6856
- 'person-name'
6856
6857
- 'address'
6857
6858
- 'regex-prompt-injection'
@@ -31352,6 +31353,9 @@ paths:
31352
31353
required: true
31353
31354
schema:
31354
31355
example: 'or_file_011CNha8iCJcU1wXNR6q4V8w'
31356
+
maxLength: 256
31357
+
minLength: 1
31358
+
pattern: '^[\w-]+$'
31355
31359
type: 'string'
31356
31360
- description: 'Workspace to scope the request to. Defaults to the caller’s default workspace.'
31357
31361
in: 'query'
@@ -31462,6 +31466,9 @@ paths:
31462
31466
required: true
31463
31467
schema:
31464
31468
example: 'or_file_011CNha8iCJcU1wXNR6q4V8w'
31469
+
maxLength: 256
31470
+
minLength: 1
31471
+
pattern: '^[\w-]+$'
31465
31472
type: 'string'
31466
31473
- description: 'Workspace to scope the request to. Defaults to the caller’s default workspace.'
31467
31474
in: 'query'
@@ -31582,6 +31589,9 @@ paths:
31582
31589
required: true
31583
31590
schema:
31584
31591
example: 'or_file_011CNha8iCJcU1wXNR6q4V8w'
31592
+
maxLength: 256
31593
+
minLength: 1
31594
+
pattern: '^[\w-]+$'
31585
31595
type: 'string'
31586
31596
- description: 'Workspace to scope the request to. Defaults to the caller’s default workspace.'
r"""A builtin content filter entry. Builtin filters include PII detectors and the regex-based prompt injection detector."""
14
+
r"""A builtin content filter entry. Builtin filters include PII detectors, API-key and secret detectors, and the regex-based prompt injection detector."""
15
15
16
16
action: ContentFilterBuiltinAction
17
17
r"""Action taken when the builtin filter triggers"""
@@ -24,7 +24,7 @@ class ContentFilterBuiltinEntryTypedDict(TypedDict):
24
24
25
25
26
26
classContentFilterBuiltinEntry(BaseModel):
27
-
r"""A builtin content filter entry. Builtin filters include PII detectors and the regex-based prompt injection detector."""
27
+
r"""A builtin content filter entry. Builtin filters include PII detectors, API-key and secret detectors, and the regex-based prompt injection detector."""
28
28
29
29
action: ContentFilterBuiltinAction
30
30
r"""Action taken when the builtin filter triggers"""
0 commit comments