my-aws-helpers 3.0.0.dev5__tar.gz → 3.0.0.dev7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/PKG-INFO +1 -1
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/prompts/transactions_headers_prompt_v2.txt +9 -2
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers.egg-info/PKG-INFO +1 -1
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/setup.py +1 -1
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/MANIFEST.in +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/README.md +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/api.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/auth.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/bedrock.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/cognito.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/dynamo.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/errors.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/event.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/logging.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/prompts/__init__.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/prompts/markdown_system_prompt.txt +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/prompts/transactions_headers_prompt.txt +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/prompts/transactions_prompt.txt +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/s3.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers/sfn.py +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers.egg-info/SOURCES.txt +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers.egg-info/dependency_links.txt +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers.egg-info/requires.txt +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers.egg-info/top_level.txt +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers.egg-info/zip-safe +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/setup.cfg +0 -0
- {my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/tests/test_event.py +0 -0
|
@@ -15,6 +15,10 @@ Return a JSON object in the following structure:
|
|
|
15
15
|
## Rules
|
|
16
16
|
|
|
17
17
|
- Only return headers **if there is a table with transaction-like data** (e.g. purchases, sales, account activity).
|
|
18
|
+
- There will likely be MORE THAN 1 transaction in this table name, if that is not the case, return:
|
|
19
|
+
{
|
|
20
|
+
"headers": []
|
|
21
|
+
}
|
|
18
22
|
- If no such table exists, return:
|
|
19
23
|
{
|
|
20
24
|
"headers": []
|
|
@@ -25,7 +29,7 @@ Return a JSON object in the following structure:
|
|
|
25
29
|
|
|
26
30
|
## Examples
|
|
27
31
|
|
|
28
|
-
✅ If the image contains a table with
|
|
32
|
+
✅ If the image contains a table with row headers like:
|
|
29
33
|
| Date | Description | Amount |
|
|
30
34
|
Return:
|
|
31
35
|
{
|
|
@@ -41,4 +45,7 @@ Return:
|
|
|
41
45
|
"headers": []
|
|
42
46
|
}
|
|
43
47
|
|
|
44
|
-
Do not return anything else
|
|
48
|
+
Do not return anything else, if you are not sure, return:
|
|
49
|
+
{
|
|
50
|
+
"headers": []
|
|
51
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers.egg-info/requires.txt
RENAMED
|
File without changes
|
{my_aws_helpers-3.0.0.dev5 → my_aws_helpers-3.0.0.dev7}/my_aws_helpers.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|