aboutsummaryrefslogtreecommitdiff
path: root/AIParams.py
diff options
context:
space:
mode:
Diffstat (limited to 'AIParams.py')
-rw-r--r--AIParams.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/AIParams.py b/AIParams.py
deleted file mode 100644
index aab8ac3..0000000
--- a/AIParams.py
+++ /dev/null
@@ -1,25 +0,0 @@
-RECIPE_SCHEMA = {
- 'title': str,
- 'slug': str,
- 'image': str,
- 'url': str,
- 'tags': list[str],
- 'ingredients': list[str],
- 'instructions': list[str]
-}
-
-PROMPT = """
-Extract data from the following text in the schema format provided.
-
-SCHEMA:
-
-{schema}
-
-DATA:
-
-{markdown}
-"""
-
-SYSTEM_INSTRUCTIONS="You are responsible for taking the inputted markdown text and generating a structure response from it. See the Schema provided."
-
-