24 lines
664 B
Python
24 lines
664 B
Python
from .common import simple_prompt_test
|
|
|
|
SUITE = "test_tools_memory"
|
|
|
|
|
|
def get_tests():
|
|
return [
|
|
simple_prompt_test(SUITE, "task_list", "Task list", "Show me your current task list", "task_list"),
|
|
simple_prompt_test(
|
|
SUITE,
|
|
"task_manage_add_remove",
|
|
"Task add/remove",
|
|
"Add a task test harness probe task then remove it",
|
|
"task_manage",
|
|
),
|
|
simple_prompt_test(
|
|
SUITE,
|
|
"memory_save_recall",
|
|
"Save and recall memory",
|
|
"Save test harness probe to memory, then recall your memory",
|
|
"memory_save",
|
|
),
|
|
]
|