git-subtree-dir: apps/core git-subtree-mainline: a8963e11e7a5a0059acbc849ce768e1eee80df61 git-subtree-split: ea2a7395f4023f5b9fab03e6273db3b64a1181d5
15 lines
536 B
Python
15 lines
536 B
Python
# Basic
|
|
TRIES = 3
|
|
AGENT_NAME = "benchmark"
|
|
PERSONA = "sam_pov"
|
|
HUMAN = "cs_phd"
|
|
|
|
# Prompts
|
|
PROMPTS = {
|
|
"core_memory_replace": "Hey there, my name is John, what is yours?",
|
|
"core_memory_append": "I want you to remember that I like soccers for later.",
|
|
"conversation_search": "Do you remember when I talked about bananas?",
|
|
"archival_memory_insert": "Can you make sure to remember that I like programming for me so you can look it up later?",
|
|
"archival_memory_search": "Can you retrieve information about the war?",
|
|
}
|