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
mod audit;
mod clean;
mod restore;
use std::path::PathBuf;
use clap::{Parser, Subcommand, ValueEnum};
use crate::error::{CliError, RestoreMode};
use crate::io::DEFAULT_MAX_BYTES;
pub(crate) const DEFAULT_SAFETY_NET_TIMEOUT_MS: u64 = 5_000;
pub(crate) const DEFAULT_SAFETY_NET_INPUT_LIMIT_BYTES: usize = 1_048_576;
#[derive(Parser, Debug)]
#[command(
name = "gaze",
version,
about = "Channel-agnostic PII redaction for LLM pipes"
)]
pub(crate) struct Cli {
#[command(subcommand)]
cmd: Cmd,
}
#[derive(Subcommand, Debug)]
#[allow(clippy::large_enum_variant)]
enum Cmd {
/// Read raw text from stdin; emit `{clean_text, session_blob, stats}` JSON to stdout.
Clean {
/// Path to policy.toml. Required once the policy loader lands (issue #3).
#[arg(long)]
policy: Option<PathBuf>,
/// Output format. Only `json` is supported today.
#[arg(long, default_value = "json")]
format: String,
/// Override the persistent session TTL in seconds.
#[arg(long)]
session_ttl: Option<u64>,
/// Override policy \[session].scope.
#[arg(long)]
session_scope: Option<String>,
/// Active locale fallback chain, comma separated and priority ordered.
#[arg(long, value_delimiter = ',')]
locale: Vec<String>,
/// Override policy \[ner] threshold. Must be between 0.0 and 1.0 inclusive.
#[arg(long)]
ner_threshold: Option<f32>,
/// Override policy \[ner].model_dir.
#[arg(long)]
ner_model_dir: Option<PathBuf>,
/// Override policy \[ner].locale.
#[arg(long)]
ner_locale: Option<String>,
/// Override policy.rulepacks.bundled. Comma-separated and repeatable.
#[arg(long, value_delimiter = ',')]
rulepack_bundled: Vec<String>,
/// Override policy.rulepacks.paths. Repeatable.
#[arg(long = "rulepack-path")]
rulepack_paths: Vec<PathBuf>,
/// Max stdin size in bytes. stdin longer than this exits 1 InputTooLarge.
#[arg(long, default_value_t = DEFAULT_MAX_BYTES)]
max_bytes: u64,
/// Path to a typed Context JSON envelope. stdin remains raw text.
#[arg(long)]
context_json: Option<PathBuf>,
/// Optional SQLite redaction-log database path.
#[arg(long)]
audit_db: Option<PathBuf>,
/// Optional observer-only privacy safety net.
#[arg(long, value_enum)]
safety_net: Option<SafetyNetKind>,
/// Path to the local OpenAI Privacy Filter `opf` command.
#[arg(long)]
openai_filter_command: Option<PathBuf>,
/// Path to the local OpenAI Privacy Filter checkpoint or model directory.
#[arg(long)]
openai_filter_checkpoint: Option<PathBuf>,
/// OpenAI Privacy Filter operating point, when supported by the command.
#[arg(long, value_enum)]
openai_filter_operating_point: Option<OpenAiFilterOperatingPoint>,
/// Device selection for the OpenAI safety-net subprocess (auto|cpu|cuda|mps). Default: auto (let opf decide).
#[arg(long, value_enum, default_value_t = OpenAiFilterDevice::Auto)]
openai_filter_device: OpenAiFilterDevice,
/// Safety-net subprocess timeout in milliseconds.
#[arg(long, default_value_t = DEFAULT_SAFETY_NET_TIMEOUT_MS)]
safety_net_timeout_ms: u64,
/// Maximum clean-text bytes submitted to the safety net.
#[arg(long, default_value_t = DEFAULT_SAFETY_NET_INPUT_LIMIT_BYTES)]
safety_net_input_limit_bytes: usize,
/// Safety-net handling mode for suspected leaks.
#[arg(long, value_enum, default_value_t = SafetyNetMode::Strict)]
safety_net_mode: SafetyNetMode,
},
/// Read `{session_blob, text}` JSON from stdin; emit `{text}` JSON to stdout.
Restore {
/// Output format. Only `json` is supported today.
#[arg(long, default_value = "json")]
format: String,
/// Unknown-token handling during restore.
#[arg(long, value_enum, default_value_t = RestoreMode::Strict)]
restore_mode: RestoreMode,
/// Max stdin size in bytes. stdin longer than this exits 1 InputTooLarge.
#[arg(long, default_value_t = DEFAULT_MAX_BYTES)]
max_bytes: u64,
},
/// Query, export, or maintain redaction-log metadata without reading raw PII payloads.
Audit {
#[command(subcommand)]
command: AuditCmd,
},
}
#[derive(Subcommand, Debug)]
enum AuditCmd {
/// Print filtered audit metadata rows as tab-separated values.
Query {
/// SQLite redaction-log database path.
#[arg(long)]
audit_db: PathBuf,
/// Filter by PII class, such as `email`, `name`, or `custom:term`.
#[arg(long = "class")]
pii_class: Option<String>,
/// Filter by source recognizer name.
#[arg(long)]
source: Option<String>,
/// Filter by action, such as `tokenize`, `redact`, or `preserve`.
#[arg(long)]
action: Option<String>,
/// Filter by document kind, such as `text` or `structured`.
#[arg(long)]
document_kind: Option<String>,
/// Include rows created at or after this ISO 8601 timestamp.
#[arg(long = "from")]
from_iso8601: Option<String>,
/// Include rows created at or before this ISO 8601 timestamp.
#[arg(long = "to")]
to_iso8601: Option<String>,
/// Filter by opaque audit session id.
#[arg(long = "session")]
session_id: Option<String>,
},
/// Export filtered audit metadata rows.
Export {
/// SQLite redaction-log database path.
#[arg(long)]
audit_db: PathBuf,
/// Export format.
#[arg(long, value_enum, default_value = "jsonl")]
format: audit::ExportFormat,
/// Optional output file. Defaults to stdout.
#[arg(long)]
output: Option<PathBuf>,
/// Filter by PII class, such as `email`, `name`, or `custom:term`.
#[arg(long = "class")]
pii_class: Option<String>,
/// Filter by source recognizer name.
#[arg(long)]
source: Option<String>,
/// Filter by action, such as `tokenize`, `redact`, or `preserve`.
#[arg(long)]
action: Option<String>,
/// Filter by document kind, such as `text` or `structured`.
#[arg(long)]
document_kind: Option<String>,
/// Include rows created at or after this ISO 8601 timestamp.
#[arg(long = "from")]
from_iso8601: Option<String>,
/// Include rows created at or before this ISO 8601 timestamp.
#[arg(long = "to")]
to_iso8601: Option<String>,
/// Filter by opaque audit session id.
#[arg(long = "session")]
session_id: Option<String>,
},
/// Purge audit metadata rows older than an ISO 8601 UTC timestamp.
Purge {
/// SQLite redaction-log database path.
#[arg(long)]
audit_db: PathBuf,
/// Purge rows where created_at is before this ISO 8601 UTC timestamp.
#[arg(long)]
before: String,
/// Count matching rows without deleting them.
#[arg(long, alias = "count")]
dry_run: bool,
},
/// Query safety-net leak metadata without changing redaction-log output.
SafetyNet {
#[command(subcommand)]
command: SafetyNetAuditCmd,
},
}
#[derive(Subcommand, Debug)]
enum SafetyNetAuditCmd {
/// Print filtered safety-net metadata rows as tab-separated values.
Query {
/// SQLite redaction-log database path.
#[arg(long)]
audit_db: PathBuf,
/// Filter by safety-net leak kind.
#[arg(long)]
leak_kind: Option<String>,
/// Filter by raw backend label.
#[arg(long)]
raw_label: Option<String>,
/// Filter by mapped Gaze class.
#[arg(long)]
mapped_class: Option<String>,
/// Filter by structured field path.
#[arg(long)]
field_path: Option<String>,
/// Include rows created at or after this ISO 8601 timestamp.
#[arg(long = "from")]
from_iso8601: Option<String>,
/// Include rows created at or before this ISO 8601 timestamp.
#[arg(long = "to")]
to_iso8601: Option<String>,
},
}
#[derive(ValueEnum, Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum SafetyNetKind {
OpenaiFilter,
}
#[derive(ValueEnum, Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum OpenAiFilterOperatingPoint {
HighRecall,
Balanced,
HighPrecision,
}
impl OpenAiFilterOperatingPoint {
#[cfg(feature = "safety-net-openai")]
pub(crate) fn as_opf_value(self) -> &'static str {
match self {
Self::HighRecall => "high-recall",
Self::Balanced => "balanced",
Self::HighPrecision => "high-precision",
}
}
}
#[derive(ValueEnum, Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum OpenAiFilterDevice {
Auto,
Cpu,
Cuda,
Mps,
}
impl OpenAiFilterDevice {
#[cfg(feature = "safety-net-openai")]
pub(crate) fn as_opf_value(self) -> Option<&'static str> {
match self {
Self::Auto => None,
Self::Cpu => Some("cpu"),
Self::Cuda => Some("cuda"),
Self::Mps => Some("mps"),
}
}
}
#[derive(ValueEnum, Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum SafetyNetMode {
Strict,
Tolerant,
}
pub(crate) fn dispatch(cli: Cli) -> std::result::Result<(), CliError> {
match cli.cmd {
Cmd::Clean {
policy,
format,
session_ttl,
session_scope,
locale,
ner_threshold,
ner_model_dir,
ner_locale,
rulepack_bundled,
rulepack_paths,
max_bytes,
context_json,
audit_db,
safety_net,
openai_filter_command,
openai_filter_checkpoint,
openai_filter_operating_point,
openai_filter_device,
safety_net_timeout_ms,
safety_net_input_limit_bytes,
safety_net_mode,
} => clean::run(clean::Args {
policy,
format,
session_ttl,
session_scope,
locale,
ner_threshold,
ner_model_dir,
ner_locale,
rulepack_bundled,
rulepack_paths,
max_bytes,
context_json,
audit_db,
safety_net,
openai_filter_command,
openai_filter_checkpoint,
openai_filter_operating_point,
openai_filter_device,
safety_net_timeout_ms,
safety_net_input_limit_bytes,
safety_net_mode,
}),
Cmd::Restore {
format,
restore_mode,
max_bytes,
} => restore::run(restore::Args {
format,
restore_mode,
max_bytes,
}),
Cmd::Audit { command } => match command {
AuditCmd::Query {
audit_db,
pii_class,
source,
action,
document_kind,
from_iso8601,
to_iso8601,
session_id,
} => audit::query(audit::Args {
audit_db,
class: pii_class,
source,
action,
document_kind,
from_iso8601,
to_iso8601,
session_id,
}),
AuditCmd::Export {
audit_db,
format,
output,
pii_class,
source,
action,
document_kind,
from_iso8601,
to_iso8601,
session_id,
} => audit::export(
audit::Args {
audit_db,
class: pii_class,
source,
action,
document_kind,
from_iso8601,
to_iso8601,
session_id,
},
format,
output,
),
AuditCmd::Purge {
audit_db,
before,
dry_run,
} => audit::purge(audit::PurgeArgs {
audit_db,
before,
dry_run,
}),
AuditCmd::SafetyNet { command } => match command {
SafetyNetAuditCmd::Query {
audit_db,
leak_kind,
raw_label,
mapped_class,
field_path,
from_iso8601,
to_iso8601,
} => audit::query_safety_net(audit::SafetyNetArgs {
audit_db,
leak_kind,
raw_label,
mapped_class,
field_path,
from_iso8601,
to_iso8601,
}),
},
},
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn openai_filter_device_defaults_to_auto() {
let cli = Cli::parse_from(["gaze", "clean"]);
let Cmd::Clean {
openai_filter_device,
..
} = cli.cmd
else {
unreachable!("expected clean command");
};
assert_eq!(openai_filter_device, OpenAiFilterDevice::Auto);
}
}