diff --git a/src/prompts/check_dup_facts.yaml b/src/prompts/check_dup_facts.yaml deleted file mode 100644 index 673f9ae..0000000 --- a/src/prompts/check_dup_facts.yaml +++ /dev/null @@ -1,11 +0,0 @@ -_type: prompt -input_variables: - ["existing_facts", "facts"] -template: > - Your job is to compare the following two lists and keep only unique items: - - Old: ```{existing_facts}``` - - New: ```{facts}``` - - Remove redundant information from the new list and output the remaining facts as a numbered list. If there's nothing to remove (i.e. the statements are sufficiently different), print "None". diff --git a/src/prompts/derive_facts.yaml b/src/prompts/derive_facts.yaml deleted file mode 100644 index 4e06a0f..0000000 --- a/src/prompts/derive_facts.yaml +++ /dev/null @@ -1,10 +0,0 @@ -_type: prompt -input_variables: - ["chat_history", "user_input"] -template: > - You are tasked with deriving discrete facts about the user based on their input. The goal is to only extract absolute facts from the message, do not make inferences beyond the text provided. - - chat history: ```{chat_history}``` - user input: ```{user_input}``` - - Output the facts as a numbered list. diff --git a/src/prompts/dialectic.yaml b/src/prompts/dialectic.yaml deleted file mode 100644 index ba880a2..0000000 --- a/src/prompts/dialectic.yaml +++ /dev/null @@ -1,11 +0,0 @@ - -_type: prompt -input_variables: - ["agent_input", "retrieved_facts"] -template: > - You are tasked with responding to the query based on the context provided. - --- - query: {agent_input} - context: {retrieved_facts} - --- - Provide a brief, matter-of-fact, and appropriate response to the query based on the context provided. If the context provided doesn't aid in addressing the query, return None.