From 653e6be1a8d3e22e54fa80591211300142084379 Mon Sep 17 00:00:00 2001 From: DavidLee528 <13121515269@163.com> Date: Sun, 5 May 2024 18:51:23 +0800 Subject: [PATCH] initial new top level module prompt.py where the Prompt class is defined --- garak/probes/prompt.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 garak/probes/prompt.py diff --git a/garak/probes/prompt.py b/garak/probes/prompt.py new file mode 100644 index 000000000..827a7aa05 --- /dev/null +++ b/garak/probes/prompt.py @@ -0,0 +1,8 @@ +"""Base classes for prompts. + + Solving issue: https://github.com/leondz/garak/issues/602 + +""" + +class Prompt: + pass \ No newline at end of file