From bfbbc0fb302deae446210ce5397c4fed6d53b8b6 Mon Sep 17 00:00:00 2001 From: JJ Date: Mon, 31 Mar 2025 21:10:56 +0100 Subject: fixed gitignore --- .Constants.py.swp | Bin 12288 -> 0 bytes .gitignore | 1 + AIParams.py | 25 ------------------------- 3 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 .Constants.py.swp delete mode 100644 AIParams.py diff --git a/.Constants.py.swp b/.Constants.py.swp deleted file mode 100644 index ffb1f96..0000000 Binary files a/.Constants.py.swp and /dev/null differ diff --git a/.gitignore b/.gitignore index 7b214bb..81ad26e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ .vscode/ .venv*/ venv*/ +*.swp __pycache__/ dist/ .coverage* 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." - - -- cgit v1.2.3