From c776d2b57aa9db46dfc0703daca896f8e21f3a5b Mon Sep 17 00:00:00 2001 From: vintro Date: Tue, 14 May 2024 15:48:26 -0400 Subject: [PATCH] delete prompts folder, mirascope colocation ftw --- src/prompts/check_dup_facts.yaml | 11 ----------- src/prompts/derive_facts.yaml | 10 ---------- src/prompts/dialectic.yaml | 11 ----------- 3 files changed, 32 deletions(-) delete mode 100644 src/prompts/check_dup_facts.yaml delete mode 100644 src/prompts/derive_facts.yaml delete mode 100644 src/prompts/dialectic.yaml 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.