aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJJ <nicetry@noemail.com>2025-03-31 21:10:56 +0100
committerJJ <nicetry@noemail.com>2025-03-31 21:10:56 +0100
commitbfbbc0fb302deae446210ce5397c4fed6d53b8b6 (patch)
tree0ce0009f43c8afdae460376d5f463141465cc17d
parent2e0b9c97af457da5c6afda611d48e59047d4cdb8 (diff)
fixed gitignore
-rw-r--r--.Constants.py.swpbin12288 -> 0 bytes
-rw-r--r--.gitignore1
-rw-r--r--AIParams.py25
3 files changed, 1 insertions, 25 deletions
diff --git a/.Constants.py.swp b/.Constants.py.swp
deleted file mode 100644
index ffb1f96..0000000
--- a/.Constants.py.swp
+++ /dev/null
Binary files 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."
-
-