MCPcopy Create free account
hub / github.com/OpenOSINT/OpenOSINT / SessionRecord

Class SessionRecord

openosint/session_history.py:25–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23
24@dataclass
25class SessionRecord:
26 timestamp: str
27 duration_seconds: int
28 prompts: list[str] = field(default_factory=list)
29 tools_used: list[str] = field(default_factory=list)
30 targets: list[str] = field(default_factory=list)
31 report_path: str = ""
32
33
34def _ensure_dir() -> None:

Calls

no outgoing calls