low
memgpt
v0.2.0This package contains the code for training a memory-augmented GPT model on patient data. Please note that this is not the 'letta' company project with thehttps://github.com/letta-ai/letta; for use of their package, plsuse 'pymemgpt' instead.
1
Total
0
Critical
1
High
0
Medium
Findings
unknownhighSC-004Suspicious CommandsMedium ConfidenceLine 0
Dynamic code evaluation via eval()
Detected by automated pattern matching (rule SC-004) with medium confidence. May be a false positive.
4:
5: def generate_text(model, start_text, vocab, max_len, device):
>>> 6: model.eval()
7: text = start_text
8: input_text = torch.tensor([vocab[char] for char in text], dtype=torch.long).unsqueeze(0).to(device)Report false positiveScan History
| Date | Risk | Findings | Files | Duration |
|---|---|---|---|---|
| Feb 25, 2026 | low | 1 | 15 | 0.00s |
| Feb 23, 2026 | low | 1 | 15 | 0.00s |
| Feb 22, 2026 | low | 1 | 15 | 0.00s |